angelwzr

14905 vs 14915

Aug 29th, 2016
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 9.21 KB | None | 0 0
  1.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  2.  
  3.  new file: 14915_Windows.WinMD
  4.  old file: 14905_Windows.WinMD
  5.  
  6.  diff legends: +: added, -: removed, *: changed, |: type member changed
  7.  
  8. | public enum Windows.ApplicationModel.Activation.ActivationKind {
  9. +   LockScreenComponent = 1016,
  10. | }
  11.  
  12. + public class Windows.ApplicationModel.Activation.LockScreenComponentActivatedEventArgs {
  13. +   public ActivationKind Kind { get; }
  14. +   public ApplicationExecutionState PreviousExecutionState { get; }
  15. +   public SplashScreen SplashScreen { get; }
  16. + }
  17.  
  18. + public class Windows.Devices.Gpio.GpioInterruptBuffer {
  19. +   public int Capacity { get; }
  20. +   public int Count { get; }
  21. +   public bool IsEmpty { get; }
  22. +   public bool IsOverflowed { get; }
  23. +   public void Clear();
  24. +   public GpioInterruptEvent Pop();
  25. +   public GpioInterruptEvent Peek();
  26. +   public IAsyncOperation<int> WaitForItemsAsync( int operation );
  27. +   TypedEventHandler<GpioInterruptBuffer, object> Overflowed;
  28. + }
  29.  
  30. + public struct Windows.Devices.Gpio.GpioInterruptEvent {
  31. +   public TimeSpan RelativeTime;
  32. +   public GpioPinEdge Edge;
  33. + }
  34.  
  35. | public class Windows.Devices.Gpio.GpioPin {
  36. +   public GpioInterruptBuffer InterruptBuffer { get; }
  37. +   public void CreateInterruptBuffer();
  38. +   public void CreateInterruptBuffer( int minimumCapacity );
  39. +   public void StartInterruptBuffer();
  40. +   public void StartInterruptBuffer( GpioPinEdge edge );
  41. +   public void StopInterruptBuffer();
  42. | }
  43.  
  44. | public class Windows.Media.Core.MediaSource {
  45. -   public IStorageFile StorageFile { get; }
  46. -   public IRandomAccessStream Stream { get; }
  47. | }
  48.  
  49. + public enum Windows.Media.Playback.AutoLoadedDisplayPropertyKind {
  50. +   None = 0,
  51. +   MusicOrVideo = 1,
  52. +   Music = 2,
  53. +   Video = 3,
  54. + }
  55.  
  56. | public class Windows.Media.Playback.CurrentMediaPlaybackItemChangedEventArgs {
  57. +   public MediaPlaybackItemChangedReason Reason { get; }
  58. -   public MediaPlaybackItemChangedReason ItemChangedReason { get; }
  59. | }
  60.  
  61. | public class Windows.Media.Playback.MediaPlaybackItem {
  62. +   public bool IsDisabledInPlaybackList { get; set; }
  63. +   public AutoLoadedDisplayPropertyKind AutoLoadedDisplayProperties { get; set; }
  64. +   public double TotalDownloadProgress { get; }
  65. -   public bool IsEnabled { get; set; }
  66. -   public bool IsAutoLoadDisplayPropertiesEnabled { get; set; }
  67. -   public double DownloadProgress { get; }
  68. | }
  69.  
  70. | public enum Windows.Media.Playback.MediaPlaybackItemChangedReason {
  71. +   InitialItem = 0,
  72. -   StartingItem = 0,
  73. | }
  74.  
  75. | public class Windows.Media.Playback.MediaPlaybackList {
  76. +   public IReference<uint> MaxPlayedItemsToKeepOpen { get; set; }
  77. -   public IReference<uint> MaxItemsToKeepOpen { get; set; }
  78. | }
  79.  
  80. + public interface Windows.Media.Protection.PlayReady.IPlayReadyLicense2 {
  81. +   public bool HasRealTimeExpiration { get; }
  82. +   public bool IsInMemoryOnly { get; }
  83. +   public Guid SecureStopId { get; }
  84. +   public uint SecurityLevel { get; }
  85. + }
  86.  
  87. + public interface Windows.Media.Protection.PlayReady.IPlayReadyLicenseSession2 {
  88. +   public PlayReadyLicenseIterable CreateLicenseIterable();
  89. + }
  90.  
  91. | public class Windows.Media.Protection.PlayReady.PlayReadyLicense {
  92. +   public bool HasRealTimeExpiration { get; }
  93. +   public bool IsInMemoryOnly { get; }
  94. +   public Guid SecureStopId { get; }
  95. +   public uint SecurityLevel { get; }
  96. | }
  97.  
  98. | public class Windows.Media.Protection.PlayReady.PlayReadyLicenseIterable {
  99. +   public PlayReadyLicenseIterable( PlayReadyLicenseSession licenseSession, PlayReadyContentHeader contentHeader, bool fullyEvaluated );
  100. | }
  101.  
  102. | public class Windows.Media.Protection.PlayReady.PlayReadyLicenseSession {
  103. +   public PlayReadyLicenseIterable CreateLicenseIterable();
  104. | }
  105.  
  106. | public class Windows.Services.Maps.MapService {
  107. +   public bool LimitNetworkUsage { get; set; }
  108. | }
  109.  
  110. + public class Windows.Services.Maps.OfflineMaps.MapPackage {
  111. +   public string Name { get; }
  112. +   public string ParentName { get; }
  113. +   public double SizeInKilobytes { get; }
  114. +   public MapPackageStatus Status { get; }
  115. +   public IAsyncOperation<MapPackageOperationResult> DownloadAsync();
  116. +   TypedEventHandler<MapPackage, object> StatusChanged;
  117. + }
  118.  
  119. + public class Windows.Services.Maps.OfflineMaps.MapPackageManager {
  120. +   public static IAsyncOperation<MapPackageQueryResult> QueryMapPackageAsync( Geopoint result );
  121. +   public static IAsyncOperation<MapPackageQueryResult> QueryMapPackageAsync( GeoboundingBox result );
  122. +   public static IAsyncOperation<MapPackageQueryResult> QueryMapPackageAsync( Geocircle result );
  123. + }
  124.  
  125. + public class Windows.Services.Maps.OfflineMaps.MapPackageOperationResult {
  126. +   public MapPackageOperationStatus Status { get; }
  127. + }
  128.  
  129. + public enum Windows.Services.Maps.OfflineMaps.MapPackageOperationStatus {
  130. +   Success = 0,
  131. +   UnknownError = 1,
  132. +   InvalidCredentials = 2,
  133. +   Cancelled = 3,
  134. + }
  135.  
  136. + public class Windows.Services.Maps.OfflineMaps.MapPackageQueryResult {
  137. +   public IVectorView<MapPackage> Packages { get; }
  138. +   public MapPackageQueryStatus Status { get; }
  139. + }
  140.  
  141. + public enum Windows.Services.Maps.OfflineMaps.MapPackageQueryStatus {
  142. +   Success = 0,
  143. +   UnknownError = 1,
  144. +   NetworkFailure = 2,
  145. + }
  146.  
  147. + public enum Windows.Services.Maps.OfflineMaps.MapPackageStatus {
  148. +   NotDownloaded = 0,
  149. +   Downloaded = 1,
  150. +   Downloading = 2,
  151. +   Deleting = 3,
  152. + }
  153.  
  154. | public class Windows.UI.Composition.CompositionVisualSurface : Windows.UI.Composition.CompositionObject {
  155. +   public float SourceRectangleTop { get; set; }
  156. +   public float SourceRectangleRight { get; set; }
  157. +   public float SourceRectangleLeft { get; set; }
  158. +   public float SourceRectangleBottom { get; set; }
  159. *   public Vector2 RealizationSize { get; set; }
  160. -   public Rect SourceRectangle { get; set; }
  161. +   public void Freeze();
  162. | }
  163.  
  164. | public class Windows.UI.Input.RadialControllerConfiguration {
  165. +   public bool IsMenuSuppressed { get; set; }
  166. +   public RadialController DefaultControllerWhenSuppressed { get; set; }
  167. | }
  168.  
  169. | public class Windows.UI.Input.RadialControllerMenuItem {
  170. +   public static RadialControllerMenuItem CreateFromFontGlyph( string result, string displayText, string glyph );
  171. +   public static RadialControllerMenuItem CreateFromFontGlyphWithPath( string result, string displayText, string glyph, Uri fontFamily );
  172. | }
  173.  
  174. + public enum Windows.UI.Text.TextDecorations {
  175. +   None = 0,
  176. +   Underline = 1,
  177. +   Strikethrough = 2,
  178. + }
  179.  
  180. + public class Windows.UI.WebUI.WebUILockScreenComponentActivatedEventArgs {
  181. +   public ActivationKind Kind { get; }
  182. +   public ApplicationExecutionState PreviousExecutionState { get; }
  183. +   public SplashScreen SplashScreen { get; }
  184. +   public ActivatedOperation ActivatedOperation { get; }
  185. + }
  186.  
  187. | public class Windows.UI.Xaml.Controls.InkToolbar : Windows.UI.Xaml.Controls.Control {
  188. +   public bool IsSelectionButtonChecked { get; set; }
  189. +   public DependencyProperty IsSelectionButtonCheckedProperty { get; }
  190. +   public InkToolbarSelectionButton GetSelectionButton( InkToolbarSelection returnValue );
  191. | }
  192.  
  193. | public class Windows.UI.Xaml.Controls.InkToolbarEraserButton : Windows.UI.Xaml.Controls.InkToolbarToolButton {
  194. +   public bool ShowStrokeErase { get; set; }
  195. +   public bool ShowPointErase { get; set; }
  196. +   public InkToolbarEraserTipShape PointEraseTipShape { get; set; }
  197. +   public Size PointEraseSize { get; set; }
  198. +   public DependencyProperty PointEraseSizeProperty { get; }
  199. +   public DependencyProperty PointEraseTipShapeProperty { get; }
  200. +   public DependencyProperty ShowPointEraseProperty { get; }
  201. +   public DependencyProperty ShowStrokeEraseProperty { get; }
  202. | }
  203.  
  204. + public enum Windows.UI.Xaml.Controls.InkToolbarEraserButtonKind {
  205. +   PointErase = 0,
  206. +   StrokeErase = 1,
  207. +   ClearAll = 2,
  208. + }
  209.  
  210. + public enum Windows.UI.Xaml.Controls.InkToolbarEraserTipShape {
  211. +   Circle = 0,
  212. + }
  213.  
  214. + public enum Windows.UI.Xaml.Controls.InkToolbarSelection {
  215. +   Stencil = 0,
  216. + }
  217.  
  218. + public class Windows.UI.Xaml.Controls.InkToolbarSelectionButton : Windows.UI.Xaml.Controls.CheckBox {
  219. +   public bool ShowTriangleButton { get; set; }
  220. +   public bool ShowRulerButton { get; set; }
  221. +   public bool ShowProtractorButton { get; set; }
  222. +   public bool IsExtensionGlyphShown { get; set; }
  223. +   public InkPresenterRuler Ruler { get; }
  224. +   public InkToolbarSelection SelectionKind { get; }
  225. +   public DependencyProperty IsExtensionGlyphShownProperty { get; }
  226. +   public DependencyProperty RulerProperty { get; }
  227. +   public DependencyProperty ShowProtractorButtonProperty { get; }
  228. +   public DependencyProperty ShowRulerButtonProperty { get; }
  229. +   public DependencyProperty ShowTriangleButtonProperty { get; }
  230. +   public InkToolbarSelectionButton();
  231. + }
  232.  
  233. | public class Windows.UI.Xaml.Controls.RichTextBlock : Windows.UI.Xaml.FrameworkElement {
  234. +   public TextDecorations TextDecorations { get; set; }
  235. +   public DependencyProperty TextDecorationsProperty { get; }
  236. | }
  237.  
  238. | public class Windows.UI.Xaml.Controls.TextBlock : Windows.UI.Xaml.FrameworkElement {
  239. +   public TextDecorations TextDecorations { get; set; }
  240. +   public DependencyProperty TextDecorationsProperty { get; }
  241. | }
  242.  
  243. | public class Windows.UI.Xaml.Documents.TextElement : Windows.UI.Xaml.DependencyObject {
  244. +   public TextDecorations TextDecorations { get; set; }
  245. +   public DependencyProperty TextDecorationsProperty { get; }
  246. | }
  247.  
  248. | public class Windows.UI.Xaml.Input.AccessKeyManager {
  249. +   public bool AreKeyTipsEnabled { get; set; }
  250. | }
Add Comment
Please, Sign In to add comment