1 implementation of Client
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubClients.cs (1)
24public ISingleClientProxy Client(string connectionId)
8 references to Client
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (4)
33return new NoInvokeSingleClientProxy(_hubClients.Client(_connectionId)); 35return new SingleClientProxy(_hubClients.Client(_connectionId), this); 53return new NoInvokeSingleClientProxy(_hubClients.Client(connectionId)); 55return new SingleClientProxy(_hubClients.Client(connectionId), this);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTests.ClientResult.cs (2)
146var resultTask = context.Clients.Client(client.Connection.ConnectionId).InvokeAsync<int>("GetClientResult", 1, cancellationToken: default); 418var resultTask = context.Clients.Client(connectionId).InvokeAsync<int>(nameof(MethodHub.GetClientResult), 1, cts.Token);
SignalR.Client.FunctionalTestApp (2)
Startup.cs (1)
248var result = await hubContext.Clients.Client(id).InvokeAsync<int>("Result", cancellationToken: default);
TestHub.cs (1)
77await ((IHubContext<TestHub>)state).Clients.Client(connectionId).SendAsync("StreamCanceled");