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!

TypeBuilder.GetMember

Returns all the public and non-public members declared or inherited by this type, as specified.

[Visual Basic]
Overrides Public Function GetMember( _
   ByVal name As String, _
   ByVal type As MemberTypes, _
   ByVal bindingAttr As BindingFlags _
) As MemberInfo ()
[C#]
public override MemberInfo[] GetMember(
   string name,
   MemberTypes type,
   BindingFlags bindingAttr
);
[C++]
public: override MemberInfo* GetMember(
   String* name,
   MemberTypes type,
   BindingFlags bindingAttr
) [];
[JScript]
public override function GetMember(
   name : String,
   type : MemberTypes,
   bindingAttr : BindingFlags
) : MemberInfo[];

Parameters

name
[To be supplied.]
type
[To be supplied.]
bindingAttr
This must be a bit flag from BindingFlags: InvokeMethod, NonPublic, etc.

Return Value

Returns an array of MemberInfo objects representing the public and non-public members defined on this type if nonPublic is used; otherwise only the public members are returned.

See Also

TypeBuilder Class | TypeBuilder Members | System.Reflection.Emit Namespace