The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
PersistenceProvider::EndLoad Method (IAsyncResult^)
.NET Framework (current version)
When implemented in a derived class, represents the end of the Load phase. The Load phase occurs when state data is loaded into the persistence provider from the persistence store.
Assembly: System.WorkflowServices (in System.WorkflowServices.dll)
Parameters
- result
-
Type:
System::IAsyncResult^
A reference to the result of the operation.
The following code demonstrates how to use the EndLoad method. This code example is part of the DurableServiceFactory SDK sample from the FilePersistenceProviderFactory.cs file. For more information, seethe DurableServiceFactory SDK sample.
public override object EndLoad(IAsyncResult result) { base.ThrowIfDisposedOrNotOpen(); return this.factory.EndLoad(result); }
.NET Framework
Available since 3.5
Available since 3.5
Show: