1 write to Connection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2333Connection = connection;
15 references to Connection
Microsoft.AspNetCore.SignalR.Client.Core (15)
HubConnection.cs (15)
198public string? ConnectionId => _state.CurrentConnectionStateUnsynchronized?.Connection.ConnectionId; 543await CloseAsync(startingConnectionState.Connection).ConfigureAwait(false); 586var connection = connectionState.Connection; 773if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1393_protocol.WriteMessage(hubMessage, connectionState.Connection.Transport.Output); 1395await connectionState.Connection.Transport.Output.FlushAsync(cancellationToken).ConfigureAwait(false); 1523if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1671HandshakeProtocol.WriteRequestMessage(handshakeRequest, startingConnectionState.Connection.Transport.Output); 1673var sendHandshakeResult = await startingConnectionState.Connection.Transport.Output.FlushAsync(CancellationToken.None).ConfigureAwait(false); 1683var input = startingConnectionState.Connection.Transport.Input; 1808var input = connectionState.Connection.Transport.Input; 1918await CloseAsync(connectionState.Connection).ConfigureAwait(false); 2343if (Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 2441Connection.Transport.Input.CancelPendingRead(); 2580Connection.Transport.Input.CancelPendingRead();