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!

IReflect.GetMember

Retrieves an array of MemberInfo objects corresponding to all public members or to all members that match a specified name.

[Visual Basic]
Function GetMember( _
   ByVal name As String, _
   ByVal bindingAttr As BindingFlags _
) As MemberInfo ()
[C#]
MemberInfo[] GetMember(
   string name,
   BindingFlags bindingAttr
);
[C++]
MemberInfo* GetMember(
   String* name,
   BindingFlags bindingAttr
) [] = 0;
[JScript]
function GetMember(
   name : String,
   bindingAttr : BindingFlags
) : MemberInfo[];

Parameters

name
The name of the member to find.
bindingAttr
The binding attributes used to control the search.

Return Value

An array of MemberInfo which match the passed in name.

Remarks

The GetMember method retrieves an array of MemberInfo objects by using the name and binding attributue that correspond to all public members or to all members that match a specified name. The case of the specified name is observed or ignored, as specified. An example of a binding attribute value is IgnoreCase.

See Also

IReflect Interface | IReflect Members | System.Reflection Namespace | String | BindingFlags