Base:
method
WriteAsync
System.Net.Http.HttpBaseStream.WriteAsync(System.ReadOnlyMemory<System.Byte>, System.Threading.CancellationToken)
2 overrides of WriteAsync
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (2)
1506public override ValueTask WriteAsync(ReadOnlyMemory<byte> destination, CancellationToken cancellationToken) => ValueTask.FromException(new NotSupportedException(SR.net_http_content_readonly_stream)); 1531public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken)
1 reference to WriteAsync
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (1)
1540return base.WriteAsync(buffer, cancellationToken);