7 references to GetOperationAbortedException
System.Net.Quic (7)
System\Net\Quic\Internal\ThrowHelper.cs (1)
56exception = GetOperationAbortedException();
System\Net\Quic\QuicConnection.cs (1)
565Exception exception = ExceptionDispatchInfo.SetCurrentStackTrace(_disposed == 1 ? new ObjectDisposedException(GetType().FullName) : ThrowHelper.GetOperationAbortedException());
System\Net\Quic\QuicStream.cs (5)
481_receiveTcs.TrySetException(ThrowHelper.GetOperationAbortedException(SR.net_quic_reading_aborted), final: true); 485var exception = ThrowHelper.GetOperationAbortedException(SR.net_quic_writing_aborted); 621(shutdownByApp: true, closedRemotely: false) => ThrowHelper.GetOperationAbortedException(), 755_receiveTcs.TrySetException(ThrowHelper.GetOperationAbortedException(SR.net_quic_reading_aborted), final: true); 759_sendTcs.TrySetException(ThrowHelper.GetOperationAbortedException(SR.net_quic_writing_aborted), final: true);