3 writes to _disposed
System.Net.Quic (3)
System\Net\Quic\QuicStream.cs (1)
745if (Interlocked.Exchange(ref _disposed, true))
System\Net\Quic\QuicStream.Stream.cs (2)
89public override bool CanRead => !Volatile.Read(ref _disposed) && _canRead; 152public override bool CanWrite => !Volatile.Read(ref _disposed) && _canWrite;
11 references to _disposed
System.Net.Quic (11)
System\Net\Quic\QuicStream.cs (5)
163ObjectDisposedException.ThrowIf(_disposed, this); 305ObjectDisposedException.ThrowIf(_disposed, this); 392if (_disposed) 484if (_disposed) 543ObjectDisposedException.ThrowIf(_disposed, this);
System\Net\Quic\QuicStream.Stream.cs (6)
53ObjectDisposedException.ThrowIf(_disposed, this); 58ObjectDisposedException.ThrowIf(_disposed, this); 72ObjectDisposedException.ThrowIf(_disposed, this); 77ObjectDisposedException.ThrowIf(_disposed, this); 116ObjectDisposedException.ThrowIf(_disposed, this); 178ObjectDisposedException.ThrowIf(_disposed, this);