WorkflowApplication.EndRun(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 run operation to complete.
public:
void EndRun(IAsyncResult ^ result);
public void EndRun (IAsyncResult result);
member this.EndRun : IAsyncResult -> unit
Public Sub EndRun (result As IAsyncResult)
Parameters
- result
- IAsyncResult
The asynchronous run operation.
Remarks
This method determines whether a BeginRun operation was successful. If called before the resume operation completes, it blocks until the resume operation is complete.
This method completes an asynchronous run operation using the IAsyncResult asynchronous design pattern. For more information, see Asynchronous Programming Overview.