1 write to Clients
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
660
hub.
Clients
= new HubCallerClients(_hubContext.Clients, connection.ConnectionId, connection.ActiveInvocationLimit) { InvokeAllowed = invokeAllowed };
22 references to Clients
Microsoft.AspNetCore.Components.Server (16)
ComponentHub.cs (16)
95
await NotifyClientError(
Clients
.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized.");
111
await NotifyClientError(
Clients
.Caller, "The uris provided are invalid.");
119
await NotifyClientError(
Clients
.Caller, "The list of component records is not valid.");
126
var circuitClient = new CircuitClientProxy(
Clients
.Caller, Context.ConnectionId);
163
await NotifyClientError(
Clients
.Caller, "The circuit failed to initialize.");
191
await NotifyClientError(
Clients
.Caller, "The persisted circuit state is invalid.");
207
await NotifyClientError(
Clients
.Caller, "The list of component operations is not valid.");
234
Clients
.Caller,
302
await NotifyClientError(
Clients
.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized.");
318
await NotifyClientError(
Clients
.Caller, "The uris provided are invalid.");
343
await NotifyClientError(
Clients
.Caller, "The root components or application state provided are invalid.");
352
Clients
.Caller,
381
var circuitClient = new CircuitClientProxy(
Clients
.Caller, Context.ConnectionId);
419
await NotifyClientError(
Clients
.Caller, "The circuit failed to initialize.");
594
await NotifyClientError(
Clients
.Caller, "Circuit has been shut down due to error.");
603
await NotifyClientError(
Clients
.Caller, "Circuit not initialized.");
Microsoft.AspNetCore.SignalR.Core (5)
DynamicHub.cs (1)
25
_clients = new DynamicHubClients(base.
Clients
);
Hub`T.cs (1)
27
_clients = new TypedHubClients<T>(base.
Clients
);
Internal\DefaultHubDispatcher.cs (3)
371
Debug.Assert(hub.
Clients
is HubCallerClients);
375
((HubCallerClients)hub.
Clients
).TrySetSemaphoreReleased();
481
if (hub?.
Clients
is HubCallerClients hubCallerClients)
SignalRWeb (1)
Hubs\ChatHub.cs (1)
7
await
Clients
.All.SendAsync("ReceiveMessage", user, message);