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