1 write to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2336
_hubConnection
= hubConnection;
15 references to _hubConnection
Microsoft.AspNetCore.SignalR.Client.Core (15)
HubConnection.cs (15)
2337
_hubConnection
._logScope.ConnectionId = connection.ConnectionId;
2339
_logger =
_hubConnection
._logger;
2346
_hubConnection
._serviceProvider.GetService<IOptions<HubConnectionOptions>>()?.Value.StatefulReconnectBufferSize
2435
_hubConnection
._state.AssertInConnectionLock();
2449
_hubConnection
._logScope.ConnectionId = null;
2479
var connectionToken =
_hubConnection
._state.StopCts.Token;
2523
Volatile.Write(ref _nextActivationSendPing, (DateTime.UtcNow +
_hubConnection
.KeepAliveInterval).Ticks);
2528
Volatile.Write(ref _nextActivationServerTimeout, (DateTime.UtcNow +
_hubConnection
.ServerTimeout).Ticks);
2546
if (!
_hubConnection
._state.TryAcquireConnectionLock())
2556
if (
_hubConnection
._state.CurrentConnectionStateUnsynchronized != null)
2558
SafeAssert(ReferenceEquals(
_hubConnection
._state.CurrentConnectionStateUnsynchronized, this),
2561
await
_hubConnection
.SendHubMessage(this, PingMessage.Instance).ConfigureAwait(false);
2570
_hubConnection
._state.ReleaseConnectionLock();
2579
$"Server timeout ({
_hubConnection
.ServerTimeout.TotalMilliseconds:0.00}ms) elapsed without receiving a message from the server.");
2607
if (!
_hubConnection
._handlers.TryGetValue(methodName, out var invocationHandlerList))