1 write to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2451
_hubConnection
= hubConnection;
15 references to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (15)
HubConnection.cs (15)
2452
_hubConnection
._logScope.ConnectionId = connection.ConnectionId;
2454
_logger =
_hubConnection
._logger;
2461
_hubConnection
._serviceProvider.GetService<IOptions<HubConnectionOptions>>()?.Value.StatefulReconnectBufferSize
2550
_hubConnection
._state.AssertInConnectionLock();
2564
_hubConnection
._logScope.ConnectionId = null;
2594
var connectionToken =
_hubConnection
._state.StopCts.Token;
2638
Volatile.Write(ref _nextActivationSendPing, (DateTime.UtcNow +
_hubConnection
.KeepAliveInterval).Ticks);
2643
Volatile.Write(ref _nextActivationServerTimeout, (DateTime.UtcNow +
_hubConnection
.ServerTimeout).Ticks);
2661
if (!
_hubConnection
._state.TryAcquireConnectionLock())
2671
if (
_hubConnection
._state.CurrentConnectionStateUnsynchronized != null)
2673
SafeAssert(ReferenceEquals(
_hubConnection
._state.CurrentConnectionStateUnsynchronized, this),
2676
await
_hubConnection
.SendHubMessage(this, PingMessage.Instance).ConfigureAwait(false);
2685
_hubConnection
._state.ReleaseConnectionLock();
2694
$"Server timeout ({
_hubConnection
.ServerTimeout.TotalMilliseconds:0.00}ms) elapsed without receiving a message from the server.");
2722
if (!
_hubConnection
._handlers.TryGetValue(methodName, out var invocationHandlerList))