1 write to TimeoutMs
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.KeepAlive.cs (1)
192
TimeoutMs
= TimeSpanToMs(keepAliveTimeout);
4 references to TimeoutMs
System.Net.WebSockets (4)
System\Net\WebSockets\ManagedWebSocket.cs (1)
182
$"Enabling Ping/Pong Keep-Alive strategy: ping delay={_keepAlivePingState.DelayMs}ms, timeout={_keepAlivePingState.
TimeoutMs
}ms, heartbeat={heartBeatIntervalMs}ms");
System\Net\WebSockets\ManagedWebSocket.KeepAlive.cs (3)
78
NetEventSource.Trace(this, $"Keep-alive ping timed out after {_keepAlivePingState.
TimeoutMs
}ms. Expected pong with payload {_keepAlivePingState.PingPayload}");
181
internal int HeartBeatIntervalMs => Math.Max(Math.Min(DelayMs,
TimeoutMs
) / 4, MinIntervalMs);
239
PingTimeoutTimestamp = Environment.TickCount64 +
TimeoutMs
;