_Type.GetMethods Method

Definition

Provides COM objects with version-independent access to the GetMethods method.

Overloads

GetMethods()

Provides COM objects with version-independent access to the GetMethods() method.

GetMethods(BindingFlags)

Provides COM objects with version-independent access to the GetMethods(BindingFlags) method.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetMethods method gets the methods of the current Type.

GetMethods()

Provides COM objects with version-independent access to the GetMethods() method.

public:
 cli::array <System::Reflection::MethodInfo ^> ^ GetMethods();
public System.Reflection.MethodInfo[] GetMethods ();
abstract member GetMethods : unit -> System.Reflection.MethodInfo[]
Public Function GetMethods () As MethodInfo()

Returns

An array of MethodInfo objects representing all the public methods defined for the current Type.

-or-

An empty array of type MethodInfo, if no public methods are defined for the current Type.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetMethods method returns all the public methods of the current Type.

Applies to

GetMethods(BindingFlags)

Provides COM objects with version-independent access to the GetMethods(BindingFlags) method.

public:
 cli::array <System::Reflection::MethodInfo ^> ^ GetMethods(System::Reflection::BindingFlags bindingAttr);
public System.Reflection.MethodInfo[] GetMethods (System.Reflection.BindingFlags bindingAttr);
abstract member GetMethods : System.Reflection.BindingFlags -> System.Reflection.MethodInfo[]
Public Function GetMethods (bindingAttr As BindingFlags) As MethodInfo()

Parameters

bindingAttr
BindingFlags

A bitmask comprised of one or more BindingFlags that specify how the search is conducted.

-or-

Zero, to return null.

Returns

An array of MethodInfo objects representing all methods defined for the current Type that match the specified binding constraints.

-or-

An empty array of type MethodInfo, if no methods are defined for the current Type, or if none of the defined methods match the binding constraints.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetMethods method searches for the methods defined for the current Type, using the specified binding constraints.

Applies to