1 write to _clients
Microsoft.AspNetCore.SignalR.Core (1)
DynamicHubClients.cs (1)
21_clients = clients;
12 references to _clients
Microsoft.AspNetCore.SignalR.Core (12)
DynamicHubClients.cs (12)
28public dynamic All => new DynamicClientProxy(_clients.All); 35public dynamic AllExcept(IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(_clients.AllExcept(excludedConnectionIds)); 40public dynamic Caller => new DynamicClientProxy(_clients.Caller); 47public dynamic Client(string connectionId) => new DynamicClientProxy(_clients.Client(connectionId)); 54public dynamic Clients(IReadOnlyList<string> connectionIds) => new DynamicClientProxy(_clients.Clients(connectionIds)); 61public dynamic Group(string groupName) => new DynamicClientProxy(_clients.Group(groupName)); 68public dynamic Groups(IReadOnlyList<string> groupNames) => new DynamicClientProxy(_clients.Groups(groupNames)); 76public dynamic GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(_clients.GroupExcept(groupName, excludedConnectionIds)); 82public dynamic OthersInGroup(string groupName) => new DynamicClientProxy(_clients.OthersInGroup(groupName)); 87public dynamic Others => new DynamicClientProxy(_clients.Others); 94public dynamic User(string userId) => new DynamicClientProxy(_clients.User(userId)); 101public dynamic Users(IReadOnlyList<string> userIds) => new DynamicClientProxy(_clients.Users(userIds));