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

Not implemented.

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

Parameters

name
TBD
bindingAttr
TBD
binder
TBD
callConvention
[To be supplied.]
types
TBD
modifiers
TBD

Return Value

TBD

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

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