4 implementations of User
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
78
public IClientProxy
User
(string userId)
Internal\HubClients.cs (1)
49
public IClientProxy
User
(string userId)
Internal\HubClients`T.cs (1)
51
public T
User
(string userId)
Internal\TypedHubClients.cs (1)
53
public T
User
(string userId)
7 references to User
Microsoft.AspNetCore.SignalR.Core (4)
DynamicHubClients.cs (1)
96
public dynamic User(string userId) => new DynamicClientProxy(_clients.
User
(userId));
Internal\HubCallerClients.cs (1)
80
return _hubClients.
User
(userId);
Internal\TypedHubClients.cs (1)
55
return 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)
23
return Clients.
User
(userName).SendAsync("Echo", message);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
25
return Clients.
User
(userId).SendAsync("Send", message);
502
return Clients.
User
(userId).Send(message);