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!

EventInfo.EventHandlerType

Retrieves the Type object of the underlying handler delegate.

Implementation of this member is not complete for this release of the NGWS SDK. This documentation is for information only.

[Visual Basic]
Public ReadOnly Property EventHandlerType As Type
[C#]
public Type EventHandlerType {get;}
[C++]
public: __property Type* get_EventHandlerType();
[JScript]
public function get EventHandlerType() : Type;

Property Value

A read-only Type object.

Remarks

The EventHandlerType property retrieves the Type object that represents the event-handler delegate associated with this event. It returns the class representing the delegate event handler.

See Also

EventInfo Class | EventInfo Members | System.Reflection Namespace | Type | Delegate | EventHandler