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