1 write to _connection
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (1)
95
_connection
= connection;
19 references to _connection
System.Net.Http (19)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (19)
160
public Http2Connection Connection =>
_connection
;
317
_connection
.LogExceptions(
_connection
.SendEndStreamAsync(StreamId));
353
}, this,
_connection
._pool.Settings._expect100ContinueTimeout, Timeout.InfiniteTimeSpan).ConfigureAwait(false))
377
_connection
.LogExceptions(
_connection
.SendRstStreamAsync(StreamId, Http2ProtocolErrorCode.Cancel));
389
_connection
.RemoveStream(this);
609
throw new HttpRequestException(HttpRequestError.ConfigurationLimitExceeded, SR.Format(SR.net_http_response_headers_exceeded_length,
_connection
._pool.Settings.MaxResponseHeadersByteLength));
704
Encoding? valueEncoding =
_connection
._pool.Settings._responseHeaderEncodingSelector?.Invoke(descriptor.Name, _request);
723
string headerValue =
_connection
.GetResponseHeaderValueWithCaching(descriptor, value, valueEncoding);
1100
if (
_connection
._pool.Settings._useCookies)
1102
CookieHelper.ProcessReceivedCookies(_response,
_connection
._pool.Settings._cookieContainer!);
1329
await
_connection
.SendStreamDataAsync(StreamId, current, flush, _requestBodyCancellationSource.Token).ConfigureAwait(false);
1371
_connection
.LogExceptions(
_connection
.SendEndStreamAsync(StreamId));
1396
_connection
.LogExceptions(
_connection
.SendRstStreamAsync(StreamId, Http2ProtocolErrorCode.Cancel));
1478
_connection
.Trace(StreamId, message, memberName);
1669
return http2Stream.
_connection
.FlushAsync(cancellationToken);