2 writes to UserIdentifier
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
615
UserIdentifier
= userIdProvider.GetUserId(this);
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\HubConnectionContextUtils.cs (1)
27
UserIdentifier
= userIdentifier,
7 references to UserIdentifier
Microsoft.AspNetCore.SignalR.Core (3)
DefaultHubLifetimeManager.cs (2)
288
return SendToAllConnections(methodName, args, (connection, state) => string.Equals(connection.
UserIdentifier
, (string)state!, StringComparison.Ordinal), userId, cancellationToken);
330
return SendToAllConnections(methodName, args, (connection, state) => ((IReadOnlyList<string>)state!).Contains(connection.
UserIdentifier
), userIds, cancellationToken);
Internal\DefaultHubCallerContext.cs (1)
25
public override string? UserIdentifier => _connection.
UserIdentifier
;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (4)
RedisHubLifetimeManager.cs (4)
104
if (!string.IsNullOrEmpty(connection.
UserIdentifier
))
144
if (!string.IsNullOrEmpty(connection.
UserIdentifier
))
359
var userChannel = _channels.User(connection.
UserIdentifier
!);
585
var userChannel = _channels.User(connection.
UserIdentifier
!);