NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.GetEvents

Gets the events which are declared or inherited by the current Type.

Overload List

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[];

See Also

Type Class | Type Members | System Namespace