WorkflowApplication.EndPersist(IAsyncResult) Method

Definition

Waits for the pending asynchronous persist operation to complete.

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

Parameters

result
IAsyncResult

The asynchronous persist operation.

Remarks

This method determines whether a BeginPersist operation was successful. If called before the persist operation completes, it blocks until the persist operation is complete.

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

Applies to