3 writes to KeepAliveInterval
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
250KeepAliveInterval = options?.Value.KeepAliveInterval ?? DefaultKeepAliveInterval;
Microsoft.AspNetCore.SignalR.Client.Tests (2)
HubConnectionTests.Protocol.cs (2)
630hubConnection.KeepAliveInterval = TimeSpan.FromMilliseconds(80); 656hubConnection.KeepAliveInterval = TimeSpan.FromMilliseconds(80);
3 references to KeepAliveInterval
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2325Volatile.Write(ref _nextActivationSendPing, (DateTime.UtcNow + _hubConnection.KeepAliveInterval).Ticks);
Microsoft.AspNetCore.SignalR.Client.Tests (2)
HubConnectionBuilderTests.cs (2)
104Assert.Equal(keepAliveInterval, connection.KeepAliveInterval); 120Assert.Equal(keepAliveInterval, connection.KeepAliveInterval);