4 writes to state
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (4)
294this.state = States.Aborted; 377this.state = States.Opened; 515this.instanceManager.state = States.Opened; 663this.instanceManager.state = States.Closed;
14 references to state
System.ServiceModel.Activities (14)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (14)
67ThrowIfDisposedOrImmutable(this.state); 74ThrowIfDisposedOrImmutable(this.state); 104ThrowIfDisposedOrImmutable(this.state); 168aborted = this.state == States.Aborted; 230if (!stop && thisPtr.state == States.Opened) 270ThrowIfClosedOrAborted(this.state); 277ThrowIfClosedOrAborted(this.state); 290if (this.state == States.Aborted) 376ThrowIfDisposedOrImmutable(this.state); 514DurableInstanceManager.ThrowIfDisposedOrImmutable(this.instanceManager.state); 629if (this.instanceManager.state == States.Opened && this.instanceManager.handle != null) 658closed = this.instanceManager.state == States.Closed; 659opened = this.instanceManager.state == States.Opened; 660aborted = this.instanceManager.state == States.Aborted;