TypeDelegator.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.
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 |
GetEvents() |
Returns an array of EventInfo objects representing all the public events declared or inherited by the current |
GetEvents(BindingFlags)
- Source:
- TypeDelegator.cs
- Source:
- TypeDelegator.cs
- Source:
- TypeDelegator.cs
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()
- Source:
- TypeDelegator.cs
- Source:
- TypeDelegator.cs
- Source:
- TypeDelegator.cs
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.