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