ISynchronizeInvoke::BeginInvoke Method (Delegate^, array<Object^>^)
Asynchronously executes the delegate on the thread that created this object.
Assembly: System (in System.dll)
[HostProtectionAttribute(SecurityAction::LinkDemand, Synchronization = true, ExternalThreading = true)] IAsyncResult^ BeginInvoke( Delegate^ method, array<Object^>^ args )
Parameters
- method
-
Type:
System::Delegate^
A Delegate to a method that takes parameters of the same number and type that are contained in args.
- args
-
Type:
array<System::Object^>^
An array of type Object to pass as arguments to the given method. This can be null if no arguments are needed.
Return Value
Type: System::IAsyncResult^An IAsyncResult interface that represents the asynchronous operation started by calling this method.
The method delegate is executed on the thread that created the object, instead of the thread on which BeginInvoke was called.
The delegate is called asynchronously, and this method returns immediately. You can call this method from any thread. If you need the return value from a process started with this method, call EndInvoke to get the value.
If you need to call the delegate synchronously, use the Invoke method instead.
Available since 1.1