1 write to _context
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
88_context = context;
16 references to _context
Microsoft.AspNetCore.Server.Kestrel.Core (16)
Internal\Http\HttpProtocol.cs (12)
99public ServiceContext ServiceContext => _context.ServiceContext; 100private IPEndPoint? LocalEndPoint => _context.LocalEndPoint; 101private IPEndPoint? RemoteEndPoint => _context.RemoteEndPoint; 102public ITimeoutControl TimeoutControl => _context.TimeoutControl; 104public IFeatureCollection ConnectionFeatures => _context.ConnectionFeatures; 111protected string ConnectionId => _context.ConnectionId; 633if (_context.InitialExecutionContext is null) 636_context.InitialExecutionContext = ExecutionContext.Capture(); 643ExecutionContext.Restore(_context.InitialExecutionContext); 1253if (_context.AltSvcHeader != null && !responseHeaders.HasAltSvc) 1255responseHeaders.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);