Imported Upstream version 6.4.0.137

Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-07-26 19:53:28 +00:00
parent e9207cf623
commit ef583813eb
2712 changed files with 74169 additions and 40587 deletions

View File

@ -8,6 +8,7 @@ namespace System
public static readonly bool IsWindowsNanoServer = false;
public static bool IsNotWindowsNanoServer => true;
public static bool IsNotWindowsServerCore => true;
public static bool IsMono => true;
public static bool IsWindows7 => false;
public static bool IsWindows10Version1607OrGreater => false;
@ -33,7 +34,8 @@ namespace System
public static bool IsNetfx462OrNewer => false;
public static bool IsSsl2AndSsl3Supported => false;
public static bool SupportsAlpn => false;
public static bool SupportsClientAlpn => false;
public static bool IsWindows {
get {
@ -44,5 +46,7 @@ namespace System
public static bool IsInAppContainer => false;
public static bool IsAlpine => false;
public static bool IsNetCore => false;
}
public static int WindowsVersion => -1;
}
}