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