EnumBuilder.GetMethods(BindingFlags) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns all the public and non-public methods declared or inherited by this type, as specified.
public:
override cli::array <System::Reflection::MethodInfo ^> ^ GetMethods(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.MethodInfo[] GetMethods (System.Reflection.BindingFlags bindingAttr);
override this.GetMethods : System.Reflection.BindingFlags -> System.Reflection.MethodInfo[]
Public Overrides Function GetMethods (bindingAttr As BindingFlags) As MethodInfo()
Parameters
- bindingAttr
- BindingFlags
This must be a bit flag from BindingFlags, such as InvokeMethod
, NonPublic
, and so on.
Returns
Returns an array of MethodInfo objects representing the public and non-public methods defined on this type if nonPublic
is used; otherwise, only the public methods are returned.
Exceptions
This method is not currently supported in types that are not complete.
Remarks
As a workaround, to retrieve the methods of a finished type, retrieve the type using Type.GetType or Assembly.GetType and use reflection on the retrieved type.