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