1 write to _connectionContext
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
79_connectionContext = connectionContext;
15 references to _connectionContext
Microsoft.AspNetCore.SignalR.Core (15)
HubConnectionContext.cs (15)
128public virtual string ConnectionId => _connectionContext.ConnectionId; 148public virtual IFeatureCollection Features => _connectionContext.Features; 153public virtual IDictionary<object, object?> Items => _connectionContext.Items; 159internal PipeReader Input => _connectionContext.Transport.Input; 303Protocol.WriteMessage(message, _connectionContext.Transport.Output); 305return _connectionContext.Transport.Output.FlushAsync(cancellationToken); 343return _connectionContext.Transport.Output.WriteAsync(buffer, cancellationToken); 460await _connectionContext.Transport.Output.WriteAsync(_cachedPingMessage); 484_connectionContext.Transport.Output.Write(HandshakeProtocol.GetSuccessfulHandshake(Protocol)); 488HandshakeProtocol.WriteResponseMessage(message, _connectionContext.Transport.Output); 491await _connectionContext.Transport.Output.FlushAsync(); 505if (_useStatefulReconnect && _connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 520_connectionContext.Transport.Output.CancelPendingFlush(); 630if (_connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 640_messageBuffer = new MessageBuffer(_connectionContext, Protocol, _statefulReconnectBufferSize, _logger, _timeProvider);