3 implementations of AllProtocols
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubProtocolResolver.cs (1)
17public IReadOnlyList<IHubProtocol> AllProtocols => _hubProtocols;
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
HubConnectionContextBenchmark.cs (1)
85public IReadOnlyList<IHubProtocol> AllProtocols { get; }
Microsoft.AspNetCore.SignalR.Tests (1)
AddSignalRTests.cs (1)
222public IReadOnlyList<IHubProtocol> AllProtocols => throw new System.NotImplementedException();
2 references to AllProtocols
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (2)
82var supportedProtocols = hubProtocolResolver.AllProtocols.Select(p => p.Name).ToList(); 650foreach (var hubProtocol in _hubProtocolResolver.AllProtocols)