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