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