NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComponentModelPersister.GetDoesFieldExist

Determines if a field of the specified name exists in the code.

[Visual Basic]
Overridable Public Function GetDoesFieldExist( _
   ByVal name As String _
) As Boolean
[C#]
public virtual bool GetDoesFieldExist(
   string name
);
[C++]
public: virtual bool GetDoesFieldExist(
   String* name
);
[JScript]
public function GetDoesFieldExist(
   name : String
) : Boolean;

Parameters

name
The name of the field to test for existance.

Return Value

true if the field exists, otherwise false.

See Also

ComponentModelPersister Class | ComponentModelPersister Members | System.ComponentModel.Design Namespace