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