Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

_Type::GetMethods Method (BindingFlags)

 

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

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

array<MethodInfo^>^ GetMethods(
	BindingFlags bindingAttr
)

Parameters

bindingAttr
Type: System.Reflection::BindingFlags

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

-or-

Zero, to return null.

Return Value

Type: array<System.Reflection::MethodInfo^>^

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.

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft