6 writes to _LockWriteState
System (6)
net\System\Net\SecureProtocols\_SslState.cs (6)
1267
int lockState = Interlocked.CompareExchange(ref
_LockWriteState
, LockWrite, LockNone);
1283
_LockWriteState
= LockPendingWrite;
1302
int lockState = Interlocked.CompareExchange(ref
_LockWriteState
, LockNone, LockWrite);
1359
int lockState = Interlocked.Exchange(ref
_LockWriteState
, LockHandshake);
1394
int lockState = Interlocked.CompareExchange(ref
_LockWriteState
, LockNone, LockHandshake);
1400
_LockWriteState
= LockWrite;
2 references to _LockWriteState
System (2)
net\System\Net\SecureProtocols\_SslState.cs (2)
1276
if (
_LockWriteState
!= LockHandshake)
1355
if (
_LockWriteState
== LockPendingWrite)