2 overrides of AddToGroupAsync
Microsoft.AspNetCore.SignalR.Core (1)
DefaultHubLifetimeManager.cs (1)
34public override Task AddToGroupAsync(string connectionId, string groupName, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
RedisHubLifetimeManager.cs (1)
209public override Task AddToGroupAsync(string connectionId, string groupName, CancellationToken cancellationToken = default)
14 references to AddToGroupAsync
Microsoft.AspNetCore.SignalR.Core (1)
Internal\GroupManager.cs (1)
17return _lifetimeManager.AddToGroupAsync(connectionId, groupName, cancellationToken);
Microsoft.AspNetCore.SignalR.Specification.Tests (13)
HubLifetimeManagerTestBase.cs (3)
107await manager.AddToGroupAsync(connection1.ConnectionId, "group").DefaultTimeout(); 137await manager.AddToGroupAsync(connection1.ConnectionId, "group1").DefaultTimeout(); 138await manager.AddToGroupAsync(connection2.ConnectionId, "group1").DefaultTimeout();
ScaleoutHubLifetimeManagerTests.cs (10)
137await manager1.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 161await manager.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 229await manager2.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 253await manager.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 254await manager.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 280await manager1.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 281await manager2.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 307await manager1.AddToGroupAsync(connection.ConnectionId, "name").DefaultTimeout(); 391await manager.AddToGroupAsync(connection1.ConnectionId, "group"); 393await manager.AddToGroupAsync(connection2.ConnectionId, "group");