Advertisement
angelwzr

14900 vs 14905

Aug 14th, 2016
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.83 KB | None | 0 0
  1.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  2.  
  3.  new file: 14905_Windows.WinMD
  4.  old file: 14900_Windows.WinMD
  5.  
  6.  diff legends: +: added, -: removed, *: changed, |: type member changed
  7.  
  8. + public class Windows.ApplicationModel.Contacts.ContactGroup {
  9. +   public IRandomAccessStreamReference DisplayPicture { get; set; }
  10. +   public string DisplayName { get; set; }
  11. +   public string Description { get; set; }
  12. +   public bool CanShowGroupDetails { get; set; }
  13. +   public bool CanShowEditGroupMembers { get; set; }
  14. +   public bool CanShowEditGroup { get; set; }
  15. +   public string RemoteId { get; set; }
  16. +   public ContactGroupOtherAppReadAccess OtherAppReadAccess { get; set; }
  17. +   public ContactGroupKind Kind { get; set; }
  18. +   public string Id { get; }
  19. +   public string UserDataAccountId { get; }
  20. +   public IAsyncAction SaveAsync();
  21. +   public IAsyncAction DeleteAsync();
  22. +   public IAsyncAction ShowGroupDetailsAsync( string asyncAction );
  23. +   public IAsyncAction ShowEditGroupDetailsAsync( string asyncAction );
  24. +   public IAsyncAction ShowEditGroupMembersAsync( string asyncAction );
  25. + }
  26.  
  27. + public enum Windows.ApplicationModel.Contacts.ContactGroupKind {
  28. +   Default = 0,
  29. +   Favorites = 1,
  30. +   Family = 2,
  31. +   Friends = 3,
  32. +   Colleagues = 4,
  33. + }
  34.  
  35. + public enum Windows.ApplicationModel.Contacts.ContactGroupOtherAppReadAccess {
  36. +   SystemOnly = 0,
  37. +   Full = 1,
  38. +   None = 2,
  39. + }
  40.  
  41. | public class Windows.ApplicationModel.Contacts.ContactStore {
  42. +   public IAsyncOperation<ContactGroup> CreateContactGroupAsync( string value );
  43. +   public IAsyncOperation<ContactGroup> CreateContactGroupAsync( string value, string displayName );
  44. +   public IAsyncOperation<ContactGroup> GetContactGroupAsync( string value );
  45. +   public IAsyncOperation<IVectorView<ContactGroup>> FindContactGroupsAsync();
  46. | }
  47.  
  48. | public class Windows.ApplicationModel.UserDataAccounts.UserDataAccount {
  49. +   public bool CanShowCreateContactGroup { get; set; }
  50. +   public IAsyncOperation<IVectorView<ContactGroup>> FindContactGroupsAsync();
  51. +   public IAsyncOperation<string> ShowCreateContactGroupAsync();
  52. | }
  53.  
  54. | public class Windows.Media.Core.MediaBindingEventArgs {
  55. +   public void SetAdaptiveMediaSource( AdaptiveMediaSource mediaSource );
  56. +   public void SetStorageFile( IStorageFile file );
  57. | }
  58.  
  59. | public class Windows.Media.Core.MediaSource {
  60. +   public AdaptiveMediaSource AdaptiveMediaSource { get; }
  61. +   public MediaStreamSource MediaStreamSource { get; }
  62. +   public MseStreamSource MseStreamSource { get; }
  63. +   public IStorageFile StorageFile { get; }
  64. +   public IRandomAccessStream Stream { get; }
  65. +   public Uri Uri { get; }
  66. | }
  67.  
  68. | public class Windows.Media.Playback.CurrentMediaPlaybackItemChangedEventArgs {
  69. +   public MediaPlaybackItemChangedReason ItemChangedReason { get; }
  70. | }
  71.  
  72. | public class Windows.Media.Playback.MediaPlaybackItem {
  73. +   public bool IsEnabled { get; set; }
  74. +   public bool IsAutoLoadDisplayPropertiesEnabled { get; set; }
  75. +   public double DownloadProgress { get; }
  76. | }
  77.  
  78. + public enum Windows.Media.Playback.MediaPlaybackItemChangedReason {
  79. +   StartingItem = 0,
  80. +   EndOfStream = 1,
  81. +   Error = 2,
  82. +   AppRequested = 3,
  83. + }
  84.  
  85. | public class Windows.Media.Playback.MediaPlaybackList {
  86. +   public IReference<uint> MaxItemsToKeepOpen { get; set; }
  87. | }
  88.  
  89. + public class Windows.UI.Composition.CompositionVisualSurface : Windows.UI.Composition.CompositionObject {
  90. +   public Rect SourceRectangle { get; set; }
  91. +   public Visual Source { get; set; }
  92. +   public Size RealizationSize { get; set; }
  93. + }
  94.  
  95. | public class Windows.UI.Composition.Compositor {
  96. +   public CompositionVisualSurface CreateVisualSurface();
  97. | }
  98.  
  99. + public class Windows.UI.Xaml.Controls.Maps.MapElementRightClickEventArgs {
  100. +   public Geopoint Location { get; }
  101. +   public IVector<MapElement> MapElements { get; }
  102. +   public Point Position { get; }
  103. +   public MapElementRightClickEventArgs();
  104. + }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement