3 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 (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
646
public static long Clamp(long value, long min, long max) => Math.
Clamp
(value, min, max);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
2020
int zeroExponent = (int)Math.
Clamp
(exponent, TDecimal.MinAdjustedExponent, TDecimal.MaxAdjustedExponent);