MulticastDelegate.GetInvocationList Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the invocation list of this multicast delegate, in invocation order.
public:
override cli::array <Delegate ^> ^ GetInvocationList();
public override sealed Delegate[] GetInvocationList ();
override this.GetInvocationList : unit -> Delegate[]
Public Overrides NotOverridable Function GetInvocationList () As Delegate()
Returns
An array of delegates whose invocation lists collectively match the invocation list of this instance.
Exceptions
Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism.
Remarks
The array contains a set of delegates, each with an invocation list of one entry. Invoking these delegates sequentially, in the order they appear in the array, produces the same results as invoking the current instance.