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.GetMember (String)

Searches for the members with the specified name.

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

Parameters

name
The String containing the name of the public members to get.

Return Value

An array of MemberInfo objects representing the public members 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 member 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.

Members include properties, methods, fields, events, and so on.

This method searches the current classes and its base classes. Only public methods can be found using this method.Class initializers are available through GetMember, GetMembers, FindMembers, and GetConstructors.

See Also

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