1 write to ExcludedConnectionIds
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Internal\RedisInvocation.cs (1)
27ExcludedConnectionIds = excludedConnectionIds;
7 references to ExcludedConnectionIds
Microsoft.AspNetCore.SignalR.StackExchangeRedis (3)
RedisHubLifetimeManager.cs (3)
465if (invocation.ExcludedConnectionIds == null || !invocation.ExcludedConnectionIds.Contains(connection.ConnectionId)) 626if (invocation.ExcludedConnectionIds?.Contains(groupConnection.ConnectionId) == true)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (4)
RedisProtocolTests.cs (4)
152Assert.Equal(expected.ExcludedConnectionIds, decoded.ExcludedConnectionIds); 182var encoded = protocol.WriteInvocation(_testMessage.Target, _testMessage.Arguments, excludedConnectionIds: expected.ExcludedConnectionIds); 198var encoded = protocol.WriteInvocation(_testMessage.Target, _testMessage.Arguments, excludedConnectionIds: expected.ExcludedConnectionIds);