1 implementation of Caller
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubCallerClients.cs (1)
27public ISingleClientProxy Caller
18 references to Caller
Microsoft.AspNetCore.Components.Server (16)
ComponentHub.cs (16)
95await NotifyClientError(Clients.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized."); 111await NotifyClientError(Clients.Caller, "The uris provided are invalid."); 119await NotifyClientError(Clients.Caller, "The list of component records is not valid."); 126var circuitClient = new CircuitClientProxy(Clients.Caller, Context.ConnectionId); 163await NotifyClientError(Clients.Caller, "The circuit failed to initialize."); 191await NotifyClientError(Clients.Caller, "The persisted circuit state is invalid."); 207await NotifyClientError(Clients.Caller, "The list of component operations is not valid."); 234Clients.Caller, 302await NotifyClientError(Clients.Caller, $"The circuit host '{circuitHost.CircuitId}' has already been initialized."); 318await NotifyClientError(Clients.Caller, "The uris provided are invalid."); 343await NotifyClientError(Clients.Caller, "The root components or application state provided are invalid."); 352Clients.Caller, 381var circuitClient = new CircuitClientProxy(Clients.Caller, Context.ConnectionId); 419await NotifyClientError(Clients.Caller, "The circuit failed to initialize."); 594await NotifyClientError(Clients.Caller, "Circuit has been shut down due to error."); 603await NotifyClientError(Clients.Caller, "Circuit not initialized.");
Microsoft.AspNetCore.SignalR.Core (2)
DynamicHubClients.cs (1)
42public dynamic Caller => new DynamicClientProxy(_clients.Caller);
Internal\TypedHubClients.cs (1)
22public T Caller => TypedClientBuilder<T>.Build(_hubClients.Caller);