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!

TypeDelegator.GetMethodImpl

To be supplied

[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
To be supplied
bindingAttr
This bit mask affects the way in which the search is conducted. The binding attributes used to control the search. An example is BindingFlags.NonPublic
binder
An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used. See Binder.
callConvention
The calling conventions.
types
A list of parameter types. The list represents the number, order, and types of the parameters. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters.
modifiers
An array of the same length as types with elements that represent the attributes associated with the parameters of the method to get.

Return Value

A MethodInfoInfo object for the implementation method that matches the specified criteria, or null if a match cannot be found.

Remarks

To be supplied

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace