Advertisement
angelwzr

14263 vs 14266

Feb 13th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new file: 14266_Windows.WinMD
  5.  old file: 14263_Windows.WinMD
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. | public class Windows.ApplicationModel.Chat.ChatSyncManager {
  10. +   public bool IsDisabledByDevicePolicy { get; }
  11. | }
  12.  
  13. | public enum Windows.ApplicationModel.Chat.ChatSyncState {
  14. +   SigningOut = 3,
  15. -   AuthenticationFailed = 3,
  16. -   DisabledByDevicePolicy = 4,
  17. | }
  18.  
  19. | public class Windows.Media.Core.AudioStreamDescriptor {
  20. +   public IReference<uint> EncoderPadding { get; set; }
  21. +   public IReference<uint> EncoderDelay { get; set; }
  22. | }
  23.  
  24. | public class Windows.Media.Playback.MediaPlayer {
  25. +   public bool RealTimePlayback { get; set; }
  26. +   public double Balance { get; set; }
  27. +   public StereoVideoRenderMode StereoVideoRenderMode { get; set; }
  28. +   public int AspectRatioWidth { get; }
  29. +   public double DownloadProgress { get; }
  30. +   public int NaturalVideoHeight { get; }
  31. +   public int NaturalVideoWidth { get; }
  32. +   public int AspectRatioHeight { get; }
  33. +   public MediaPlayer();
  34. +   public CastingSource GetAsCastingSource();
  35. +   public void AddVideoEffect( string effectID, bool effectOptional, IPropertySet effectConfiguration );
  36. | }
  37.  
  38. + public enum Windows.Media.Playback.StereoVideoRenderMode {
  39. +   Mono = 0,
  40. +   Stereo = 1,
  41. + }
  42.  
  43. | public class Windows.UI.Xaml.Automation.Peers.MapControlAutomationPeer : Windows.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer {
  44. +   public double HorizontalScrollPercent { get; }
  45. +   public double HorizontalViewSize { get; }
  46. +   public bool HorizontallyScrollable { get; }
  47. +   public double VerticalScrollPercent { get; }
  48. +   public double VerticalViewSize { get; }
  49. +   public bool VerticallyScrollable { get; }
  50. +   public void Scroll( ScrollAmount horizontalAmount, ScrollAmount verticalAmount );
  51. +   public void SetScrollPercent( double horizontalPercent, double verticalPercent );
  52. | }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement