Initiate asynchronous .NET delegate call
result = BeginInvoke(arg1,...,argN,callback,object)
initiates
asynchronous call to a .NET delegate. You must call result
= BeginInvoke(arg1,...,argN
,callback
,object
)EndInvoke
to
complete the asynchronous call.
|
Input arguments for delegate. The type and number of arguments must agree with the delegate signature. |
|
.NET System.AsyncCallback delegate, or |
|
User-defined object, or |
|
.NET System.IAsyncResult object. Used to monitor the progress of the
asynchronous call. Input argument to |