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.GetConstructorImpl

This member is not yet implemented.

[Visual Basic]
Overrides Protected Function GetConstructorImpl( _
   ByVal bindingAttr As BindingFlags, _
   ByVal binder As Binder, _
   ByVal callConvention As CallingConventions, _
   ByVal types() As Type, _
   ByVal modifiers() As ParameterModifier _
) As ConstructorInfo
[C#]
protected override ConstructorInfo GetConstructorImpl(
   BindingFlags bindingAttr,
   Binder binder,
   CallingConventions callConvention,
   Type[] types,
   ParameterModifier[] modifiers
);
[C++]
protected: override ConstructorInfo* GetConstructorImpl(
   BindingFlags bindingAttr,
   Binder* binder,
   CallingConventions callConvention,
   Type* types[],
   ParameterModifier* modifiers[]
);
[JScript]
protected override function GetConstructorImpl(
   bindingAttr : BindingFlags,
   binder : Binder,
   callConvention : CallingConventions,
   types : Type[],
   modifiers : ParameterModifier[]
) : ConstructorInfo;

Parameters

bindingAttr
[To be supplied.]
binder
[To be supplied.]
callConvention
[To be supplied.]
types
[To be supplied.]
modifiers
[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