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)
72
if (
_hubOptions
.UserHasSetValues)
74
_maximumMessageSize =
_hubOptions
.MaximumReceiveMessageSize;
75
_enableDetailedErrors =
_hubOptions
.EnableDetailedErrors ?? _enableDetailedErrors;
76
_maxParallelInvokes =
_hubOptions
.MaximumParallelInvocationsPerClient;
77
disableImplicitFromServiceParameters =
_hubOptions
.DisableImplicitFromServicesParameters;
78
_statefulReconnectBufferSize =
_hubOptions
.StatefulReconnectBufferSize;
80
if (
_hubOptions
.HubFilters != null)
82
hubFilters = new List<IHubFilter>(
_hubOptions
.HubFilters);
115
var supportedProtocols =
_hubOptions
.SupportedProtocols ?? _globalHubOptions.SupportedProtocols;
121
var handshakeTimeout =
_hubOptions
.HandshakeTimeout ?? _globalHubOptions.HandshakeTimeout ?? HubOptionsSetup.DefaultHandshakeTimeout;
125
KeepAliveInterval =
_hubOptions
.KeepAliveInterval ?? _globalHubOptions.KeepAliveInterval ?? HubOptionsSetup.DefaultKeepAliveInterval,
126
ClientTimeoutInterval =
_hubOptions
.ClientTimeoutInterval ?? _globalHubOptions.ClientTimeoutInterval ?? HubOptionsSetup.DefaultClientTimeoutInterval,
127
StreamBufferCapacity =
_hubOptions
.StreamBufferCapacity ?? _globalHubOptions.StreamBufferCapacity ?? HubOptionsSetup.DefaultStreamBufferCapacity,