4 implementations of AllExcept
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (1)
43
public IClientProxy
AllExcept
(IReadOnlyList<string> excludedConnectionIds)
Internal\HubClients.cs (1)
18
public IClientProxy
AllExcept
(IReadOnlyList<string> excludedConnectionIds)
Internal\HubClients`T.cs (1)
21
public T
AllExcept
(IReadOnlyList<string> excludedConnectionIds)
Internal\TypedHubClients.cs (1)
26
public T
AllExcept
(IReadOnlyList<string> excludedConnectionIds) => TypedClientBuilder<T>.Build(_hubClients.AllExcept(excludedConnectionIds));
15 references to AllExcept
Microsoft.AspNetCore.SignalR.Core (13)
DynamicHubClients.cs (1)
37
public dynamic AllExcept(IReadOnlyList<string> excludedConnectionIds) => new DynamicClientProxy(_clients.
AllExcept
(excludedConnectionIds));
HubClientsExtensions.cs (9)
21
return hubClients.
AllExcept
(new[] { excludedConnectionId1 });
33
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2 });
46
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3 });
60
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4 });
75
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5 });
91
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6 });
108
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6, excludedConnectionId7 });
126
return hubClients.
AllExcept
(new[] { excludedConnectionId1, excludedConnectionId2, excludedConnectionId3, excludedConnectionId4, excludedConnectionId5, excludedConnectionId6, excludedConnectionId7, excludedConnectionId8 });
137
return hubClients.
AllExcept
(excludedConnectionIds.ToList());
Internal\HubCallerClients.cs (2)
39
public IClientProxy Others => _hubClients.
AllExcept
(new[] { _connectionId });
45
return _hubClients.
AllExcept
(excludedConnectionIds);
Internal\TypedHubClients.cs (1)
26
public T AllExcept(IReadOnlyList<string> excludedConnectionIds) => TypedClientBuilder<T>.Build(_hubClients.
AllExcept
(excludedConnectionIds));
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
164
return Clients.
AllExcept
(excludedConnectionIds).SendAsync("Send", message);
558
return Clients.
AllExcept
(excludedConnectionIds).Send(message);