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