WorkflowApplication.EndPersist(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 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.