1 write to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2162
_hubConnection
= hubConnection;
14 references to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (14)
HubConnection.cs (14)
2163
_hubConnection
._logScope.ConnectionId = connection.ConnectionId;
2165
_logger =
_hubConnection
._logger;
2172
_hubConnection
._serviceProvider.GetService<IOptions<HubConnectionOptions>>()?.Value.StatefulReconnectBufferSize
2261
_hubConnection
._state.AssertInConnectionLock();
2275
_hubConnection
._logScope.ConnectionId = null;
2335
Volatile.Write(ref _nextActivationSendPing, (DateTime.UtcNow +
_hubConnection
.KeepAliveInterval).Ticks);
2340
Volatile.Write(ref _nextActivationServerTimeout, (DateTime.UtcNow +
_hubConnection
.ServerTimeout).Ticks);
2358
if (!
_hubConnection
._state.TryAcquireConnectionLock())
2368
if (
_hubConnection
._state.CurrentConnectionStateUnsynchronized != null)
2370
SafeAssert(ReferenceEquals(
_hubConnection
._state.CurrentConnectionStateUnsynchronized, this),
2373
await
_hubConnection
.SendHubMessage(this, PingMessage.Instance).ConfigureAwait(false);
2382
_hubConnection
._state.ReleaseConnectionLock();
2391
$"Server timeout ({
_hubConnection
.ServerTimeout.TotalMilliseconds:0.00}ms) elapsed without receiving a message from the server.");
2419
if (!
_hubConnection
._handlers.TryGetValue(methodName, out var invocationHandlerList))