1 write to _context
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Connection.cs (1)
157_context = context;
31 references to _context
Microsoft.AspNetCore.Server.Kestrel.Core (31)
Internal\Http2\Http2Connection.cs (31)
163_context.InitialExecutionContext = ExecutionContext.Capture(); 193_inputTask = CopyPipeAsync(_context.Transport.Input, _input.Writer); 207public string ConnectionId => _context.ConnectionId; 211public KestrelTrace Log => _context.ServiceContext.Log; 212public IFeatureCollection ConnectionFeatures => _context.ConnectionFeatures; 213public TimeProvider TimeProvider => _context.ServiceContext.TimeProvider; 214public ITimeoutControl TimeoutControl => _context.TimeoutControl; 215public KestrelServerLimits Limits => _context.ServiceContext.ServerOptions.Limits; 231var useException = _context.ServiceContext.ServerOptions.FinOnError || hasActiveStreams; 310var connectionWindow = _context.ServiceContext.ServerOptions.Limits.Http2.InitialConnectionWindowSize; 493_context.Transport.Input.CancelPendingRead(); 593await _context.Transport.Output.WriteAsync(responseBytes); 906_context.AltSvcHeader, 907_context.ConnectionContext, 908_context.ServiceContext, 909_context.ConnectionFeatures, 910_context.MemoryPool, 911_context.LocalEndPoint, 912_context.RemoteEndPoint, 920streamContext.TimeoutControl = _context.TimeoutControl; 921streamContext.InitialExecutionContext = _context.InitialExecutionContext; 1123_context.ConnectionFeatures.Get<IConnectionLifetimeNotificationFeature>()?.RequestClose(); 1326Log.Http2MaxConcurrentStreamsReached(_context.ConnectionId); 1346Log.Http2TooManyEnhanceYourCalms(_context.ConnectionId, EnhanceYourCalmMaximumCount); 1374_context.ServiceContext.Metrics.RequestQueuedStart(_metricsContext, KestrelMetrics.Http2); 1533Log.Http2ConnectionClosing(_context.ConnectionId); 1611if (_totalParsedHeaderSize > _context.ServiceContext.ServerOptions.Limits.MaxRequestHeadersTotalSize * 2) 1855Log.Http2ConnectionClosed(_context.ConnectionId, _highestOpenedStreamId); 1872private PipeOptions GetInputPipeOptions() => new PipeOptions(pool: _context.MemoryPool, 1873readerScheduler: _context.ServiceContext.Scheduler, 1877minimumSegmentSize: _context.MemoryPool.GetMinimumSegmentSize(),