1 write to _context
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Connection.cs (1)
139_context = context;
31 references to _context
Microsoft.AspNetCore.Server.Kestrel.Core (31)
Internal\Http2\Http2Connection.cs (31)
144_context.InitialExecutionContext = ExecutionContext.Capture(); 174_inputTask = CopyPipeAsync(_context.Transport.Input, _input.Writer); 188public string ConnectionId => _context.ConnectionId; 192public KestrelTrace Log => _context.ServiceContext.Log; 193public IFeatureCollection ConnectionFeatures => _context.ConnectionFeatures; 194public TimeProvider TimeProvider => _context.ServiceContext.TimeProvider; 195public ITimeoutControl TimeoutControl => _context.TimeoutControl; 196public KestrelServerLimits Limits => _context.ServiceContext.ServerOptions.Limits; 208var useException = _context.ServiceContext.ServerOptions.FinOnError || _clientActiveStreamCount != 0; 271var connectionWindow = _context.ServiceContext.ServerOptions.Limits.Http2.InitialConnectionWindowSize; 443_context.Transport.Input.CancelPendingRead(); 543await _context.Transport.Output.WriteAsync(responseBytes); 815_context.AltSvcHeader, 816_context.ConnectionContext, 817_context.ServiceContext, 818_context.ConnectionFeatures, 819_context.MemoryPool, 820_context.LocalEndPoint, 821_context.RemoteEndPoint, 829streamContext.TimeoutControl = _context.TimeoutControl; 830streamContext.InitialExecutionContext = _context.InitialExecutionContext; 1026_context.ConnectionFeatures.Get<IConnectionLifetimeNotificationFeature>()?.RequestClose(); 1211Log.Http2MaxConcurrentStreamsReached(_context.ConnectionId); 1231Log.Http2TooManyEnhanceYourCalms(_context.ConnectionId, EnhanceYourCalmMaximumCount); 1259_context.ServiceContext.Metrics.RequestQueuedStart(_metricsContext, KestrelMetrics.Http2); 1418Log.Http2ConnectionClosing(_context.ConnectionId); 1495if (_totalParsedHeaderSize > _context.ServiceContext.ServerOptions.Limits.MaxRequestHeadersTotalSize * 2) 1733Log.Http2ConnectionClosed(_context.ConnectionId, _highestOpenedStreamId); 1750private PipeOptions GetInputPipeOptions() => new PipeOptions(pool: _context.MemoryPool, 1751readerScheduler: _context.ServiceContext.Scheduler, 1755minimumSegmentSize: _context.MemoryPool.GetMinimumSegmentSize(),