4 writes to state
System.ServiceModel.Internals (4)
System\Runtime\SignalGate.cs (4)
44
lastState = Interlocked.CompareExchange(ref this.
state
, GateState.SignalPending, GateState.Locked);
48
this.
state
= GateState.Signalled;
68
lastState = Interlocked.CompareExchange(ref this.
state
, GateState.Unlocked, GateState.Locked);
72
this.
state
= GateState.Signalled;
4 references to state
System.ServiceModel.Internals (4)
System\Runtime\SignalGate.cs (4)
24
return this.
state
== GateState.Locked;
32
return this.
state
== GateState.Signalled;
41
int lastState = this.
state
;
65
int lastState = this.
state
;