1 write to UserIdentifier
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
615UserIdentifier = userIdProvider.GetUserId(this);
3 references to UserIdentifier
Microsoft.AspNetCore.SignalR.Core (3)
DefaultHubLifetimeManager.cs (2)
288return SendToAllConnections(methodName, args, (connection, state) => string.Equals(connection.UserIdentifier, (string)state!, StringComparison.Ordinal), userId, cancellationToken); 330return SendToAllConnections(methodName, args, (connection, state) => ((IReadOnlyList<string>)state!).Contains(connection.UserIdentifier), userIds, cancellationToken);
Internal\DefaultHubCallerContext.cs (1)
25public override string? UserIdentifier => _connection.UserIdentifier;