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!

EventDescriptor.IsMulticast

When overridden in a derived class, gets a value indicating whether the event delegate is a multicast delegate.

[Visual Basic]
MustOverride Public ReadOnly Property IsMulticast As Boolean
[C#]
public bool IsMulticast {abstract get;}
[C++]
public: __property virtual bool get_IsMulticast() = 0;
[JScript]
public abstract function get IsMulticast() : Boolean;

Property Value

true if the event delegate is multicast; otherwise, false.

Remarks

Typically, this property is implemented through reflection.

See Also

EventDescriptor Class | EventDescriptor Members | System.ComponentModel Namespace | EventType | ComponentType