1 write to _hubOptions
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionHandler.cs (1)
66_hubOptions = hubOptions.Value;
13 references to _hubOptions
Microsoft.AspNetCore.SignalR.Core (13)
HubConnectionHandler.cs (13)
75if (_hubOptions.UserHasSetValues) 77_maximumMessageSize = _hubOptions.MaximumReceiveMessageSize; 78_enableDetailedErrors = _hubOptions.EnableDetailedErrors ?? _enableDetailedErrors; 79_maxParallelInvokes = _hubOptions.MaximumParallelInvocationsPerClient; 80disableImplicitFromServiceParameters = _hubOptions.DisableImplicitFromServicesParameters; 81_statefulReconnectBufferSize = _hubOptions.StatefulReconnectBufferSize; 83if (_hubOptions.HubFilters != null) 85hubFilters = new List<IHubFilter>(_hubOptions.HubFilters); 118var supportedProtocols = _hubOptions.SupportedProtocols ?? _globalHubOptions.SupportedProtocols; 124var handshakeTimeout = _hubOptions.HandshakeTimeout ?? _globalHubOptions.HandshakeTimeout ?? HubOptionsSetup.DefaultHandshakeTimeout; 128KeepAliveInterval = _hubOptions.KeepAliveInterval ?? _globalHubOptions.KeepAliveInterval ?? HubOptionsSetup.DefaultKeepAliveInterval, 129ClientTimeoutInterval = _hubOptions.ClientTimeoutInterval ?? _globalHubOptions.ClientTimeoutInterval ?? HubOptionsSetup.DefaultClientTimeoutInterval, 130StreamBufferCapacity = _hubOptions.StreamBufferCapacity ?? _globalHubOptions.StreamBufferCapacity ?? HubOptionsSetup.DefaultStreamBufferCapacity,