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.GetEvent

Gets a specific event declared or inherited by the current Type.

Overload List

When implemented by a derived class, returns the EventInfo object representing the specified event, using the specified binding constraints.

[Visual Basic] Overloads MustOverride Public Function GetEvent(String, BindingFlags) As EventInfo
[C#] public abstract EventInfo GetEvent(String, BindingFlags);
[C++] public: virtual EventInfo* GetEvent(String*, BindingFlags) = 0;
[JScript] public abstract function GetEvent(String, BindingFlags) : EventInfo;

Returns the EventInfo object representing the specified event.

[Visual Basic] Overloads Public Function GetEvent(String) As EventInfo
[C#] public EventInfo GetEvent(String);
[C++] public: EventInfo* GetEvent(String*);
[JScript] public function GetEvent(String) : EventInfo;

See Also

Type Class | Type Members | System Namespace