4 implementations of Clients
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
83
public IClientProxy
Clients
(IReadOnlyList<string> connectionIds)
Internal\HubClients.cs (1)
39
public IClientProxy
Clients
(IReadOnlyList<string> connectionIds)
Internal\HubClients`T.cs (1)
31
public T
Clients
(IReadOnlyList<string> connectionIds)
Internal\TypedHubClients.cs (1)
38
public T
Clients
(IReadOnlyList<string> connectionIds)
14 references to Clients
Microsoft.AspNetCore.SignalR.Core (12)
DynamicHubClients.cs (1)
56
public dynamic Clients(IReadOnlyList<string> connectionIds) => new DynamicClientProxy(_clients.
Clients
(connectionIds));
HubClientsExtensions.cs (9)
148
return hubClients.
Clients
(new[] { connection1 });
160
return hubClients.
Clients
(new[] { connection1, connection2 });
173
return hubClients.
Clients
(new[] { connection1, connection2, connection3 });
187
return hubClients.
Clients
(new[] { connection1, connection2, connection3, connection4 });
202
return hubClients.
Clients
(new[] { connection1, connection2, connection3, connection4, connection5 });
218
return hubClients.
Clients
(new[] { connection1, connection2, connection3, connection4, connection5, connection6 });
235
return hubClients.
Clients
(new[] { connection1, connection2, connection3, connection4, connection5, connection6, connection7 });
253
return hubClients.
Clients
(new[] { connection1, connection2, connection3, connection4, connection5, connection6, connection7, connection8 });
264
return hubClients.
Clients
(connectionIds.ToList());
Internal\HubCallerClients.cs (1)
85
return _hubClients.
Clients
(connectionIds);
Internal\TypedHubClients.cs (1)
40
return TypedClientBuilder<T>.Build(_hubClients.
Clients
(connectionIds));
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
40
return Clients.
Clients
(connectionIds).SendAsync("Send", message);
517
return Clients.
Clients
(connectionIds).Send(message);