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!

Module.GetMethodImpl

To be supplied.

[Visual Basic]
Overridable 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 virtual MethodInfo GetMethodImpl(
   string name,
   BindingFlags bindingAttr,
   Binder binder,
   CallingConventions callConvention,
   Type[] types,
   ParameterModifier[] modifiers
);
[C++]
protected: virtual MethodInfo* GetMethodImpl(
   String* name,
   BindingFlags bindingAttr,
   Binder* binder,
   CallingConventions callConvention,
   Type* types[],
   ParameterModifier* modifiers[]
);
[JScript]
protected function GetMethodImpl(
   name : String,
   bindingAttr : BindingFlags,
   binder : Binder,
   callConvention : CallingConventions,
   types : Type[],
   modifiers : ParameterModifier[]
) : MethodInfo;

Parameters

name
To be supplied.
bindingAttr
To be supplied.
binder
To be supplied.
callConvention
To be supplied.
types
To be supplied.
modifiers
To be supplied.

Return Value

To be supplied

Exceptions

Exception Type Condition
AmbiguousMatchException is thrown if types is null.

Remarks

[To be supplied.]

See Also

Module Class | Module Members | System.Reflection Namespace