Advertisement
Guest User

Windows 10 18936 vs 18941 APIs

a guest
Jul 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.42 KB | None | 0 0
  1.  
  2.  MetaDiff v0.2 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new files: new\*
  5.  old files: old\*
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. | public class Windows.Devices.Sensors.Accelerometer {
  10. +   public AccelerometerDataThreshold ReportThreshold { get; }
  11. | }
  12.  
  13. + public class Windows.Devices.Sensors.AccelerometerDataThreshold {
  14. +   public double ZAxisInGForce { get; set; }
  15. +   public double YAxisInGForce { get; set; }
  16. +   public double XAxisInGForce { get; set; }
  17. + }
  18.  
  19. | public class Windows.Devices.Sensors.Altimeter {
  20. +   public AltimeterDataThreshold ReportThreshold { get; }
  21. | }
  22.  
  23. + public class Windows.Devices.Sensors.AltimeterDataThreshold {
  24. +   public double Meters { get; set; }
  25. + }
  26.  
  27. | public class Windows.Devices.Sensors.Barometer {
  28. +   public BarometerDataThreshold ReportThreshold { get; }
  29. | }
  30.  
  31. + public class Windows.Devices.Sensors.BarometerDataThreshold {
  32. +   public double Hectopascals { get; set; }
  33. + }
  34.  
  35. | public class Windows.Devices.Sensors.Compass {
  36. +   public CompassDataThreshold ReportThreshold { get; }
  37. | }
  38.  
  39. + public class Windows.Devices.Sensors.CompassDataThreshold {
  40. +   public double Degrees { get; set; }
  41. + }
  42.  
  43. | public class Windows.Devices.Sensors.Gyrometer {
  44. +   public GyrometerDataThreshold ReportThreshold { get; }
  45. | }
  46.  
  47. + public class Windows.Devices.Sensors.GyrometerDataThreshold {
  48. +   public double ZAxisInDegreesPerSecond { get; set; }
  49. +   public double YAxisInDegreesPerSecond { get; set; }
  50. +   public double XAxisInDegreesPerSecond { get; set; }
  51. + }
  52.  
  53. | public class Windows.Devices.Sensors.Inclinometer {
  54. +   public InclinometerDataThreshold ReportThreshold { get; }
  55. | }
  56.  
  57. + public class Windows.Devices.Sensors.InclinometerDataThreshold {
  58. +   public float YawInDegrees { get; set; }
  59. +   public float RollInDegrees { get; set; }
  60. +   public float PitchInDegrees { get; set; }
  61. + }
  62.  
  63. | public class Windows.Devices.Sensors.LightSensor {
  64. +   public LightSensorDataThreshold ReportThreshold { get; }
  65. | }
  66.  
  67. + public class Windows.Devices.Sensors.LightSensorDataThreshold {
  68. +   public float LuxPercentage { get; set; }
  69. +   public float AbsoluteLux { get; set; }
  70. + }
  71.  
  72. | public class Windows.Devices.Sensors.Magnetometer {
  73. +   public MagnetometerDataThreshold ReportThreshold { get; }
  74. | }
  75.  
  76. + public class Windows.Devices.Sensors.MagnetometerDataThreshold {
  77. +   public float ZAxisMicroteslas { get; set; }
  78. +   public float YAxisMicroteslas { get; set; }
  79. +   public float XAxisMicroteslas { get; set; }
  80. + }
  81.  
  82. + public interface Windows.Networking.NetworkOperators.INetworkOperatorTetheringAccessPointConfiguration2 {
  83. +   public TetheringWiFiBand Band { get; set; }
  84. +   public bool IsBandSupported( TetheringWiFiBand band );
  85. +   public IAsyncOperation<bool> IsBandSupportedAsync( TetheringWiFiBand band );
  86. + }
  87.  
  88. + public interface Windows.Networking.NetworkOperators.INetworkOperatorTetheringManagerStatics4 {
  89. +   public bool IsTimeoutEnabled( TetheringTimeoutKind timeoutKind );
  90. +   public IAsyncOperation<bool> IsTimeoutEnabledAsync( TetheringTimeoutKind timeoutKind );
  91. +   public void EnableTimeout( TetheringTimeoutKind timeoutKind );
  92. +   public IAsyncAction EnableTimeoutAsync( TetheringTimeoutKind timeoutKind );
  93. +   public void DisableTimeout( TetheringTimeoutKind timeoutKind );
  94. +   public IAsyncAction DisableTimeoutAsync( TetheringTimeoutKind timeoutKind );
  95. + }
  96.  
  97. | public class Windows.Networking.NetworkOperators.NetworkOperatorTetheringAccessPointConfiguration {
  98. +   public TetheringWiFiBand Band { get; set; }
  99. +   public bool IsBandSupported( TetheringWiFiBand band );
  100. +   public IAsyncOperation<bool> IsBandSupportedAsync( TetheringWiFiBand band );
  101. | }
  102.  
  103. | public class Windows.Networking.NetworkOperators.NetworkOperatorTetheringManager {
  104. +   public static bool IsTimeoutEnabled( TetheringTimeoutKind timeoutKind );
  105. +   public static IAsyncOperation<bool> IsTimeoutEnabledAsync( TetheringTimeoutKind timeoutKind );
  106. +   public static void EnableTimeout( TetheringTimeoutKind timeoutKind );
  107. +   public static IAsyncAction EnableTimeoutAsync( TetheringTimeoutKind timeoutKind );
  108. +   public static void DisableTimeout( TetheringTimeoutKind timeoutKind );
  109. +   public static IAsyncAction DisableTimeoutAsync( TetheringTimeoutKind timeoutKind );
  110. | }
  111.  
  112. + public enum Windows.Networking.NetworkOperators.TetheringTimeoutKind {
  113. +   NoConnections = 0,
  114. + }
  115.  
  116. + public enum Windows.Networking.NetworkOperators.TetheringWiFiBand {
  117. +   Auto = 0,
  118. +   TwoPointFourGigahertz = 1,
  119. +   FiveGigahertz = 2,
  120. + }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement