1 write to _context
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
82_context = context;
16 references to _context
Microsoft.AspNetCore.Server.Kestrel.Core (16)
Internal\Http\HttpProtocol.cs (12)
93public ServiceContext ServiceContext => _context.ServiceContext; 94private IPEndPoint? LocalEndPoint => _context.LocalEndPoint; 95private IPEndPoint? RemoteEndPoint => _context.RemoteEndPoint; 96public ITimeoutControl TimeoutControl => _context.TimeoutControl; 98public IFeatureCollection ConnectionFeatures => _context.ConnectionFeatures; 105protected string ConnectionId => _context.ConnectionId; 628if (_context.InitialExecutionContext is null) 631_context.InitialExecutionContext = ExecutionContext.Capture(); 638ExecutionContext.Restore(_context.InitialExecutionContext); 1237if (_context.AltSvcHeader != null && !responseHeaders.HasAltSvc) 1239responseHeaders.SetRawAltSvc(_context.AltSvcHeader.Value, _context.AltSvcHeader.RawBytes);
Internal\Http\HttpProtocol.FeatureCollection.cs (4)
95RequestBodyPipeReader = PipeReader.Create(RequestBody, new StreamPipeReaderOptions(_context.MemoryPool, _context.MemoryPool.GetMinimumSegmentSize(), _context.MemoryPool.GetMinimumAllocSize(), useZeroByteReads: true)); 279ServiceContext.Metrics.RequestUpgradedStart(_context.MetricsContext);