1 implementation of IHubClients
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubClients.cs (1)
6
internal sealed class HubClients<THub> :
IHubClients
where THub : Hub
9 references to IHubClients
Microsoft.AspNetCore.SignalR.Core (8)
IHubContext.cs (4)
12
/// Gets a <see cref="
IHubClients
"/> that can be used to invoke methods on clients connected to the hub.
14
IHubClients
Clients { get; }
28
/// Gets a <see cref="
IHubClients
"/> that can be used to invoke methods on clients connected to the hub.
30
IHubClients
Clients { get; }
Internal\HubCallerClients.cs (2)
9
private readonly
IHubClients
_hubClients;
19
public HubCallerClients(
IHubClients
hubClients, string connectionId, ChannelBasedSemaphore parallelInvokes)
Internal\HubContext.cs (2)
9
private readonly
IHubClients
_clients;
18
public
IHubClients
Clients => _clients;
Microsoft.AspNetCore.SignalR.Tests (1)
AddSignalRTests.cs (1)
245
public
IHubClients
Clients => throw new System.NotImplementedException();