WorkflowApplication.EndUnload(IAsyncResult) Method

Definition

Waits for the pending asynchronous unload operation to complete.

public:
 void EndUnload(IAsyncResult ^ result);
public void EndUnload (IAsyncResult result);
member this.EndUnload : IAsyncResult -> unit
Public Sub EndUnload (result As IAsyncResult)

Parameters

result
IAsyncResult

The asynchronous unload operation.

Remarks

This method can be called to determine whether a BeginUnload operation was successful. If called before the unload operation completes, it blocks until the operation is complete.

This method completes an asynchronous BeginUnload operation using the IAsyncResult asynchronous design pattern. For more information, see Asynchronous Programming Overview.

Applies to