1 implementation of IHubCallerClients
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubCallerClients.cs (1)
6internal sealed class HubCallerClients : IHubCallerClients
8 references to IHubCallerClients
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\ComponentHubTest.cs (1)
129var mockCaller = new Mock<IHubCallerClients>();
Microsoft.AspNetCore.SignalR.Core (7)
DynamicHubClients.cs (3)
15private readonly IHubCallerClients _clients; 20/// <param name="clients">A wrapped <see cref="IHubCallerClients"/> that is used to invoke methods.</param> 21public DynamicHubClients(IHubCallerClients clients)
Hub.cs (2)
16private IHubCallerClients _clients = default!; 23public IHubCallerClients Clients
Internal\TypedHubClients.cs (2)
11private readonly IHubCallerClients _hubClients; 13public TypedHubClients(IHubCallerClients dynamicContext)