5 references to s_minWindowsVersion
System.Net.Quic (5)
System\Net\Quic\Internal\MsQuicApi.cs (5)
202
NotSupportedReason = $"Current Windows version ({Environment.OSVersion}) is not supported by QUIC. Minimal supported version is {
s_minWindowsVersion
}.";
252
private static bool IsWindowsVersionSupported() => OperatingSystem.IsWindowsVersionAtLeast(
s_minWindowsVersion
.Major,
253
s_minWindowsVersion
.Minor,
s_minWindowsVersion
.Build,
s_minWindowsVersion
.Revision);