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