1 write to Connection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2448Connection = connection;
15 references to Connection
Microsoft.AspNetCore.SignalR.Client.Core (15)
HubConnection.cs (15)
220public string? ConnectionId => _state.CurrentConnectionStateUnsynchronized?.Connection.ConnectionId; 565await CloseAsync(startingConnectionState.Connection).ConfigureAwait(false); 616var connection = connectionState.Connection; 907if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1527_protocol.WriteMessage(hubMessage, connectionState.Connection.Transport.Output); 1529await connectionState.Connection.Transport.Output.FlushAsync(cancellationToken).ConfigureAwait(false); 1657if (connectionState.Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 1805HandshakeProtocol.WriteRequestMessage(handshakeRequest, startingConnectionState.Connection.Transport.Output); 1807var sendHandshakeResult = await startingConnectionState.Connection.Transport.Output.FlushAsync(CancellationToken.None).ConfigureAwait(false); 1817var input = startingConnectionState.Connection.Transport.Input; 1942var input = connectionState.Connection.Transport.Input; 2054await CloseAsync(connectionState.Connection).ConfigureAwait(false); 2458if (Connection.Features.Get<IStatefulReconnectFeature>() is IStatefulReconnectFeature feature) 2556Connection.Transport.Input.CancelPendingRead(); 2695Connection.Transport.Input.CancelPendingRead();