3 writes to _disposed
System.Net.Quic (3)
System\Net\Quic\QuicStream.cs (1)
715if (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;
10 references to _disposed
System.Net.Quic (10)
System\Net\Quic\QuicStream.cs (4)
275ObjectDisposedException.ThrowIf(_disposed, this); 362if (_disposed) 454if (_disposed) 513ObjectDisposedException.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);