1 write to _clients
Microsoft.AspNetCore.SignalR.Core (1)
DynamicHubClients.cs (1)
23
_clients
= clients;
12 references to _clients
Microsoft.AspNetCore.SignalR.Core (12)
DynamicHubClients.cs (12)
30
public dynamic All => new DynamicClientProxy(
_clients
.All);
37
public dynamic AllExcept(IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(
_clients
.AllExcept(excludedConnectionIds));
42
public dynamic Caller => new DynamicClientProxy(
_clients
.Caller);
49
public dynamic Client(string connectionId) => new DynamicClientProxy(
_clients
.Client(connectionId));
56
public dynamic Clients(IReadOnlyList<string> connectionIds) => new DynamicClientProxy(
_clients
.Clients(connectionIds));
63
public dynamic Group(string groupName) => new DynamicClientProxy(
_clients
.Group(groupName));
70
public dynamic Groups(IReadOnlyList<string> groupNames) => new DynamicClientProxy(
_clients
.Groups(groupNames));
78
public dynamic GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(
_clients
.GroupExcept(groupName, excludedConnectionIds));
84
public dynamic OthersInGroup(string groupName) => new DynamicClientProxy(
_clients
.OthersInGroup(groupName));
89
public dynamic Others => new DynamicClientProxy(
_clients
.Others);
96
public dynamic User(string userId) => new DynamicClientProxy(
_clients
.User(userId));
103
public dynamic Users(IReadOnlyList<string> userIds) => new DynamicClientProxy(
_clients
.Users(userIds));