1 write to _availableProtocols
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubProtocolResolver.cs (1)
22
_availableProtocols
= new Dictionary<string, IHubProtocol>(StringComparer.OrdinalIgnoreCase);
3 references to _availableProtocols
Microsoft.AspNetCore.SignalR.Core (3)
Internal\DefaultHubProtocolResolver.cs (3)
27
_availableProtocols
[protocol.Name] = protocol;
29
_hubProtocols =
_availableProtocols
.Values.ToList();
36
if (
_availableProtocols
.TryGetValue(protocolName, out var protocol) && (supportedProtocols == null || supportedProtocols.Contains(protocolName, StringComparer.OrdinalIgnoreCase)))