8 writes to _LockReadState
System (8)
net\System\Net\SecureProtocols\_SslState.cs (8)
619_LockReadState = LockHandshake; 1127int lockState = Interlocked.Exchange(ref _LockReadState, LockHandshake); 1155int lockState = Interlocked.Exchange(ref _LockReadState, newState); 1162_LockReadState = LockRead; 1187int lockState = Interlocked.CompareExchange(ref _LockReadState, LockRead, LockNone); 1208_LockReadState = LockRead; 1212_LockReadState = LockPendingRead; 1235int lockState = Interlocked.CompareExchange(ref _LockReadState, LockNone, LockRead);
2 references to _LockReadState
System (2)
net\System\Net\SecureProtocols\_SslState.cs (2)
1122if (_LockReadState == LockPendingRead) 1205if (_LockReadState != LockHandshake)