8 writes to _nestedRead
System.Net.Security (8)
System\Net\Security\SslStream.cs (2)
746if (Interlocked.Exchange(ref _nestedRead, NestedState.StreamInUse) == NestedState.StreamInUse) 767_nestedRead = NestedState.StreamNotInUse;
System\Net\Security\SslStream.IO.cs (6)
66if (Interlocked.Exchange(ref _nestedRead, NestedState.StreamDisposed) == NestedState.StreamNotInUse && 201if (Interlocked.CompareExchange(ref _nestedRead, NestedState.StreamInUse, NestedState.StreamNotInUse) != NestedState.StreamNotInUse) 210_nestedRead = NestedState.StreamNotInUse; 273_nestedRead = NestedState.StreamNotInUse; 852if (Interlocked.CompareExchange(ref _nestedRead, NestedState.StreamInUse, NestedState.StreamNotInUse) != NestedState.StreamNotInUse) 988_nestedRead = NestedState.StreamNotInUse;
2 references to _nestedRead
System.Net.Security (2)
System\Net\Security\SslStream.IO.cs (2)
203ObjectDisposedException.ThrowIf(_nestedRead == NestedState.StreamDisposed, this); 854ObjectDisposedException.ThrowIf(_nestedRead == NestedState.StreamDisposed, this);