1 write to _hubOptions
Microsoft.AspNetCore.SignalR.Core (1)
HubOptionsSetup`T.cs (1)
22
_hubOptions
= options.Value;
11 references to _hubOptions
Microsoft.AspNetCore.SignalR.Core (11)
HubOptionsSetup`T.cs (11)
32
options.SupportedProtocols = new List<string>(
_hubOptions
.SupportedProtocols ?? Array.Empty<string>());
33
options.KeepAliveInterval =
_hubOptions
.KeepAliveInterval;
34
options.HandshakeTimeout =
_hubOptions
.HandshakeTimeout;
35
options.ClientTimeoutInterval =
_hubOptions
.ClientTimeoutInterval;
36
options.EnableDetailedErrors =
_hubOptions
.EnableDetailedErrors;
37
options.MaximumReceiveMessageSize =
_hubOptions
.MaximumReceiveMessageSize;
38
options.StreamBufferCapacity =
_hubOptions
.StreamBufferCapacity;
39
options.MaximumParallelInvocationsPerClient =
_hubOptions
.MaximumParallelInvocationsPerClient;
40
options.DisableImplicitFromServicesParameters =
_hubOptions
.DisableImplicitFromServicesParameters;
44
if (
_hubOptions
.HubFilters != null)
46
options.HubFilters = new List<IHubFilter>(
_hubOptions
.HubFilters);