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)
51public T User(string userId)
Internal\TypedHubClients.cs (1)
53public T User(string userId)
4 references to User
Microsoft.AspNetCore.SignalR.Core (4)
DynamicHubClients.cs (1)
96public dynamic User(string userId) => new DynamicClientProxy(_clients.User(userId));
Internal\HubCallerClients.cs (1)
80return _hubClients.User(userId);
Internal\TypedHubClients.cs (1)
55return 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>