Gets the events which are declared or inherited by the current Type.
When implemented by a derived class, searches for events which are declared or inherited by the current Type, using the specified binding constraints.
[Visual Basic] Overloads MustOverride Public Function GetEvents(BindingFlags) As EventInfo ()
[C#] public abstract EventInfo[] GetEvents(BindingFlags);
[C++] public: virtual EventInfo* GetEvents(BindingFlags) [] = 0;
[JScript] public abstract function GetEvents(BindingFlags) : EventInfo[];
Returns all the public events which are declared or inherited by the current Type.
[Visual Basic] Overloads Overridable Public Function GetEvents() As EventInfo ()
[C#] public virtual EventInfo[] GetEvents();
[C++] public: virtual EventInfo* GetEvents() [];
[JScript] public function GetEvents() : EventInfo[];