Type.GetMethod Method
.NET Framework 2.0
Gets a specific method of the current Type.
| Name | Description |
|---|---|
| Type.GetMethod (String) | Searches for the public method with the specified name. Supported by the .NET Compact Framework. |
| Type.GetMethod (String, BindingFlags) | Searches for the specified method, using the specified binding constraints. Supported by the .NET Compact Framework. |
| Type.GetMethod (String, Type[]) | Searches for the specified public method whose parameters match the specified argument types. Supported by the .NET Compact Framework. |
| Type.GetMethod (String, Type[], ParameterModifier[]) | Searches for the specified public method whose parameters match the specified argument types and modifiers. Supported by the .NET Compact Framework. |
| Type.GetMethod (String, BindingFlags, Binder, Type[], ParameterModifier[]) | Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints. Supported by the .NET Compact Framework. |
| Type.GetMethod (String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) | Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: