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!

IReflect.GetMethod

Retrieves a MethodInfo object corresponding to a specified method.

Overload List

Retrieves a MethodInfo object corresponding to a specified method, and a type array is used to choose among overloaded methods with the same name.

[Visual Basic] Overloads Function GetMethod(String, BindingFlags, Binder, Type(), ParameterModifier()) As MethodInfo
[C#] MethodInfo GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[]);
[C++] MethodInfo* GetMethod(String*, BindingFlags, Binder, Type[], ParameterModifier[]) = 0;
[JScript] function GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[]) : MethodInfo;

Retrieves a MethodInfo object corresponding to a specified method under specified search constraints.

[Visual Basic] Overloads Function GetMethod(String, BindingFlags) As MethodInfo
[C#] MethodInfo GetMethod(String, BindingFlags);
[C++] MethodInfo* GetMethod(String*, BindingFlags) = 0;
[JScript] function GetMethod(String, BindingFlags) : MethodInfo;

See Also

IReflect Interface | IReflect Members | System.Reflection Namespace