2 references to Clamp
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.KeepAlive.cs (1)
151
static int TimeSpanToMs(TimeSpan value) => (int)Math.
Clamp
((long)value.TotalMilliseconds, MinIntervalMs, int.MaxValue);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
657
public static long Clamp(long value, long min, long max) => Math.
Clamp
(value, min, max);