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