WorkflowApplication.EndUnload(IAsyncResult) 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.
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.