5 writes to KeepAliveInterval
Microsoft.AspNetCore.SignalR.Core (2)
HubOptionsSetup.cs (1)
53
options.
KeepAliveInterval
= DefaultKeepAliveInterval;
HubOptionsSetup`T.cs (1)
33
options.
KeepAliveInterval
= _hubOptions.KeepAliveInterval;
Microsoft.AspNetCore.SignalR.Tests (3)
AddSignalRTests.cs (1)
145
options.
KeepAliveInterval
= null;
HubConnectionHandlerTests.cs (2)
2697
options.
KeepAliveInterval
= TimeSpan.FromMilliseconds(100)), LoggerFactory);
2743
options.
KeepAliveInterval
= interval), LoggerFactory);
7 references to KeepAliveInterval
Microsoft.AspNetCore.SignalR.Core (4)
HubConnectionHandler.cs (2)
123
KeepAliveInterval = _hubOptions.
KeepAliveInterval
?? _globalHubOptions.
KeepAliveInterval
?? HubOptionsSetup.DefaultKeepAliveInterval,
HubOptionsSetup.cs (1)
49
if (options.
KeepAliveInterval
== null)
HubOptionsSetup`T.cs (1)
33
options.KeepAliveInterval = _hubOptions.
KeepAliveInterval
;
Microsoft.AspNetCore.SignalR.Tests (3)
AddSignalRTests.cs (3)
109
Assert.Equal(globalHubOptions.
KeepAliveInterval
, hubOptions.
KeepAliveInterval
);
160
Assert.Null(globalOptions.
KeepAliveInterval
);