forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlatformConfiguration.cs
71 lines (60 loc) · 2.34 KB
/
PlatformConfiguration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Windows.Foundation.Metadata;
using Windows.System.Profile;
namespace MUXControls.TestAppUtils
{
public enum DeviceType
{
Desktop,
Phone
}
public enum OSVersion : ushort
{
Threshold2 = 2,
Redstone1 = 3,
Redstone2 = 4,
Redstone3 = 5,
Redstone4 = 6,
Redstone5 = 7
}
public class PlatformConfiguration
{
const OSVersion MaxOSVersion = OSVersion.Redstone2;
public static bool IsDevice(DeviceType type)
{
var deviceFamily = AnalyticsInfo.VersionInfo.DeviceFamily;
if (type == DeviceType.Desktop && deviceFamily == "Windows.Desktop")
{
return true;
}
else if (type == DeviceType.Phone && deviceFamily == "Windows.Mobile")
{
return true;
}
return false;
}
public static bool IsOsVersion(OSVersion version)
{
// We can determine the OS version by checking for the presence of the Universal contract
// corresonding to that version and the absense of the contract version corresonding to
// the next OS version.
return ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", (ushort)version) &&
((version == MaxOSVersion) || !ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", (ushort)(version + 1)));
}
public static bool IsOsVersionGreaterThan(OSVersion version)
{
// We can determine that the OS version is greater than the specified version by checking for
// the presence of the Universal contract corresonding to the next version.
return ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", (ushort)(version + 1));
}
public static bool IsOsVersionGreaterThanOrEqual(OSVersion version)
{
return IsOsVersionGreaterThan(version) || IsOsVersion(version);
}
public static bool IsOSVersionLessThan(OSVersion version)
{
return !IsOsVersionGreaterThanOrEqual(version);
}
}
}