'Declaration Public Overrides Function BeginInvoke( _
ByVal methodThe method to execute.As System.Delegate, _
ByVal ParamArray argsThe arguments for method.() As System.Object _
) As System.IAsyncResult
public override System.IAsyncResult BeginInvoke(
System.Delegate method,
params System.Object[] args
)
public: System.IAsyncResult* BeginInvoke(
System.Delegate* method,
params System.Object[]* args
); override
public:
System.IAsyncResult^ BeginInvoke(
System.Delegate^ method,
... array<System.Object>^ args
); override
Parameters
- method
- The method to execute.
- args
- The arguments for method.
Return Value
An object, which is returned immediately after System.Windows.Threading.Dispatcher.BeginInvoke(System.Delegate,System.Object[]) is called, that can be used to interact with the delegate as it is pending execution in the event queue.