_Type::GetMethods Method (BindingFlags)
.NET Framework (current version)
Provides COM objects with version-independent access to the Type::GetMethods method.
Assembly: mscorlib (in mscorlib.dll)
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
Available since 1.1
Show: