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