4 implementations of User
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
78public IClientProxy User(string userId)
Internal\HubClients.cs (1)
49public IClientProxy User(string userId)
Internal\HubClients`T.cs (1)
48public T User(string userId)
Internal\TypedHubClients.cs (1)
50public T User(string userId)
7 references to User
Microsoft.AspNetCore.SignalR.Core (4)
DynamicHubClients.cs (1)
94public dynamic User(string userId) => new DynamicClientProxy(_clients.User(userId));
Internal\HubCallerClients.cs (1)
80return _hubClients.User(userId);
Internal\TypedHubClients.cs (1)
52return TypedClientBuilder<T>.Build(_hubClients.User(userId));
IUserIdProvider.cs (1)
9/// <remarks><see cref="IUserIdProvider"/> is used by <see cref="IHubClients{T}.User(string)"/> to invoke connections associated with a user.</remarks>
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
EchoHub.cs (1)
23return Clients.User(userName).SendAsync("Echo", message);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
25return Clients.User(userId).SendAsync("Send", message); 502return Clients.User(userId).Send(message);