TypeDelegator.GetEvents Method

Definition

Returns an array of EventInfo objects representing all the public events declared or inherited by the current TypeDelegator.

Overloads

GetEvents(BindingFlags)

Returns the events specified in bindingAttr that are declared or inherited by the current TypeDelegator.

GetEvents()

Returns an array of EventInfo objects representing all the public events declared or inherited by the current TypeDelegator.

GetEvents(BindingFlags)

Returns the events specified in bindingAttr that are declared or inherited by the current TypeDelegator.

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

A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from BindingFlags.

Returns

An array of type EventInfo containing the events specified in bindingAttr. If there are no events, an empty array is returned.

Applies to

GetEvents()

Returns an array of EventInfo objects representing all the public events declared or inherited by the current TypeDelegator.

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

An array that contains all the events declared or inherited by the current type. If there are no events, an empty array is returned.

Applies to