System\Activities\WorkflowApplication.cs (9)
2373if (operation != PersistenceOperation.Save)
2430PersistCore(ref timeoutHelper, PersistenceOperation.Save);
2451return new UnloadOrPersistAsyncResult(this, timeout, PersistenceOperation.Save, false, false, callback, state);
2495return this.BeginInternalPersist(PersistenceOperation.Save, ActivityDefaults.InternalSaveTimeout, true, callback, state);
3899if (this.operation != PersistenceOperation.Save)
5022operation = PersistenceOperation.Save;
5816this.store.Execute(this.handle, CreateSaveCommand(null, this.instanceMetadata, PersistenceOperation.Save), timeout);
5829return this.store.BeginExecute(this.handle, CreateSaveCommand(null, this.instanceMetadata, PersistenceOperation.Save), timeout, callback, state);
5917UnlockInstance = operation != PersistenceOperation.Save,