1 write to _hubOptions
Microsoft.AspNetCore.SignalR.Core (1)
HubOptionsSetup`T.cs (1)
22_hubOptions = options.Value;
11 references to _hubOptions
Microsoft.AspNetCore.SignalR.Core (11)
HubOptionsSetup`T.cs (11)
32options.SupportedProtocols = new List<string>(_hubOptions.SupportedProtocols ?? Array.Empty<string>()); 33options.KeepAliveInterval = _hubOptions.KeepAliveInterval; 34options.HandshakeTimeout = _hubOptions.HandshakeTimeout; 35options.ClientTimeoutInterval = _hubOptions.ClientTimeoutInterval; 36options.EnableDetailedErrors = _hubOptions.EnableDetailedErrors; 37options.MaximumReceiveMessageSize = _hubOptions.MaximumReceiveMessageSize; 38options.StreamBufferCapacity = _hubOptions.StreamBufferCapacity; 39options.MaximumParallelInvocationsPerClient = _hubOptions.MaximumParallelInvocationsPerClient; 40options.DisableImplicitFromServicesParameters = _hubOptions.DisableImplicitFromServicesParameters; 44if (_hubOptions.HubFilters != null) 46options.HubFilters = new List<IHubFilter>(_hubOptions.HubFilters);