1 write to ConnectionAborted
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
81ConnectionAborted = _connectionAbortedTokenSource.Token;
8 references to ConnectionAborted
Microsoft.AspNetCore.SignalR.Core (8)
DefaultHubLifetimeManager.cs (3)
58if (connection.ConnectionAborted.IsCancellationRequested) 351connection.ConnectionAborted, out var linkedToken); 375if (connection.ConnectionAborted.IsCancellationRequested)
HubConnectionContext.cs (2)
279var connectionToken = hubConnectionContext.ConnectionAborted; 328using var _ = CancellationTokenUtils.CreateLinkedToken(hubConnectionContext.ConnectionAborted, cancellationToken, out var linkedToken);
Internal\DefaultHubCallerContext.cs (1)
37public override CancellationToken ConnectionAborted => _connection.ConnectionAborted;
Internal\DefaultHubDispatcher.cs (2)
516streamCts ??= CancellationTokenSource.CreateLinkedTokenSource(connection.ConnectionAborted); 736cts = CancellationTokenSource.CreateLinkedTokenSource(connection.ConnectionAborted);