1 implementation of Caller
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubCallerClients.cs (1)
27
public ISingleClientProxy
Caller
18 references to Caller
Microsoft.AspNetCore.Components.Server (16)
ComponentHub.cs (16)
104
await NotifyClientError(Clients.
Caller
, $"The circuit host '{circuitHost.CircuitId}' has already been initialized.");
120
await NotifyClientError(Clients.
Caller
, "The uris provided are invalid.");
128
await NotifyClientError(Clients.
Caller
, "The list of component records is not valid.");
135
var circuitClient = new CircuitClientProxy(Clients.
Caller
, Context.ConnectionId);
172
await NotifyClientError(Clients.
Caller
, "The circuit failed to initialize. See the server logs for more information.");
200
await NotifyClientError(Clients.
Caller
, "The persisted circuit state is invalid.");
216
await NotifyClientError(Clients.
Caller
, "The list of component operations is not valid.");
243
Clients.
Caller
,
311
await NotifyClientError(Clients.
Caller
, $"The circuit host '{circuitHost.CircuitId}' has already been initialized.");
327
await NotifyClientError(Clients.
Caller
, "The uris provided are invalid.");
352
await NotifyClientError(Clients.
Caller
, "The root components or application state provided are invalid.");
361
Clients.
Caller
,
390
var circuitClient = new CircuitClientProxy(Clients.
Caller
, Context.ConnectionId);
428
await NotifyClientError(Clients.
Caller
, "The circuit failed to initialize. See the server logs for more information.");
603
await NotifyClientError(Clients.
Caller
, "Circuit has been shut down due to error.");
612
await NotifyClientError(Clients.
Caller
, "Circuit not initialized.");
Microsoft.AspNetCore.SignalR.Core (2)
DynamicHubClients.cs (1)
42
public dynamic Caller => new DynamicClientProxy(_clients.
Caller
);
Internal\TypedHubClients.cs (1)
22
public T Caller => TypedClientBuilder<T>.Build(_hubClients.
Caller
);