Base:
10 overrides of WriteAsync
System.Net.Http (10)
System\Net\Http\EmptyReadStream.cs (1)
36public override ValueTask WriteAsync(ReadOnlyMemory<byte> destination, CancellationToken cancellationToken) => throw new NotSupportedException();
System\Net\Http\SocketsHttpHandler\ChunkedEncodingWriteStream.cs (1)
45public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken ignored)
System\Net\Http\SocketsHttpHandler\ContentLengthWriteStream.cs (1)
36public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken ignored) // token ignored as it comes from SendAsync
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (2)
254public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken) => throw new NotSupportedException(); 329public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken) => throw new NotSupportedException();
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (1)
1639public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
1478public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken) 1516public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\HttpContentReadStream.cs (1)
25public sealed override ValueTask WriteAsync(ReadOnlyMemory<byte> destination, CancellationToken cancellationToken) => throw new NotSupportedException();
System\Net\Http\SocketsHttpHandler\RawConnectionStream.cs (1)
164public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken)
1 reference to WriteAsync
System.Net.Http (1)
System\Net\Http\HttpBaseStream.cs (1)
72return WriteAsync(new ReadOnlyMemory<byte>(buffer, offset, count), cancellationToken).AsTask();