1 write to Clients
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
746hub.Clients = new HubCallerClients(_hubContext.Clients, connection.ConnectionId, connection.ActiveInvocationLimit)
22 references to Clients
Microsoft.AspNetCore.Components.Server (16)
ComponentHub.cs (16)
114await NotifyClientError(Clients.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized."); 130await NotifyClientError(Clients.Caller, "The uris provided are invalid."); 138await NotifyClientError(Clients.Caller, "The list of component records is not valid."); 145var circuitClient = new CircuitClientProxy(Clients.Caller, Context.ConnectionId); 182await NotifyClientError(Clients.Caller, "The circuit failed to initialize. See the server logs for more information."); 210await NotifyClientError(Clients.Caller, "The persisted circuit state is invalid."); 226await NotifyClientError(Clients.Caller, "The list of component operations is not valid."); 253Clients.Caller, 321await NotifyClientError(Clients.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized."); 337await NotifyClientError(Clients.Caller, "The uris provided are invalid."); 362await NotifyClientError(Clients.Caller, "The root components or application state provided are invalid."); 371Clients.Caller, 400var circuitClient = new CircuitClientProxy(Clients.Caller, Context.ConnectionId); 438await NotifyClientError(Clients.Caller, "The circuit failed to initialize. See the server logs for more information."); 613await NotifyClientError(Clients.Caller, "Circuit has been shut down due to error."); 622await 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)
417Debug.Assert(hub.Clients is HubCallerClients); 421((HubCallerClients)hub.Clients).TrySetSemaphoreReleased(); 556if (hub?.Clients is HubCallerClients hubCallerClients)
SignalRWeb (1)
Hubs\ChatHub.cs (1)
7await Clients.All.SendAsync("ReceiveMessage", user, message);