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!

EnumBuilder.GetMember

This member is not yet implemented.

[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
[To be supplied.]

Exceptions

Exception Type Condition
NotSupportedException This method is not implemented.

Remarks

This method is not currently supported. As a workaround, retrieve the type using Type.GetType or Assembly.GetType and use reflection on the retrieved type.

See Also

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