Searches for the public method with the specified name.
[Visual Basic] Overloads Public Function GetMethod( _ ByVal name As String _ ) As MethodInfo [C#] public MethodInfo GetMethod( string name ); [C++] public: MethodInfo* GetMethod( String* name ); [JScript] public function GetMethod( name : String ) : MethodInfo;
A MethodInfo object representing the public method with the specified name, if found; otherwise, a null reference (in Visual Basic Nothing).
Exception Type | Condition |
---|---|
AmbiguousMatchException | More than one method is found with the specified name. |
ArgumentNullException | name is a null reference (Nothing). |
SecurityException | The requested method is non-public and the caller does not have ReflectionPermission to reflect non-public members outside the current assembly. |
The search for name is case-sensitive.
Type Class | Type Members | System Namespace | Type.GetMethod Overload List