Windows apps
Collapse the table of content
Expand the table of content
Information
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::Delete Method (Object^, TimeSpan)

 

When implemented in a derived class, permanently deletes service state information from the persistence store.

Namespace:   System.ServiceModel.Persistence
Assembly:  System.WorkflowServices (in System.WorkflowServices.dll)

public:
virtual void Delete(
	Object^ instance,
	TimeSpan timeout
) abstract

Parameters

instance
Type: System::Object^

The actual instance state.

timeout
Type: System::TimeSpan

The time period after which the persistence provider aborts this attempt.

The following code demonstrates how to implement the Delete 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 void Delete(object instance, TimeSpan timeout)
{
    base.ThrowIfDisposedOrNotOpen();
    this.factory.Delete(this.Id, timeout);
}

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft