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::EndCreate Method (IAsyncResult^)

 

When implemented in a derived class, represents the end of the Create phase. The Create phase occurs when service state records are first created in the persistence store.

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

public:
virtual Object^ EndCreate(
	IAsyncResult^ result
) abstract

Parameters

result
Type: System::IAsyncResult^

A reference to the result of the operation.

Return Value

Type: System::Object^

The instance token corresponding to the state just saved. This can be passed to LoadIfChanged to determine whether the state in the persistence store differs from the state when Create was called.

The following code demonstrates how to implement the EndCreate method.

public override object EndCreate(IAsyncResult result)
{
    base.ThrowIfDisposedOrNotOpen();
    this.factory.EndCreate(result);
    return null;
}

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