2 writes to SupportedProtocols
Microsoft.AspNetCore.SignalR.Core (2)
HubOptionsSetup.cs (1)
68options.SupportedProtocols = new List<string>(_defaultProtocols.Count);
HubOptionsSetup`T.cs (1)
32options.SupportedProtocols = new List<string>(_hubOptions.SupportedProtocols ?? Array.Empty<string>());
7 references to SupportedProtocols
Microsoft.AspNetCore.Components.Server (2)
DependencyInjection\ComponentServiceCollectionExtensions.cs (2)
56options.SupportedProtocols.Clear(); 57options.SupportedProtocols.Add(BlazorPackHubProtocol.ProtocolName);
Microsoft.AspNetCore.SignalR.Core (5)
HubConnectionHandler.cs (2)
113var supportedProtocols = _hubOptions.SupportedProtocols ?? _globalHubOptions.SupportedProtocols;
HubOptionsSetup.cs (2)
66if (options.SupportedProtocols == null) 78options.SupportedProtocols.Add(protocol);
HubOptionsSetup`T.cs (1)
32options.SupportedProtocols = new List<string>(_hubOptions.SupportedProtocols ?? Array.Empty<string>());