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