1 write to _hubClients
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubCallerClients.cs (1)
22
_hubClients
= hubClients;
14 references to _hubClients
Microsoft.AspNetCore.SignalR.Core (14)
Internal\HubCallerClients.cs (14)
33
return new NoInvokeSingleClientProxy(
_hubClients
.Client(_connectionId));
35
return new SingleClientProxy(
_hubClients
.Client(_connectionId), this);
39
public IClientProxy Others =>
_hubClients
.AllExcept(new[] { _connectionId });
41
public IClientProxy All =>
_hubClients
.All;
45
return
_hubClients
.AllExcept(excludedConnectionIds);
53
return new NoInvokeSingleClientProxy(
_hubClients
.Client(connectionId));
55
return new SingleClientProxy(
_hubClients
.Client(connectionId), this);
60
return
_hubClients
.Group(groupName);
65
return
_hubClients
.Groups(groupNames);
70
return
_hubClients
.GroupExcept(groupName, new[] { _connectionId });
75
return
_hubClients
.GroupExcept(groupName, excludedConnectionIds);
80
return
_hubClients
.User(userId);
85
return
_hubClients
.Clients(connectionIds);
90
return
_hubClients
.Users(userIds);