1 write to _context
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
89_context = context;
16 references to _context
Microsoft.AspNetCore.Server.Kestrel.Core (16)
Internal\Http\HttpProtocol.cs (12)
100public ServiceContext ServiceContext => _context.ServiceContext; 101private IPEndPoint? LocalEndPoint => _context.LocalEndPoint; 102private IPEndPoint? RemoteEndPoint => _context.RemoteEndPoint; 103public ITimeoutControl TimeoutControl => _context.TimeoutControl; 105public IFeatureCollection ConnectionFeatures => _context.ConnectionFeatures; 112protected string ConnectionId => _context.ConnectionId; 635if (_context.InitialExecutionContext is null) 638_context.InitialExecutionContext = ExecutionContext.Capture(); 645ExecutionContext.Restore(_context.InitialExecutionContext); 1244if (_context.AltSvcHeader != null && !responseHeaders.HasAltSvc) 1246responseHeaders.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);