EnumBuilder.GetEvents 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.
This method is not supported on types that have not been completed.
Overloads
GetEvents() |
Returns the events for the public events declared or inherited by this type. |
GetEvents(BindingFlags) |
Returns the public and non-public events that are declared by this type. |
GetEvents()
- Source:
- EnumBuilder.cs
Returns the events for the public events declared or inherited by this type.
public:
override cli::array <System::Reflection::EventInfo ^> ^ GetEvents();
public override System.Reflection.EventInfo[] GetEvents ();
override this.GetEvents : unit -> System.Reflection.EventInfo[]
Public Overrides Function GetEvents () As EventInfo()
Returns
Returns an array of EventInfo objects representing the public events declared or inherited by this type. An empty array is returned if there are no public events.
Exceptions
This method is not currently supported in types that are not complete.
Remarks
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.
Applies to
GetEvents(BindingFlags)
- Source:
- EnumBuilder.cs
Returns the public and non-public events that are declared by this type.
public:
override cli::array <System::Reflection::EventInfo ^> ^ GetEvents(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.EventInfo[] GetEvents (System.Reflection.BindingFlags bindingAttr);
override this.GetEvents : System.Reflection.BindingFlags -> System.Reflection.EventInfo[]
Public Overrides Function GetEvents (bindingAttr As BindingFlags) As EventInfo()
Parameters
- bindingAttr
- BindingFlags
This must be a bit flag from BindingFlags, such as InvokeMethod
, NonPublic
, and so on.
Returns
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.
Exceptions
This method is not currently supported in types that are not complete.
Remarks
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.