1 write to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2152
_hubConnection
= hubConnection;
14 references to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (14)
HubConnection.cs (14)
2153
_hubConnection
._logScope.ConnectionId = connection.ConnectionId;
2155
_logger =
_hubConnection
._logger;
2162
_hubConnection
._serviceProvider.GetService<IOptions<HubConnectionOptions>>()?.Value.StatefulReconnectBufferSize
2251
_hubConnection
._state.AssertInConnectionLock();
2265
_hubConnection
._logScope.ConnectionId = null;
2325
Volatile.Write(ref _nextActivationSendPing, (DateTime.UtcNow +
_hubConnection
.KeepAliveInterval).Ticks);
2330
Volatile.Write(ref _nextActivationServerTimeout, (DateTime.UtcNow +
_hubConnection
.ServerTimeout).Ticks);
2348
if (!
_hubConnection
._state.TryAcquireConnectionLock())
2358
if (
_hubConnection
._state.CurrentConnectionStateUnsynchronized != null)
2360
SafeAssert(ReferenceEquals(
_hubConnection
._state.CurrentConnectionStateUnsynchronized, this),
2363
await
_hubConnection
.SendHubMessage(this, PingMessage.Instance).ConfigureAwait(false);
2372
_hubConnection
._state.ReleaseConnectionLock();
2381
$"Server timeout ({
_hubConnection
.ServerTimeout.TotalMilliseconds:0.00}ms) elapsed without receiving a message from the server.");
2409
if (!
_hubConnection
._handlers.TryGetValue(methodName, out var invocationHandlerList))