1 write to _connectionPair
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
Http2\Http2ConnectionBenchmarkBase.cs (1)
50
_connectionPair
= DuplexPipe.CreateConnectionPair(options, options);
13 references to _connectionPair
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (13)
Http2\Http2ConnectionBenchmarkBase.cs (13)
84
transport:
_connectionPair
.Transport,
97
_connectionPair
.Application.Output.Write(Http2Connection.ClientPreface);
98
_connectionPair
.Application.Output.WriteSettings(new Http2PeerSettings
102
_connectionPair
.Application.Output.FlushAsync().GetAwaiter().GetResult();
105
ReceiveFrameAsync(
_connectionPair
.Application.Input).GetAwaiter().GetResult();
107
ReceiveFrameAsync(
_connectionPair
.Application.Input).GetAwaiter().GetResult();
109
ReceiveFrameAsync(
_connectionPair
.Application.Input).GetAwaiter().GetResult();
118
_connectionPair
.Application.Output.WriteStartStream(streamId: _currentStreamId, _hpackEncoder, _requestHeadersEnumerator, _headersBuffer, endStream: true, frame: _sendHttpFrame);
119
await
_connectionPair
.Application.Output.FlushAsync();
123
await ReceiveFrameAsync(
_connectionPair
.Application.Input);
137
_connectionPair
.Application.Output.WriteWindowUpdateAsync(streamId: 0, _dataWritten, _sendHttpFrame);
138
await
_connectionPair
.Application.Output.FlushAsync();
188
_connectionPair
.Application.Output.Complete();