4 overrides of SendAllExceptAsync
Microsoft.AspNetCore.SignalR.Core (1)
DefaultHubLifetimeManager.cs (1)
316public override Task SendAllExceptAsync(string methodName, object?[] args, IReadOnlyList<string> excludedConnectionIds, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
RedisHubLifetimeManager.cs (1)
160public override Task SendAllExceptAsync(string methodName, object?[] args, IReadOnlyList<string> excludedConnectionIds, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.Tests (2)
AddSignalRTests.cs (1)
286public override Task SendAllExceptAsync(string methodName, object[] args, IReadOnlyList<string> excludedConnectionIds, CancellationToken cancellationToken = default)
ClientProxyTests.cs (1)
247public override Task SendAllExceptAsync(string methodName, object[] args, IReadOnlyList<string> excludedConnectionIds, CancellationToken cancellationToken = default)
3 references to SendAllExceptAsync
Microsoft.AspNetCore.SignalR.Core (1)
Internal\Proxies.cs (1)
127return _lifetimeManager.SendAllExceptAsync(method, args, _excludedConnectionIds, cancellationToken);
Microsoft.AspNetCore.SignalR.Tests (2)
ClientProxyTests.cs (1)
153o.Setup(m => m.SendAllExceptAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<IReadOnlyList<string>>(), It.IsAny<CancellationToken>()))
DefaultHubLifetimeManagerTests.cs (1)
65var sendTask = manager.SendAllExceptAsync("Hello", new object[] { "World" }, new List<string> { connection1.ConnectionId }, cts.Token).DefaultTimeout();