4 implementations of Client
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
48
IClientProxy IHubClients<IClientProxy>.
Client
(string connectionId) => Client(connectionId);
Internal\HubClients.cs (1)
23
IClientProxy IHubClients<IClientProxy>.
Client
(string connectionId) => Client(connectionId);
Internal\HubClients`T.cs (1)
26
public T
Client
(string connectionId)
Internal\TypedHubClients.cs (1)
18
public T
Client
(string connectionId) => TypedClientBuilder<T>.Build(_hubClients.Client(connectionId));
9 references to Client
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (2)
Hubs.cs (2)
191
await Clients.
Client
(Context.ConnectionId).Echo(message);
196
await Clients.
Client
(Context.ConnectionId).NoClientHandler();
Microsoft.AspNetCore.SignalR.Core (2)
IHubCallerClients.cs (1)
18
new ISingleClientProxy Client(string connectionId) => new NonInvokingSingleClientProxy(((IHubCallerClients<IClientProxy>)this).
Client
(connectionId), "IHubCallerClients.Client(string connectionId)");
IHubClients.cs (1)
18
new ISingleClientProxy Client(string connectionId) => new NonInvokingSingleClientProxy(((IHubClients<IClientProxy>)this).
Client
(connectionId), "IHubClients.Client(string connectionId)");
Microsoft.AspNetCore.SignalR.Tests (5)
HubConnectionHandlerTests.ClientResult.cs (2)
180
var resultTask = context.Clients.
Client
(connectionId).GetClientResult(1);
373
var resultTask = context.Clients.
Client
(connectionId).GetClientResultWithCancellation(1, cts.Token);
HubConnectionHandlerTestUtils\Hubs.cs (3)
512
return Clients.
Client
(connectionId).Send(message);
523
await Clients.
Client
(connectionId).Send(message);
573
await Clients.
Client
(Context.ConnectionId).GetClientResult(clientValue),