Advertisement
Guest User

Windows 10 16184 UWP APIs

a guest
Apr 28th, 2017
664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 10.39 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new files: 16184\*
  5.  old files: 16179\*
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. | public enum Windows.ApplicationModel.Activation.ActivationKind {
  10. +   Console = 1019,
  11. | }
  12.  
  13. + public class Windows.ApplicationModel.Activation.ConsoleActivatedEventArgs {
  14. +   public ActivationKind Kind { get; }
  15. +   public ApplicationExecutionState PreviousExecutionState { get; }
  16. +   public SplashScreen SplashScreen { get; }
  17. +   public string Arguments { get; }
  18. + }
  19.  
  20. + public interface Windows.ApplicationModel.Activation.IConsoleActivatedEventArgs {
  21. +   public string Arguments { get; }
  22. + }
  23.  
  24. + public class Windows.ApplicationModel.Cards.CardBuilder {
  25. +   public static ICardElement CreateCardElementFromJson( string result );
  26. + }
  27.  
  28. + public interface Windows.ApplicationModel.Cards.ICardBuilderStatics {
  29. +   public ICardElement CreateCardElementFromJson( string result );
  30. + }
  31.  
  32. + public interface Windows.ApplicationModel.Cards.ICardElement {
  33. +   public string ToJson();
  34. + }
  35.  
  36. | public class Windows.ApplicationModel.Core.CoreApplication {
  37. +   public static IAsyncOperation<RestartResult> RequestRestartAsync( string operation );
  38. +   public static IAsyncOperation<RestartResult> RequestRestartForUserAsync( User operation, string user );
  39. | }
  40.  
  41. + public enum Windows.ApplicationModel.Core.RestartResult {
  42. +   Allowed = 0,
  43. +   DeniedBackground = 1,
  44. + }
  45.  
  46. + public class Windows.ApplicationModel.UserActivities.UserActivity {
  47. +   public Uri FallbackUri { get; set; }
  48. +   public Uri ContentUri { get; set; }
  49. +   public string ContentType { get; set; }
  50. +   public string ContentMetadata { get; set; }
  51. +   public Uri ActivationUri { get; set; }
  52. +   public string ActivityId { get; }
  53. +   public UserActivityState State { get; }
  54. +   public UserActivityVisualElements VisualElements { get; }
  55. +   public IAsyncAction SaveAsync();
  56. +   public UserActivitySession CreateSession();
  57. + }
  58.  
  59. + public class Windows.ApplicationModel.UserActivities.UserActivityChannel {
  60. +   public IAsyncOperation<UserActivity> GetOrCreateUserActivityAsync( string operation );
  61. +   public IAsyncOperation<UserActivity> GetOrCreateUserActivityAsync( string operation, HostName activityId );
  62. +   public static UserActivityChannel GetDefault();
  63. + }
  64.  
  65. + public class Windows.ApplicationModel.UserActivities.UserActivitySession {
  66. +   public string ActivityId { get; }
  67. +   public void Close();
  68. + }
  69.  
  70. + public enum Windows.ApplicationModel.UserActivities.UserActivityState {
  71. +   New = 0,
  72. +   Published = 1,
  73. + }
  74.  
  75. + public class Windows.ApplicationModel.UserActivities.UserActivityVisualElements {
  76. +   public Uri ImageIcon { get; set; }
  77. +   public string DisplayText { get; set; }
  78. +   public string Description { get; set; }
  79. +   public ICardElement Content { get; set; }
  80. +   public Color BackgroundColor { get; set; }
  81. + }
  82.  
  83. + public class Windows.ApplicationModel.UserActivities.Core.CoreUserActivityManager {
  84. +   public static UserActivitySession CreateUserActivitySessionInBackground( UserActivity result );
  85. + }
  86.  
  87. | public class Windows.Media.Core.MseStreamSource {
  88. +   public IReference<MseTimeRange> LiveSeekableRange { get; set; }
  89. | }
  90.  
  91. + public class Windows.Media.Playback.MediaPlaybackSessionBufferingStartedEventArgs {
  92. +   public bool IsPlaybackInterruption { get; }
  93. + }
  94.  
  95. | public class Windows.Media.Playback.MediaPlayer {
  96. +   public bool RenderSubtitlesToSurface( IDirect3DSurface value );
  97. +   public bool RenderSubtitlesToSurface( IDirect3DSurface value, Rect destination );
  98. | }
  99.  
  100. | public class Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDiagnosticAvailableEventArgs {
  101. +   public HResult ExtendedError { get; }
  102. | }
  103.  
  104. | public enum Windows.Media.Streaming.Adaptive.AdaptiveMediaSourceDiagnosticType {
  105. +   FatalMediaSourceError = 8,
  106. | }
  107.  
  108. | public class Windows.Security.Authentication.Web.Provider.WebAccountManager {
  109. +   public static IAsyncAction InvalidateAppCacheAsync();
  110. +   public static IAsyncAction InvalidateAppCacheAsync( WebAccount asyncInfo );
  111. | }
  112.  
  113. + public class Windows.Storage.CloudStorage.CloudDataChangedEventArgs {
  114. +   public ulong Version { get; }
  115. + }
  116.  
  117. + public class Windows.Storage.CloudStorage.CloudDataManager {
  118. +   public CloudDataManager Current { get; }
  119. +   public IAsyncAction RegisterDataTypeSchemaAsync( CloudDataTypeSchema operation );
  120. +   public IAsyncOperation<CloudDataStore> RequestStoreAsync();
  121. +   public IAsyncOperation<CloudDataStore> RequestStoreAsync( WebAccount operation );
  122. +   public static CloudDataManager GetForUser( User result );
  123. + }
  124.  
  125. + public enum Windows.Storage.CloudStorage.CloudDataSerializationFormat {
  126. +   BondCompactBinary = 0,
  127. + }
  128.  
  129. + public class Windows.Storage.CloudStorage.CloudDataSnapshot {
  130. +   public string InstanceId { get; }
  131. +   public bool IsDefaultConstructed { get; }
  132. +   public CloudDataTypeSchema Schema { get; }
  133. +   public CloudDataStore Store { get; }
  134. +   public ulong Version { get; }
  135. +   public IBuffer GetSerializedValue( CloudDataSerializationFormat result );
  136. +   public IAsyncOperation<bool> SaveAsync( CloudDataSerializationFormat operation, IBuffer format );
  137. +   public IAsyncOperation<IBuffer> RefreshAsync( CloudDataSerializationFormat operation, IBuffer format );
  138. +   public IAsyncAction DeleteAsync();
  139. +   TypedEventHandler<CloudDataSnapshot, CloudDataChangedEventArgs> CloudDataChanged;
  140. + }
  141.  
  142. + public class Windows.Storage.CloudStorage.CloudDataStore {
  143. +   public WebAccount WebAccount { get; }
  144. +   public IAsyncAction SetRoamingEnabledForDataTypeAsync( string operation, bool typeName );
  145. +   public IAsyncOperation<bool> GetRoamingEnabledForDataTypeAsync( string operation );
  146. +   public IAsyncOperation<CloudDataSnapshot> LoadDataAsync( string operation );
  147. +   public IAsyncOperation<CloudDataSnapshot> LoadDataAsync( string operation, string typeName );
  148. +   public IAsyncAction ClearCacheAsync();
  149. + }
  150.  
  151. + public class Windows.Storage.CloudStorage.CloudDataTypeSchema {
  152. +   public string TypeName { get; }
  153. +   public CloudDataTypeSchema( string jsonString );
  154. +   public CloudDataTypeSchema( CloudDataSerializationFormat format, IBuffer buffer );
  155. +   public IBuffer SerializeJsonData( string buffer, CloudDataSerializationFormat value );
  156. +   public string DeserializeJsonData( CloudDataSerializationFormat value, IBuffer format );
  157. + }
  158.  
  159. - public class Windows.System.AccountInfo;
  160.  
  161. | public class Windows.System.AppDiagnosticInfo {
  162. -   public AccountInfo Account { get; }
  163. +   public ResourceGroupInfoWatcher CreateResourceGroupWatcher();
  164. -   public ResourceGroupInfoWatcher CreateResourceGroupInfoWatcher();
  165. -   public static IAsyncOperation<bool> TryApplyConfigurationAsync( string value, DiagnosticConfiguration packageFamilyName );
  166. -   public static IAsyncOperation<bool> TryApplyConfigurationForInstanceAsync( Guid value, DiagnosticConfiguration instanceId );
  167. | }
  168.  
  169. | public enum Windows.System.AppDiagnosticInfoWatcherStatus {
  170. +   Stopping = 3,
  171. *   Stopped = 4,
  172. +   Aborted = 5,
  173. | }
  174.  
  175. | public class Windows.System.BackgroundTaskReport {
  176. -   public ulong LifetimeLimit { get; }
  177. | }
  178.  
  179. - public class Windows.System.DiagnosticConfiguration;
  180.  
  181. | public enum Windows.System.DiagnosticPermission {
  182. +   Unspecified = 0,
  183. +   Limited = 1,
  184. -   Unknown = 0,
  185. -   Denied = 1,
  186. -   AllowedAll = 3,
  187. | }
  188.  
  189. - public enum Windows.System.ResourceGroupInfoChangeTypes;
  190.  
  191. | public class Windows.System.ResourceGroupInfoWatcher {
  192. -   public void SetFilter( ResourceGroupInfoChangeTypes filter );
  193. | }
  194.  
  195. + public class Windows.System.ResourceGroupInfoWatcherExecutionStateChangedEventArgs {
  196. +   public AppDiagnosticInfo AppDiagnosticInfo { get; }
  197. +   public ResourceGroupInfo ResourceGroupInfo { get; }
  198. + }
  199.  
  200. | public enum Windows.System.ResourceGroupInfoWatcherStatus {
  201. +   Stopping = 3,
  202. *   Stopped = 4,
  203. +   Aborted = 5,
  204. | }
  205.  
  206. - public class Windows.System.ResourceGroupInfoWatcherUpdatedEventArgs;
  207.  
  208. | public class Windows.System.StateReport {
  209. -   public bool IsForeground { get; }
  210. -   public IVectorView<SuspendExemptionState> SuspendExemptions { get; }
  211. | }
  212.  
  213. - public enum Windows.System.SuspendExemptionState;
  214.  
  215. | public class Windows.System.Diagnostics.ProcessDiagnosticInfo {
  216. +   public bool IsPackaged { get; }
  217. +   public AppDiagnosticInfo TryGetAppDiagnosticInfo();
  218. +   public static ProcessDiagnosticInfo TryGetForProcessId( uint process );
  219. | }
  220.  
  221. + public enum Windows.UI.Composition.CompositionDropShadowSourcePolicy {
  222. +   Default = 0,
  223. +   InheritFromVisualContent = 1,
  224. + }
  225.  
  226. | public class Windows.UI.Composition.DropShadow : Windows.UI.Composition.CompositionShadow {
  227. +   public CompositionDropShadowSourcePolicy SourcePolicy { get; set; }
  228. | }
  229.  
  230. + public class Windows.UI.ViewManagement.CoreInputView {
  231. +   public CoreOccludingInputViews OccludingInputViews { get; }
  232. +   public bool TryShowPrimaryView();
  233. +   public bool TryHidePrimaryView();
  234. +   public static CoreInputView GetForCurrentView();
  235. +   TypedEventHandler<CoreInputView, CoreInputViewOccludingInputViewsChangedEventArgs> OccludingInputViewsChanged;
  236. +   TypedEventHandler<CoreInputView, CoreInputViewFrameworkOccludingInputViewsChangedEventArgs> FrameworkOccludingInputViewsChanged;
  237. + }
  238.  
  239. + public class Windows.UI.ViewManagement.CoreInputViewFrameworkOccludingInputViewsChangedEventArgs {
  240. +   public bool Handled { get; }
  241. +   public CoreOccludingInputViews OccludingInputViews { get; }
  242. + }
  243.  
  244. + public class Windows.UI.ViewManagement.CoreInputViewOccludingInputViewsChangedEventArgs {
  245. +   public bool Handled { get; set; }
  246. +   public CoreOccludingInputViews OccludingInputViews { get; }
  247. + }
  248.  
  249. + public struct Windows.UI.ViewManagement.CoreOccludingInputView {
  250. +   public Rect occludingRect;
  251. +   public CoreOccludingInputViewType occludingType;
  252. + }
  253.  
  254. + public enum Windows.UI.ViewManagement.CoreOccludingInputViewType {
  255. +   Docked = 0,
  256. +   Floating = 1,
  257. +   Overlay = 2,
  258. + }
  259.  
  260. + public class Windows.UI.ViewManagement.CoreOccludingInputViews {
  261. +   public IIterator<CoreOccludingInputView> First();
  262. + }
  263.  
  264. | public class Windows.UI.ViewManagement.ViewModePreferences {
  265. +   public Size CustomMinSize { get; set; }
  266. +   public Size CustomMaxSize { get; set; }
  267. | }
  268.  
  269. + public class Windows.UI.WebUI.WebUIConsoleActivatedEventArgs {
  270. +   public ActivationKind Kind { get; }
  271. +   public ApplicationExecutionState PreviousExecutionState { get; }
  272. +   public SplashScreen SplashScreen { get; }
  273. +   public string Arguments { get; }
  274. +   public ActivatedOperation ActivatedOperation { get; }
  275. + }
  276.  
  277. | public enum Windows.UI.Xaml.Controls.Symbol {
  278. +   GlobalNavButton = 59136,
  279. +   Share = 59181,
  280. +   Print = 59209,
  281. +   XboxOneConsole = 59792,
  282. | }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement