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