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; 280Protocol.WriteMessage(message, _connectionContext.Transport.Output); 282return _connectionContext.Transport.Output.FlushAsync(cancellationToken); 310return _connectionContext.Transport.Output.WriteAsync(buffer, cancellationToken); 418await _connectionContext.Transport.Output.WriteAsync(_cachedPingMessage); 442_connectionContext.Transport.Output.Write(HandshakeProtocol.GetSuccessfulHandshake(Protocol)); 446HandshakeProtocol.WriteResponseMessage(message, _connectionContext.Transport.Output); 449await _connectionContext.Transport.Output.FlushAsync(); 463if (_useStatefulReconnect && _connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 478_connectionContext.Transport.Output.CancelPendingFlush(); 588if (_connectionContext.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 598_messageBuffer = new MessageBuffer(_connectionContext, Protocol, _statefulReconnectBufferSize, _logger, _timeProvider);