2 writes to persistenceManager
System.Activities (2)
System\Activities\WorkflowApplication.cs (2)
4307
this.
persistenceManager
= persistenceManager;
4320
this.
persistenceManager
= persistenceManager;
14 references to persistenceManager
System.Activities (14)
System\Activities\WorkflowApplication.cs (14)
4396
ActivityExecutor deserializedRuntimeState = WorkflowApplication.ExtractRuntimeState(thisPtr.values, thisPtr.
persistenceManager
.InstanceId);
4397
return new WorkflowApplicationInstance(thisPtr.
persistenceManager
, thisPtr.values, deserializedRuntimeState.WorkflowIdentity);
4465
this.application.SetPersistenceManager(this.
persistenceManager
);
4468
this.application.instanceId = this.
persistenceManager
.InstanceId;
4473
this.application.InstanceStore = this.
persistenceManager
.InstanceStore;
4481
if (!this.
persistenceManager
.IsInitialized)
4484
IAsyncResult result = this.
persistenceManager
.BeginInitialize(definitionIdentity, this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(providerRegisteredCallback), this);
4496
thisPtr.
persistenceManager
.EndInitialize(result);
4519
result = this.
persistenceManager
.BeginTryLoad(this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(loadCompleteCallback), this);
4523
result = this.
persistenceManager
.BeginLoad(this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(loadCompleteCallback), this);
4565
if (!this.
persistenceManager
.EndTryLoad(result, out this.values))
4576
this.application.instanceId = this.
persistenceManager
.InstanceId;
4582
this.values = this.
persistenceManager
.EndLoad(result);
4722
thisPtr.
persistenceManager
.Abort();