19 references to Write
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicStreamContext.cs (1)
513stream.Abort(QuicAbortDirection.Write, resolvedErrorCode);
Internal\QuicStreamContext.FeatureCollection.cs (1)
93_stream.Abort(QuicAbortDirection.Write, errorCode);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (5)
QuicConnectionContextTests.cs (2)
423clientStream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError); 472clientStream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError);
QuicStreamContextTests.cs (3)
146clientStream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.RequestCancelled); 272clientStream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError); 350clientStream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError);
System.Net.Http (4)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (4)
324_stream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.RequestCancelled); 345_stream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError); 350_stream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.InternalError); 1384_stream.Abort(QuicAbortDirection.Write, (long)Http3ErrorCode.RequestCancelled);
System.Net.Quic (8)
System\Net\Quic\QuicAbortDirection.cs (2)
21/// Abort both sides of the stream, i.e.: <see cref="Read"/> and <see cref="Write"/>) at the same time. 23Both = Read | Write
System\Net\Quic\QuicStream.cs (6)
101stream.Abort(QuicAbortDirection.Write, stream._defaultErrorCode); 144/// or when the peer called <see cref="Abort"/> for <see cref="QuicAbortDirection.Write"/>. 152/// or when <see cref="Abort"/> for <see cref="QuicAbortDirection.Write"/> is called, 444/// Aborts either <see cref="QuicAbortDirection.Read">reading</see>, <see cref="QuicAbortDirection.Write">writing</see> or <see cref="QuicAbortDirection.Both">both</see> sides of the stream. 465if (abortDirection.HasFlag(QuicAbortDirection.Write) && !_sendTcs.IsCompleted) 492if (abortDirection.HasFlag(QuicAbortDirection.Write))