angelwzr

14316 vs 14322

Apr 14th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.07 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new file: 14322_Windows.WinMD
  5.  old file: 14316_Windows.WinMD
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. | public class Windows.ApplicationModel.Store.LicenseManagement.LicenseManager {
  10. +   public static IAsyncOperation<LicenseSatisfactionResult> GetSatisfactionInfosAsync( IIterable<string> operation, IIterable<string> contentIds );
  11. | }
  12.  
  13. + public class Windows.ApplicationModel.Store.LicenseManagement.LicenseSatisfactionInfo {
  14. +   public bool IsSatisfied { get; }
  15. +   public bool SatisfiedByDevice { get; }
  16. +   public bool SatisfiedByInstallMedia { get; }
  17. +   public bool SatisfiedByOpenLicense { get; }
  18. +   public bool SatisfiedByPass { get; }
  19. +   public bool SatisfiedBySignedInUser { get; }
  20. +   public bool SatisfiedByTrial { get; }
  21. + }
  22.  
  23. + public class Windows.ApplicationModel.Store.LicenseManagement.LicenseSatisfactionResult {
  24. +   public HResult ExtendedError { get; }
  25. +   public IMapView<string, LicenseSatisfactionInfo> LicenseSatisfactionInfos { get; }
  26. + }
  27.  
  28. | public class Windows.ApplicationModel.Store.Preview.StoreConfiguration {
  29. +   public static IAsyncOperation<IRandomAccessStreamReference> GetStoreLogDataAsync( StoreLogOptions operation );
  30. +   public static void SetStoreWebAccountIdForUser( User user, string webAccountId );
  31. +   public static bool IsStoreWebAccountIdForUser( User value, string user );
  32. +   public static IReference<uint> GetPurchasePromptingPolicyForUser( User value );
  33. +   public static void SetPurchasePromptingPolicyForUser( User user, IReference<uint> value );
  34. | }
  35.  
  36. + public enum Windows.ApplicationModel.Store.Preview.StoreLogOptions {
  37. +   None = 0,
  38. +   TryElevate = 1,
  39. + }
  40.  
  41. | public class Windows.Media.Protection.PlayReady.PlayReadyStatics {
  42. +   public string InputTrustAuthorityToCreate { get; }
  43. +   public Guid ProtectionSystemId { get; }
  44. -   public Guid PlayReadyProtectionSystemID { get; }
  45. -   public string PlayReadyTrustedInputActivationString { get; }
  46. | }
  47.  
  48. | public class Windows.Services.Store.StoreAvailability {
  49. -   public string Description { get; }
  50. -   public string Name { get; }
  51. | }
  52.  
  53. + public enum Windows.Services.Store.StoreDurationUnit {
  54. +   Minute = 0,
  55. +   Hour = 1,
  56. +   Day = 2,
  57. +   Week = 3,
  58. +   Month = 4,
  59. +   Year = 5,
  60. + }
  61.  
  62. | public class Windows.Services.Store.StoreLicense {
  63. +   public string InAppOfferToken { get; }
  64. | }
  65.  
  66. | public class Windows.Services.Store.StoreProduct {
  67. +   public string InAppOfferToken { get; }
  68. | }
  69.  
  70. | public class Windows.Services.Store.StoreSku {
  71. +   public bool IsSubscription { get; }
  72. +   public StoreSubscriptionInfo SubscriptionInfo { get; }
  73. | }
  74.  
  75. + public class Windows.Services.Store.StoreSubscriptionInfo {
  76. +   public uint BillingPeriod { get; }
  77. +   public StoreDurationUnit BillingPeriodUnit { get; }
  78. +   public bool HasTrialPeriod { get; }
  79. +   public uint TrialPeriod { get; }
  80. +   public StoreDurationUnit TrialPeriodUnit { get; }
  81. + }
  82.  
  83. + public class Windows.System.UserDeviceAssociation {
  84. +   public static User FindUserFromDeviceId( string user );
  85. +   EventHandler<UserDeviceAssociationChangedEventArgs> UserDeviceAssociationChanged;
  86. + }
  87.  
  88. + public class Windows.System.UserDeviceAssociationChangedEventArgs {
  89. +   public string DeviceId { get; }
  90. +   public User NewUser { get; }
  91. +   public User OldUser { get; }
  92. + }
  93.  
  94. | public class Windows.System.UserPicker {
  95. -   public bool IsSupported { get; }
  96. +   public static bool IsSupported();
  97. | }
  98.  
  99. - public class Windows.System.Profile.DeviceIdentification;
  100.  
  101. - public enum Windows.System.Profile.DeviceIdentificationSource;
  102.  
  103. - public class Windows.System.Profile.DeviceIdentificationToken;
  104.  
  105. + public class Windows.System.Profile.SystemIdentification {
  106. +   public static SystemIdentificationInfo GetSystemIdForPublisher();
  107. +   public static SystemIdentificationInfo GetSystemIdForUser( User result );
  108. + }
  109.  
  110. + public class Windows.System.Profile.SystemIdentificationInfo {
  111. +   public IBuffer Id { get; }
  112. +   public SystemIdentificationSource Source { get; }
  113. + }
  114.  
  115. + public enum Windows.System.Profile.SystemIdentificationSource {
  116. +   None = 0,
  117. +   Tpm = 1,
  118. +   Uefi = 2,
  119. + }
Add Comment
Please, Sign In to add comment