Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetIsWindows7Or2008R2()

static bool System.Net.Http.HttpConnectionPool.GetIsWindows7Or2008R2 ( )
inlinestaticprivate

Definition at line 1681 of file HttpConnectionPool.cs.

1682 {
1683 OperatingSystem oSVersion = Environment.OSVersion;
1684 if (oSVersion.Platform == PlatformID.Win32NT)
1685 {
1686 Version version = oSVersion.Version;
1687 if (version.Major == 6)
1688 {
1689 return version.Minor == 1;
1690 }
1691 return false;
1692 }
1693 return false;
1694 }

References System.Version.Major, and System.Environment.OSVersion.