3 writes to _disposed
System.Net.Quic (3)
System\Net\Quic\QuicStream.cs (1)
701if (Interlocked.Exchange(ref _disposed, 1) != 0)
System\Net\Quic\QuicStream.Stream.cs (2)
89public override bool CanRead => Volatile.Read(ref _disposed) == 0 && _canRead; 152public override bool CanWrite => Volatile.Read(ref _disposed) == 0 && _canWrite;
10 references to _disposed
System.Net.Quic (10)
System\Net\Quic\QuicStream.cs (4)
267ObjectDisposedException.ThrowIf(_disposed == 1, this); 354ObjectDisposedException.ThrowIf(_disposed == 1, this); 445if (_disposed == 1) 504ObjectDisposedException.ThrowIf(_disposed == 1, this);
System\Net\Quic\QuicStream.Stream.cs (6)
53ObjectDisposedException.ThrowIf(_disposed == 1, this); 58ObjectDisposedException.ThrowIf(_disposed == 1, this); 72ObjectDisposedException.ThrowIf(_disposed == 1, this); 77ObjectDisposedException.ThrowIf(_disposed == 1, this); 116ObjectDisposedException.ThrowIf(_disposed == 1, this); 178ObjectDisposedException.ThrowIf(_disposed == 1, this);