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.

LockingPersistenceProvider Class

 
Note: This API is now obsolete.

The abstract base class from which all durable service persistence providers that implement locking are derived.

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

System::Object
  System.ServiceModel.Channels::CommunicationObject
    System.ServiceModel.Persistence::PersistenceProvider
      System.ServiceModel.Persistence::LockingPersistenceProvider

[ObsoleteAttribute("The WF3 types are deprecated.  Instead, please use the new WF4 types from System.Activities.*")]
public ref class LockingPersistenceProvider abstract : PersistenceProvider

NameDescription
System_CAPS_protmethodLockingPersistenceProvider(Guid)

When implemented in a derived class, creates a new instance of the LockingPersistenceProvider class, configured with the specified identity value.

NameDescription
System_CAPS_protpropertyDefaultCloseTimeout

When overridden in a derived class, gets the default interval of time provided for a close operation to complete.(Inherited from CommunicationObject.)

System_CAPS_protpropertyDefaultOpenTimeout

When overridden in a derived class, gets the default interval of time provided for an open operation to complete.(Inherited from CommunicationObject.)

System_CAPS_pubpropertyId

Represents the Guid associated with this instance.(Inherited from PersistenceProvider.)

System_CAPS_protpropertyIsDisposed

Gets a value that indicates whether the communication object has been disposed.(Inherited from CommunicationObject.)

System_CAPS_pubpropertyState

Gets a value that indicates the current state of the communication object.(Inherited from CommunicationObject.)

System_CAPS_protpropertyThisLock

Gets the mutually exclusive lock that protects the class instance during a state transition.(Inherited from CommunicationObject.)

NameDescription
System_CAPS_pubmethodAbort()

Causes a communication object to transition immediately from its current state into the closing state.(Inherited from CommunicationObject.)

System_CAPS_pubmethodBeginClose(AsyncCallback^, Object^)

Begins an asynchronous operation to close a communication object.(Inherited from CommunicationObject.)

