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::EndDelete Method (IAsyncResult^)
.NET Framework (current version)
When implemented in a derived class, represents the end of the Delete phase. The Delete phase occurs when state data is permanently deleted 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 implement the EndDelete method. This code example is part of the DurableServiceFactory SDK sample from the FilePersistenceProviderFactory.cs file. For more information, see the DurableServiceFactory SDK sample.
public override void EndDelete(IAsyncResult result) { base.ThrowIfDisposedOrNotOpen(); this.factory.EndDelete(result); }
.NET Framework
Available since 3.5
Available since 3.5
Show: