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!

Type.GetField (String)

Searches for the field with the specified name.

[Visual Basic]
Overloads Public Function GetField( _
   ByVal name As String _
) As FieldInfo
[C#]
public FieldInfo GetField(
   string name
);
[C++]
public: FieldInfo* GetField(
   String* name
);
[JScript]
public function GetField(
   name : String
) : FieldInfo;

Parameters

name
The String containing the name of the data field to get.

Return Value

A FieldInfo object representing the field with the specified name, if found; otherwise, a null reference (in Visual Basic Nothing).

Exceptions

Exception Type Condition
ArgumentNullException name is a null reference (Nothing).
SecurityException The requested field is non-public and the caller does not have ReflectionPermission to reflect non-public members outside the current assembly.

Remarks

The search for name is case-sensitive.

See Also

Type Class | Type Members | System Namespace | Type.GetField Overload List