1 write to _hubOptions
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionHandler.cs (1)
63_hubOptions = hubOptions.Value;
13 references to _hubOptions
Microsoft.AspNetCore.SignalR.Core (13)
HubConnectionHandler.cs (13)
72if (_hubOptions.UserHasSetValues) 74_maximumMessageSize = _hubOptions.MaximumReceiveMessageSize; 75_enableDetailedErrors = _hubOptions.EnableDetailedErrors ?? _enableDetailedErrors; 76_maxParallelInvokes = _hubOptions.MaximumParallelInvocationsPerClient; 77disableImplicitFromServiceParameters = _hubOptions.DisableImplicitFromServicesParameters; 78_statefulReconnectBufferSize = _hubOptions.StatefulReconnectBufferSize; 80if (_hubOptions.HubFilters != null) 82hubFilters = new List<IHubFilter>(_hubOptions.HubFilters); 115var supportedProtocols = _hubOptions.SupportedProtocols ?? _globalHubOptions.SupportedProtocols; 121var handshakeTimeout = _hubOptions.HandshakeTimeout ?? _globalHubOptions.HandshakeTimeout ?? HubOptionsSetup.DefaultHandshakeTimeout; 125KeepAliveInterval = _hubOptions.KeepAliveInterval ?? _globalHubOptions.KeepAliveInterval ?? HubOptionsSetup.DefaultKeepAliveInterval, 126ClientTimeoutInterval = _hubOptions.ClientTimeoutInterval ?? _globalHubOptions.ClientTimeoutInterval ?? HubOptionsSetup.DefaultClientTimeoutInterval, 127StreamBufferCapacity = _hubOptions.StreamBufferCapacity ?? _globalHubOptions.StreamBufferCapacity ?? HubOptionsSetup.DefaultStreamBufferCapacity,