4 implementations of GroupExcept
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
73public IClientProxy GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds)
Internal\HubClients.cs (1)
34public IClientProxy GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds)
Internal\HubClients`T.cs (1)
38public T GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds)
Internal\TypedHubClients.cs (1)
30public T GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds)
15 references to GroupExcept
Microsoft.AspNetCore.SignalR.Core (13)
DynamicHubClients.cs (1)
76public dynamic GroupExcept(string groupName, IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(_clients.GroupExcept(groupName, excludedConnectionIds));
HubClientsExtensions.cs (9)
403return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1 }); 416return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2 }); 430return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3 }); 445return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4 }); 461return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5 }); 478return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6 }); 496return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6, excludedConnectionId7 }); 515return hubClients.GroupExcept(groupName, new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6, excludedConnectionId7, excludedConnectionId8 }); 527return hubClients.GroupExcept(groupName, excludedConnectionIds.ToList());
Internal\HubCallerClients.cs (2)
70return _hubClients.GroupExcept(groupName, new[] { _connectionId }); 75return _hubClients.GroupExcept(groupName, excludedConnectionIds);
Internal\TypedHubClients.cs (1)
32return TypedClientBuilder<T>.Build(_hubClients.GroupExcept(groupName, excludedConnectionIds));
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
55return Clients.GroupExcept(groupName, excludedConnectionIds).SendAsync("Send", message); 538return Clients.GroupExcept(groupName, excludedConnectionIds).Send(message);