System_CAPS_pubmethodBeginClose(TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to close a communication object with a specified timeout.(Inherited from CommunicationObject.)

System_CAPS_pubmethodBeginCreate(Object^, TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to create instance state information in the persistence store using the parameters. This method does not unlock the instance after saving the state information.(Overrides PersistenceProvider::BeginCreate(Object^, TimeSpan, AsyncCallback^, Object^).)

System_CAPS_pubmethodBeginCreate(Object^, TimeSpan, Boolean, AsyncCallback^, Object^)

Begins an asynchronous operation to create instance state information in the persistence store using the parameters. This method unlocks the instance after saving the instance state if the value of the unlockInstance parameter is true.

System_CAPS_pubmethodBeginDelete(Object^, TimeSpan, AsyncCallback^, Object^)

When implemented in a derived class, represents the beginning of the Delete phase. The Delete phase occurs when service state data is permanently deleted from the persistence store.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodBeginLoad(TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to load an instance based on state information in the persistence store using the parameters. This method does not lock the instance. (Overrides PersistenceProvider::BeginLoad(TimeSpan, AsyncCallback^, Object^).)

System_CAPS_pubmethodBeginLoad(TimeSpan, Boolean, AsyncCallback^, Object^)

Begins an asynchronous operation to load an instance based on state information in the persistence store using the parameters. This method locks the instance after loading the instance state if the value of the lockInstance parameter is true.

System_CAPS_pubmethodBeginLoadIfChanged(TimeSpan, Object^, AsyncCallback^, Object^)

When implemented in a derived class, represents the beginning of the LoadIfChanged phase. The LoadIfChanged phase occurs when state data is loaded into the persistence provider from the persistence store and the state data in the persistence store has been changed. This method call does not lock the instance in the persistence store.(Overrides PersistenceProvider::BeginLoadIfChanged(TimeSpan, Object^, AsyncCallback^, Object^).)

System_CAPS_pubmethodBeginLoadIfChanged(TimeSpan, Object^, Boolean, AsyncCallback^, Object^)

When implemented in a derived class, represents the beginning of the LoadIfChanged phase. The LoadIfChanged phase occurs when state data is loaded into the persistence provider from the persistence store and the state data in the persistence store has been changed. This method call lets you specify whether you want to lock the instance in the persistence store.

System_CAPS_pubmethodBeginOpen(AsyncCallback^, Object^)

Begins an asynchronous operation to open a communication object.(Inherited from CommunicationObject.)

System_CAPS_pubmethodBeginOpen(TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to open a communication object within a specified interval of time.(Inherited from CommunicationObject.)

System_CAPS_pubmethodBeginUnlock(TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to unlock an instance in the persistence store.

System_CAPS_pubmethodBeginUpdate(Object^, TimeSpan, AsyncCallback^, Object^)

Begins an asynchronous operation to update instance state information in the persistence store using the parameters passed. This operation does not unlock the instance in the instance store.(Overrides PersistenceProvider::BeginUpdate(Object^, TimeSpan, AsyncCallback^, Object^).)

System_CAPS_pubmethodBeginUpdate(Object^, TimeSpan, Boolean, AsyncCallback^, Object^)

Begins an asynchronous operation to update instance state information in the persistence store using the parameters passed. This operation locks the instance in the persistence store if the value of the unlockInstance parameter is true.

System_CAPS_pubmethodClose()

Causes a communication object to transition from its current state into the closed state.(Inherited from CommunicationObject.)

System_CAPS_pubmethodClose(TimeSpan)

Causes a communication object to transition from its current state into the closed state within a specified interval of time.(Inherited from CommunicationObject.)

System_CAPS_pubmethodCreate(Object^, TimeSpan)

Creates instance state information in the persistence store using parameters passed into the method. This method does not unlock the instance in the persistence store after saving the instance state.(Overrides PersistenceProvider::Create(Object^, TimeSpan).)

System_CAPS_pubmethodCreate(Object^, TimeSpan, Boolean)

This method creates instance state information in the persistence store using parameters passed into the method. The method unlocks the instance in the instance store if the value of the unlockInstance parameter is true.

System_CAPS_pubmethodDelete(Object^, TimeSpan)

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

System_CAPS_pubmethodEndClose(IAsyncResult^)

Completes an asynchronous operation to close a communication object.(Inherited from CommunicationObject.)

System_CAPS_pubmethodEndCreate(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.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodEndDelete(IAsyncResult^)

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.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodEndLoad(IAsyncResult^)

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.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodEndLoadIfChanged(IAsyncResult^, Object^%)

When implemented in a derived class, represents the end of the LoadIfChanged phase. The LoadIfChanged phase occurs when state data is loaded into the persistence provider from the persistence store, and the state data in the persistence store has been changed.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodEndOpen(IAsyncResult^)

Completes an asynchronous operation to open a communication object.(Inherited from CommunicationObject.)

System_CAPS_pubmethodEndUnlock(IAsyncResult^)

Ends the asynchronous operation to unlock an instance in the persistence store.

System_CAPS_pubmethodEndUpdate(IAsyncResult^)

Represents the end of the Update phase. The Update phase occurs when service state records are updated in the persistence store.(Inherited from PersistenceProvider.)

System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_protmethodFault()

Causes a communication object to transition from its current state into the faulted state.(Inherited from CommunicationObject.)

System_CAPS_protmethodFinalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.)

System_CAPS_protmethodGetCommunicationObjectType()

Gets the type of communication object.(Inherited from CommunicationObject.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodLoad(TimeSpan)

Loads service state information from the persistence store without locking the instance.(Overrides PersistenceProvider::Load(TimeSpan).)

System_CAPS_pubmethodLoad(TimeSpan, Boolean)

Loads state information from the persistence store after locking the instance.

System_CAPS_pubmethodLoadIfChanged(TimeSpan, Object^, Boolean, Object^%)

Loads the instance state information from the persistence store if the state information has been changed since the last time the information was loaded by the caller. This method also lets the caller specify whether to lock the instance in the persistence store.

System_CAPS_pubmethodLoadIfChanged(TimeSpan, Object^, Object^%)

Loads the instance state information from the persistence store if the state information has been changed since the last time the information was loaded by the caller. This method does not lock the instance in the persistence store.(Overrides PersistenceProvider::LoadIfChanged(TimeSpan, Object^, Object^%).)

System_CAPS_protmethodMemberwiseClone()

Creates a shallow copy of the current Object.(Inherited from Object.)

System_CAPS_protmethodOnAbort()

Inserts processing on a communication object after it transitions to the closing state due to the invocation of a synchronous abort operation.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnBeginClose(TimeSpan, AsyncCallback^, Object^)

Inserts processing after a communication object transitions to the closing state due to the invocation of an asynchronous close operation.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnBeginOpen(TimeSpan, AsyncCallback^, Object^)

Inserts processing on a communication object after it transitions to the opening state due to the invocation of an asynchronous open operation.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnClose(TimeSpan)

Inserts processing on a communication object after it transitions to the closing state due to the invocation of a synchronous close operation.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnClosed()

Invoked during the transition of a communication object into the closing state.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnClosing()

Invoked during the transition of a communication object into the closing state.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnEndClose(IAsyncResult^)

Completes an asynchronous operation on the close of a communication object.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnEndOpen(IAsyncResult^)

Completes an asynchronous operation on the open of a communication object.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnFaulted()

Inserts processing on a communication object after it transitions to the faulted state due to the invocation of a synchronous fault operation.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnOpen(TimeSpan)

Inserts processing on a communication object after it transitions into the opening state which must complete within a specified interval of time.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnOpened()

Invoked during the transition of a communication object into the opened state.(Inherited from CommunicationObject.)

System_CAPS_protmethodOnOpening()

Invoked during the transition of a communication object into the opening state.(Inherited from CommunicationObject.)

System_CAPS_pubmethodOpen()

Causes a communication object to transition from the created state into the opened state.(Inherited from CommunicationObject.)

System_CAPS_pubmethodOpen(TimeSpan)

Causes a communication object to transition from the created state into the opened state within a specified interval of time.(Inherited from CommunicationObject.)

System_CAPS_protmethodThrowIfDisposed()

Throws an exception if the communication object is disposed.(Inherited from CommunicationObject.)

System_CAPS_protmethodThrowIfDisposedOrImmutable()

Throws an exception if the communication object the State property is not set to the Created state.(Inherited from CommunicationObject.)

System_CAPS_protmethodThrowIfDisposedOrNotOpen()

Throws an exception if the communication object is not in the Opened state.(Inherited from CommunicationObject.)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

System_CAPS_pubmethodUnlock(TimeSpan)

Unlocks the instance whose ID is specified when constructing the LockingPersistenceProvider object in the persistence store.

System_CAPS_pubmethodUpdate(Object^, TimeSpan)

When implemented in a derived class, updates the instance state information in the persistence store. This method does not unlock the instance after updating the instance state information in the persistence store.(Overrides PersistenceProvider::Update(Object^, TimeSpan).)

System_CAPS_pubmethodUpdate(Object^, TimeSpan, Boolean)

When implemented in a derived class, updates the instance state information in the persistence store. This method does not unlock the instance after updating the instance state information in the persistence store.

NameDescription
System_CAPS_pubeventClosed

Occurs when a communication object transitions into the closed state.(Inherited from CommunicationObject.)

System_CAPS_pubeventClosing

Occurs when a communication object transitions into the closing state.(Inherited from CommunicationObject.)

System_CAPS_pubeventFaulted

Occurs when a communication object transitions into the faulted state.(Inherited from CommunicationObject.)

System_CAPS_pubeventOpened

Occurs when a communication object transitions into the opened state.(Inherited from CommunicationObject.)

System_CAPS_pubeventOpening

Occurs when a communication object transitions into the opening state.(Inherited from CommunicationObject.)

In addition to persistence, the LockingPersistenceProvider class implements locking of service state data records. Methods that interact with persisted data (such as the Load method) have an optional parameter (lockInstance) that defines whether locks on the data in question are released or maintained.

.NET Framework
Available since 3.5

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show:
© 2017 Microsoft