EnumBuilder::GetEvents Method (BindingFlags)
.NET Framework (current version)
Returns the public and non-public events that are declared by this type.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- bindingAttr
-
Type:
System.Reflection::BindingFlags
This must be a bit flag from BindingFlags, such as InvokeMethod, NonPublic, and so on.
Return Value
Type: array<System.Reflection::EventInfo^>^Returns an array of EventInfo objects representing the public and non-public events declared or inherited by this type. An empty array is returned if there are no events, as specified.
Implements
_Type::GetEvents(BindingFlags)| Exception | Condition |
|---|---|
| NotSupportedException | This method is not currently supported in types that are not complete. |
As a workaround, to retrieve the events of a finished type, retrieve the type using Type::GetType or Assembly::GetType and use reflection on the retrieved type to retrieve the events.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Available since 1.1
Silverlight
Available since 2.0
Show: