1 implementation of Client
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubCallerClients.cs (1)
49public ISingleClientProxy Client(string connectionId)
10 references to Client
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (2)
Hubs.cs (2)
33await Clients.Client(Context.ConnectionId).SendAsync("Echo", message); 38await Clients.Client(Context.ConnectionId).SendAsync("NoClientHandler");
Microsoft.AspNetCore.SignalR.Core (2)
DynamicHubClients.cs (1)
49public dynamic Client(string connectionId) => new DynamicClientProxy(_clients.Client(connectionId));
Internal\TypedHubClients.cs (1)
18public T Client(string connectionId) => TypedClientBuilder<T>.Build(_hubClients.Client(connectionId));
Microsoft.AspNetCore.SignalR.Tests (3)
HubConnectionHandlerTestUtils\Hubs.cs (3)
35return Clients.Client(connectionId).SendAsync("Send", message); 125return Clients.Client(Context.ConnectionId).SendAsync("Send", new { }); 1464await Clients.Client(id).SendAsync("Test", 1);
SignalR.Client.FunctionalTestApp (2)
TestHub.cs (2)
52return Clients.Client(Context.ConnectionId).SendAsync("Message", message); 57return Clients.Client(Context.ConnectionId).SendAsync("CustomObject", customObject);
SignalRSamples (1)
Hubs\Chat.cs (1)
34return Clients.Client(connectionId).SendAsync("Send", $"Private message from {name}: {message}");