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