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!

Delegate.GetInvocationList

Returns the invocation list of the Delegate.

[Visual Basic]
Overridable Public Function GetInvocationList() As Delegate ()
[C#]
public virtual Delegate[] GetInvocationList();
[C++]
public: virtual Delegate* GetInvocationList() [];
[JScript]
public function GetInvocationList() : Delegate[];

Return Value

An array of singlecast Delegate objects representing the invocation list of the current Delegate. If the current Delegate is singlecast, the array contains only one element. If the current Delegate is multicast, the array may contain more than one element.

Remarks

This method can be overridden by a derived class.

The invocation list of each Delegate in the returned array is guaranteed to have exactly one entry.

See Also

Delegate Class | Delegate Members | System Namespace