1 write to _http1Connection
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
Http1WritingBenchmark.cs (1)
39
_http1Connection
= MakeHttp1Connection();
8 references to _http1Connection
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (8)
Http1WritingBenchmark.cs (8)
55
_http1Connection
.Reset();
58
_http1Connection
.RequestHeaders.Add("Transfer-Encoding", "chunked");
62
_http1Connection
.RequestHeaders.ContentLength = _writeData.Length;
67
_http1Connection
.FlushAsync().GetAwaiter().GetResult();
77
_http1Connection
.ResetState();
82
_http1Connection
.OnStarting(_syncTaskFunc, null);
85
_http1Connection
.OnStarting(_pseudoAsyncTaskFunc, null);
96
return
_http1Connection
.ResponseBody.WriteAsync(_writeData, 0, _writeData.Length, default(CancellationToken));