Advertisement
h0x0d

Windows 10 14926 vs. 14915 WinRT API Changes

Sep 15th, 2016
654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 20.41 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new files: \wim\14926ent\Windows\System32\WinMetadata\*
  5.  old files: \wim\14915ent\Windows\System32\WinMetadata\*
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. + public enum Windows.ApplicationModel.ContentGroupRequestPriority {
  10. +   Default = 0,
  11. +   Highest = 1,
  12. + }
  13.  
  14. | public class Windows.ApplicationModel.Package {
  15. +   public IAsyncOperation<IVector<PackageContentGroup>> GetContentGroupsAsync();
  16. +   public IAsyncOperation<PackageContentGroup> GetContentGroupAsync( string operation );
  17. +   public IAsyncOperation<IVector<PackageContentGroup>> RequestContentGroupsAsync( IIterable<string> operation );
  18. +   public IAsyncOperation<IVector<PackageContentGroup>> RequestContentGroupsAsync( IIterable<string> operation, ContentGroupRequestPriority names );
  19. | }
  20.  
  21. + public class Windows.ApplicationModel.PackageContentGroup {
  22. +   public string Name { get; }
  23. +   public Package Package { get; }
  24. +   public PackageContentGroupState State { get; }
  25. +   public IAsyncOperation<bool> RequestAsync();
  26. +   public IAsyncOperation<bool> RequestAsync( ContentGroupRequestPriority action );
  27. + }
  28.  
  29. + public class Windows.ApplicationModel.PackageContentGroupStagingEventArgs {
  30. +   public Guid ActivityId { get; }
  31. +   public HResult ErrorCode { get; }
  32. +   public bool IsComplete { get; }
  33. +   public bool IsRequired { get; }
  34. +   public string Name { get; }
  35. +   public Package Package { get; }
  36. +   public double Progress { get; }
  37. + }
  38.  
  39. + public enum Windows.ApplicationModel.PackageContentGroupState {
  40. +   NotQueued = 0,
  41. +   Queued = 1,
  42. +   Processing = 2,
  43. +   Completed = 3,
  44. + }
  45.  
  46. | public class Windows.ApplicationModel.Activation.ToastNotificationActivatedEventArgs {
  47. +   public int CurrentlyShownApplicationViewId { get; }
  48. | }
  49.  
  50. | public class Windows.ApplicationModel.Background.AppBroadcastTrigger {
  51. +   public AppBroadcastTriggerProviderInfo ProviderInfo { get; set; }
  52. -   public string LogoUri { get; set; }
  53. -   public string DisplayName { get; set; }
  54. | }
  55.  
  56. + public class Windows.ApplicationModel.Background.AppBroadcastTriggerProviderInfo {
  57. +   public TimeSpan VideoKeyFrameInterval { get; set; }
  58. +   public uint MaxVideoWidth { get; set; }
  59. +   public uint MaxVideoHeight { get; set; }
  60. +   public uint MaxVideoBitrate { get; set; }
  61. +   public string LogoResource { get; set; }
  62. +   public string DisplayNameResource { get; set; }
  63. + }
  64.  
  65. | public class Windows.ApplicationModel.Contacts.ContactAnnotation {
  66. +   public string ContactListId { get; set; }
  67. | }
  68.  
  69. | public class Windows.ApplicationModel.Contacts.ContactAnnotationStore {
  70. +   public IAsyncOperation<IVectorView<ContactAnnotation>> FindAnnotationsForContactListAsync( string annotations );
  71. | }
  72.  
  73. | public class Windows.ApplicationModel.Contacts.ContactGroup {
  74. +   public bool CanShowEditGroupDetails { get; set; }
  75. -   public bool CanShowEditGroup { get; set; }
  76. +   public IAsyncAction ShowGroupDetailsAsync();
  77. +   public IAsyncAction ShowEditGroupDetailsAsync();
  78. +   public IAsyncAction ShowEditGroupMembersAsync();
  79. | }
  80.  
  81. | public class Windows.Devices.Bluetooth.BluetoothDevice {
  82. -   public IAsyncOperation<GattDeviceServicesResult> GetGattServicesAsync();
  83. -   public IAsyncOperation<GattDeviceServicesResult> GetGattServicesAsync( BluetoothCacheMode asyncOp );
  84. -   public IAsyncOperation<GattDeviceServicesResult> GetGattServicesForUuidAsync( GattUuid asyncOp );
  85. -   public IAsyncOperation<GattDeviceServicesResult> GetGattServicesForUuidAsync( GattUuid asyncOp, BluetoothCacheMode serviceUuid );
  86. | }
  87.  
  88. | public class Windows.Devices.Bluetooth.BluetoothLEDevice {
  89. -   public static string GetDeviceSelectorFromAdvertisementTargetAddress( ulong deviceSelector );
  90. -   public static string GetDeviceSelectorFromAdverisementServiceUuid( GattUuid deviceSelector );
  91. | }
  92.  
  93. + public class Windows.Devices.Bluetooth.Background.GattServiceProviderBackgroundInfo {
  94. +   public IVectorView<GattLocalCharacteristic> Characteristics { get; }
  95. +   public string Id { get; }
  96. +   public IVectorView<GattPublishedService> IncludedServices { get; }
  97. +   public GattServiceProviderStatus Status { get; }
  98. +   public Guid TaskId { get; }
  99. +   public BluetoothTransportOptions TransportOptions { get; }
  100. +   public GattServiceType Type { get; }
  101. +   public Guid Uuid { get; }
  102. +   public IMapView<string, GattServiceProviderBackgroundInfo> AllServices { get; }
  103. + }
  104.  
  105. | public class Windows.Devices.Bluetooth.Background.GattServiceProviderTriggerDetails {
  106. +   public GattServiceProviderBackgroundInfo ServiceInfo { get; }
  107. -   public GattServiceProvider Service { get; }
  108. -   public Guid TaskId { get; }
  109. | }
  110.  
  111. | public class Windows.Devices.Bluetooth.GenericAttributeProfile.GattPublishedService {
  112. -   public string Id { get; }
  113. +   public static IAsyncOperation<IVectorView<GattPublishedService>> GetPublishedServicesAsync( GattUuid asyncOp );
  114. +   public static IAsyncOperation<IVectorView<GattPublishedService>> GetPublishedServicesAsync( GattUuid asyncOp, BluetoothTransportOptions gattUuid );
  115. +   public static IAsyncOperation<IVectorView<GattPublishedService>> GetPublishedServicesForCurrentPackageAsync( GattUuid asyncOp );
  116. +   public static IAsyncOperation<IVectorView<GattPublishedService>> GetPublishedServicesForCurrentPackageAsync( GattUuid asyncOp, BluetoothTransportOptions gattUuid );
  117. -   public static string GetDeviceSelector( GattUuid selectorString );
  118. -   public static string GetDeviceSelector( GattUuid selectorString, BluetoothTransportOptions gattUuid );
  119. -   public static string GetDeviceSelectorForCurrentPackage( GattUuid selectorString );
  120. -   public static string GetDeviceSelectorForCurrentPackage( GattUuid selectorString, BluetoothTransportOptions gattUuid );
  121. -   public static IAsyncOperation<GattPublishedService> FromIdAsync( string asyncOp );
  122. | }
  123.  
  124. | public class Windows.Devices.Bluetooth.GenericAttributeProfile.GattServiceProvider {
  125. -   public IMapView<string, GattServiceProvider> BackgroundServices { get; }
  126. -   public void StartAdvertisingInBackground( string serviceId );
  127. -   public void StartAdvertisingInBackground( string serviceId, GattServiceProviderAdvertisingParameters parameters );
  128. | }
  129.  
  130. | public class Windows.Devices.Bluetooth.GenericAttributeProfile.GattServiceProviderAdvertisingParameters {
  131. +   public bool MakeConnectable { get; set; }
  132. | }
  133.  
  134. | public enum Windows.Devices.Bluetooth.GenericAttributeProfile.GattServiceProviderStatus {
  135. +   Stopped = 0,
  136. +   Started = 1,
  137. +   StartedAndAdvertising = 2,
  138. -   Created = 0,
  139. -   Added = 1,
  140. -   Removed = 2,
  141. -   AddedAndAdvertising = 3,
  142. | }
  143.  
  144. | public enum Windows.Management.Deployment.DeploymentOptions {
  145. +   EnableStreamedInstall = 128,
  146. +   RequiredContentGroupOnly = 256,
  147. | }
  148.  
  149. + public struct Windows.Media.MediaTimeRange {
  150. +   public TimeSpan Start;
  151. +   public TimeSpan End;
  152. + }
  153.  
  154. | public class Windows.Media.Capture.AppBroadcastBackgroundService {
  155. +   public uint ViewerCount { get; set; }
  156. +   public AppBroadcastBackgroundServiceStreamInfo StreamInfo { get; set; }
  157. +   public AppBroadcastBackgroundServiceSignInInfo SignInInfo { get; set; }
  158. -   public string UserName { get; set; }
  159. -   public string ProviderLogoUri { get; set; }
  160. -   public ulong DesiredVideoEncodingBitrate { get; set; }
  161. -   public ulong BandwidthTestBitrate { get; set; }
  162. -   public string AppTitle { get; }
  163. -   public AppBroadcastState BroadcastState { get; }
  164. -   public AppBroadcastStreamReader BroadcastStreamReader { get; }
  165. -   public AppBroadcastSignInState SignInState { get; }
  166. +   public void TerminateBroadcast( AppBroadcastTerminationReason reason, uint providerSpecificReason );
  167. -   public void CancelBroadcast( AppBroadcastCancelReason reason, uint providerSpecificReason );
  168. | }
  169.  
  170. + public class Windows.Media.Capture.AppBroadcastBackgroundServiceSignInInfo {
  171. +   public string UserName { get; set; }
  172. +   public Uri OAuthRequestUri { get; set; }
  173. +   public Uri OAuthCallbackUri { get; set; }
  174. +   public WebAuthenticationResult AuthenticationResult { get; }
  175. +   public AppBroadcastSignInState SignInState { get; }
  176. +   TypedEventHandler<AppBroadcastBackgroundServiceSignInInfo, AppBroadcastSignInStateChangedEventArgs> SignInStateChanged;
  177. + }
  178.  
  179. + public class Windows.Media.Capture.AppBroadcastBackgroundServiceStreamInfo {
  180. +   public ulong DesiredVideoEncodingBitrate { get; set; }
  181. +   public ulong BandwidthTestBitrate { get; set; }
  182. +   public AppBroadcastStreamReader BroadcastStreamReader { get; }
  183. +   public AppBroadcastStreamState StreamState { get; }
  184. +   TypedEventHandler<AppBroadcastBackgroundServiceStreamInfo, AppBroadcastStreamStateChangedEventArgs> StreamStateChanged;
  185. +   TypedEventHandler<AppBroadcastBackgroundServiceStreamInfo, object> VideoEncodingBitrateChanged;
  186. +   TypedEventHandler<AppBroadcastBackgroundServiceStreamInfo, object> VideoEncodingResolutionChanged;
  187. + }
  188.  
  189. - public enum Windows.Media.Capture.AppBroadcastCancelReason;
  190.  
  191. | public enum Windows.Media.Capture.AppBroadcastPlugInState {
  192. +   OAuthSignInRequired = 3,
  193. *   ProviderSignInRequired = 4,
  194. *   InBandwidthTest = 5,
  195. *   ReadyToBroadcast = 6,
  196. | }
  197.  
  198. | public enum Windows.Media.Capture.AppBroadcastSignInState {
  199. +   OAuthSignInInProgress = 3,
  200. +   OAuthSignInComplete = 4,
  201. -   ProviderSignInInProgress = 3,
  202. -   ProviderSignInComplete = 4,
  203. | }
  204.  
  205. - public enum Windows.Media.Capture.AppBroadcastState;
  206.  
  207. - public class Windows.Media.Capture.AppBroadcastStateChangedEventArgs;
  208.  
  209. + public enum Windows.Media.Capture.AppBroadcastStreamState {
  210. +   Initializing = 0,
  211. +   StreamReady = 1,
  212. +   Started = 2,
  213. +   Paused = 3,
  214. +   Terminated = 4,
  215. + }
  216.  
  217. + public class Windows.Media.Capture.AppBroadcastStreamStateChangedEventArgs {
  218. +   public AppBroadcastStreamState StreamState { get; }
  219. + }
  220.  
  221. + public enum Windows.Media.Capture.AppBroadcastTerminationReason {
  222. +   NormalTermination = 0,
  223. +   LostConnectionToService = 1,
  224. +   NoNetworkConnectivity = 2,
  225. +   ServiceAbort = 3,
  226. +   ServiceError = 4,
  227. +   ServiceUnavailable = 5,
  228. +   InternalError = 6,
  229. +   UnsupportedFormat = 7,
  230. +   BackgroundTaskTerminated = 8,
  231. +   BackgroundTaskUnresponsive = 9,
  232. + }
  233.  
  234. | public class Windows.Media.Capture.MediaCaptureInitializationSettings {
  235. +   public bool AlwaysPlaySystemShutterSound { get; set; }
  236. | }
  237.  
  238. | public class Windows.Media.MediaProperties.MediaEncodingSubtypes {
  239. +   public string L16 { get; }
  240. +   public string L8 { get; }
  241. +   public string Vp9 { get; }
  242. +   public string D16 { get; }
  243. | }
  244.  
  245. + public enum Windows.Media.MediaProperties.SphericalVideoFrameFormat {
  246. +   None = 0,
  247. +   Unsupported = 1,
  248. +   Equirectangular = 2,
  249. + }
  250.  
  251. | public class Windows.Media.MediaProperties.VideoEncodingProperties {
  252. +   public SphericalVideoFrameFormat SphericalVideoFrameFormat { get; }
  253. | }
  254.  
  255. | public class Windows.Media.Playback.MediaPlaybackSession {
  256. +   public bool IsMirroring { get; set; }
  257. +   public MediaPlaybackSphericalVideoProjection SphericalVideoProjection { get; }
  258. +   public IVectorView<MediaTimeRange> GetBufferedRanges();
  259. +   public IVectorView<MediaTimeRange> GetPlayedRanges();
  260. +   public IVectorView<MediaTimeRange> GetSeekableRanges();
  261. | }
  262.  
  263. + public class Windows.Media.Playback.MediaPlaybackSphericalVideoProjection {
  264. +   public Quaternion ViewOrientation { get; set; }
  265. +   public bool IsEnabled { get; set; }
  266. +   public double HorizontalFieldOfViewInDegrees { get; set; }
  267. +   public SphericalVideoFrameFormat FrameFormat { get; set; }
  268. + }
  269.  
  270. | internal interface Windows.Media.Protection.PlayReady.IPlayReadyLicense2 {
  271. +   public bool InMemoryOnly { get; }
  272. +   public bool RealTimeExpires { get; }
  273. -   public bool HasRealTimeExpiration { get; }
  274. -   public bool IsInMemoryOnly { get; }
  275. | }
  276.  
  277. | public interface Windows.Media.Protection.PlayReady.IPlayReadyLicenseSession2 {
  278. +   public PlayReadyLicenseIterable CreateLicenseIterable( PlayReadyContentHeader licenseIterable, bool contentHeader );
  279. | }
  280.  
  281. | public class Windows.Media.Protection.PlayReady.PlayReadyLicense {
  282. +   public bool InMemoryOnly { get; }
  283. +   public bool RealTimeExpires { get; }
  284. -   public bool HasRealTimeExpiration { get; }
  285. -   public bool IsInMemoryOnly { get; }
  286. | }
  287.  
  288. | public class Windows.Media.Protection.PlayReady.PlayReadyLicenseSession {
  289. +   public PlayReadyLicenseIterable CreateLicenseIterable( PlayReadyContentHeader licenseIterable, bool contentHeader );
  290. | }
  291.  
  292. + public class Windows.Services.Maps.EnhancedWaypoint {
  293. +   public WaypointKind Kind { get; }
  294. +   public Geopoint Point { get; }
  295. +   public EnhancedWaypoint( Geopoint point, WaypointKind kind );
  296. + }
  297.  
  298. | public class Windows.Services.Maps.MapRouteFinder {
  299. +   public static IAsyncOperation<MapRouteFinderResult> GetDrivingRouteFromEnhancedWaypointsAsync( IIterable<EnhancedWaypoint> result );
  300. +   public static IAsyncOperation<MapRouteFinderResult> GetDrivingRouteFromEnhancedWaypointsAsync( IIterable<EnhancedWaypoint> result, MapRouteDrivingOptions waypoints );
  301. | }
  302.  
  303. + public enum Windows.Services.Maps.WaypointKind {
  304. +   Stop = 0,
  305. +   Via = 1,
  306. + }
  307.  
  308. + public class Windows.Services.TargetedContent.TargetedContentAction {
  309. +   public IAsyncAction InvokeAsync();
  310. + }
  311.  
  312. + public enum Windows.Services.TargetedContent.TargetedContentAppInstallationState {
  313. +   NotApplicable = 0,
  314. +   NotInstalled = 1,
  315. +   Installed = 2,
  316. + }
  317.  
  318. + public enum Windows.Services.TargetedContent.TargetedContentAvailability {
  319. +   None = 0,
  320. +   Partial = 1,
  321. +   All = 2,
  322. + }
  323.  
  324. + public class Windows.Services.TargetedContent.TargetedContentAvailabilityChangedEventArgs {
  325. +   public Deferral GetDeferral();
  326. + }
  327.  
  328. + public class Windows.Services.TargetedContent.TargetedContentChangedEventArgs {
  329. +   public bool PreviousContentExpired { get; }
  330. +   public Deferral GetDeferral();
  331. + }
  332.  
  333. + public class Windows.Services.TargetedContent.TargetedContentCollection {
  334. +   public IVectorView<TargetedContentCollection> Collections { get; }
  335. +   public IVectorView<TargetedContentItem> Items { get; }
  336. +   public string Name { get; }
  337. +   public IMapView<string, TargetedContentValue> Properties { get; }
  338. +   public void ReportInteraction( TargetedContentInteraction interaction );
  339. +   public void ReportCustomInteraction( string customInteractionName );
  340. + }
  341.  
  342. + public class Windows.Services.TargetedContent.TargetedContentContainer {
  343. +   public TargetedContentAvailability Availability { get; }
  344. +   public TargetedContentCollection Content { get; }
  345. +   public string Id { get; }
  346. +   public bool ReportImpressionForExperimentation { get; }
  347. +   public IVectorView<string> Tags { get; }
  348. +   public TargetedContentObject ObjectFromPath( string value );
  349. + }
  350.  
  351. + public struct Windows.Services.TargetedContent.TargetedContentContract {
  352. + }
  353.  
  354. + public class Windows.Services.TargetedContent.TargetedContentFile {
  355. +   public IAsyncOperation<IRandomAccessStreamWithContentType> OpenReadAsync();
  356. + }
  357.  
  358. + public class Windows.Services.TargetedContent.TargetedContentImage {
  359. +   public uint Height { get; }
  360. +   public uint Width { get; }
  361. +   public IAsyncOperation<IRandomAccessStreamWithContentType> OpenReadAsync();
  362. + }
  363.  
  364. + public enum Windows.Services.TargetedContent.TargetedContentInteraction {
  365. +   Impression = 0,
  366. +   Clickthrough = 1,
  367. +   Hover = 2,
  368. +   PositiveFeedback = 3,
  369. +   NegativeFeedback = 4,
  370. +   Dismiss = 5,
  371. +   Ineligible = 6,
  372. +   Accept = 7,
  373. +   Decline = 8,
  374. +   Defer = 9,
  375. + }
  376.  
  377. + public class Windows.Services.TargetedContent.TargetedContentItem {
  378. +   public IVectorView<TargetedContentCollection> Collections { get; }
  379. +   public IMapView<string, TargetedContentValue> Properties { get; }
  380. +   public TargetedContentItemState State { get; }
  381. +   public void ReportInteraction( TargetedContentInteraction interaction );
  382. +   public void ReportCustomInteraction( string customInteractionName );
  383. + }
  384.  
  385. + public class Windows.Services.TargetedContent.TargetedContentItemState {
  386. +   public TargetedContentAppInstallationState AppInstallationState { get; }
  387. +   public bool ShouldDisplay { get; }
  388. + }
  389.  
  390. + public class Windows.Services.TargetedContent.TargetedContentObject {
  391. +   public TargetedContentCollection Collection { get; }
  392. +   public TargetedContentItem Item { get; }
  393. +   public TargetedContentObjectType ObjectType { get; }
  394. +   public TargetedContentValue Value { get; }
  395. + }
  396.  
  397. + public enum Windows.Services.TargetedContent.TargetedContentObjectType {
  398. +   Collection = 0,
  399. +   Item = 1,
  400. +   Property = 2,
  401. + }
  402.  
  403. + public class Windows.Services.TargetedContent.TargetedContentStateChangedEventArgs {
  404. +   public Deferral GetDeferral();
  405. + }
  406.  
  407. + public class Windows.Services.TargetedContent.TargetedContentSubscription {
  408. +   public string Id { get; }
  409. +   public IAsyncOperation<TargetedContentContainer> GetContentContainerAsync();
  410. +   TypedEventHandler<TargetedContentSubscription, TargetedContentAvailabilityChangedEventArgs> AvailabilityChanged;
  411. +   TypedEventHandler<TargetedContentSubscription, TargetedContentChangedEventArgs> ContentChanged;
  412. +   TypedEventHandler<TargetedContentSubscription, TargetedContentStateChangedEventArgs> StateChanged;
  413. + }
  414.  
  415. + public class Windows.Services.TargetedContent.TargetedContentSubscriptionOptions {
  416. +   public bool AllowPartialContentAvailability { get; set; }
  417. +   public IVector<string> EligibleContentTags { get; }
  418. +   public IMap<string, string> TargetingContext { get; }
  419. + }
  420.  
  421. + public class Windows.Services.TargetedContent.TargetedContentValue {
  422. +   public TargetedContentAction Action { get; }
  423. +   public bool Boolean { get; }
  424. +   public TargetedContentFile File { get; }
  425. +   public TargetedContentImage Image { get; }
  426. +   public double Number { get; }
  427. +   public string String { get; }
  428. +   public Uri Uri { get; }
  429. +   public TargetedContentValueType ValueType { get; }
  430. + }
  431.  
  432. + public enum Windows.Services.TargetedContent.TargetedContentValueType {
  433. +   String = 0,
  434. +   Uri = 1,
  435. +   Number = 2,
  436. +   Boolean = 3,
  437. +   File = 4,
  438. +   ImageFile = 5,
  439. +   Action = 6,
  440. + }
  441.  
  442. + public class Windows.System.Profile.EducationSettings {
  443. +   public bool IsEducationEnvironment { get; }
  444. + }
  445.  
  446. | public class Windows.UI.Composition.CompositionGraphicsDevice : Windows.UI.Composition.CompositionObject {
  447. +   public CompositionVirtualDrawingSurface CreateVirtualDrawingSurface( Size result, DirectXPixelFormat sizePixels, DirectXAlphaMode pixelFormat );
  448. | }
  449.  
  450. + public class Windows.UI.Composition.CompositionVirtualDrawingSurface : Windows.UI.Composition.CompositionDrawingSurface {
  451. + }
  452.  
  453. | public class Windows.UI.Composition.CompositionVisualSurface : Windows.UI.Composition.CompositionObject {
  454. +   public CompositionStretch Stretch { get; set; }
  455. | }
  456.  
  457. | public class Windows.UI.Input.Inking.InkPresenterRuler {
  458. +   public bool IsCompassVisible { get; set; }
  459. +   public bool AreTickMarksVisible { get; set; }
  460. | }
  461.  
  462. | public class Windows.UI.Xaml.FrameworkElement : Windows.UI.Xaml.UIElement {
  463. +   public static void DeferTree( DependencyObject element );
  464. | }
  465.  
  466. | public class Windows.UI.Xaml.Controls.ContentDialog : Windows.UI.Xaml.Controls.ContentControl {
  467. +   public Style SecondaryButtonStyle { get; set; }
  468. +   public Style TertiaryButtonStyle { get; set; }
  469. +   public object TertiaryButtonCommandParameter { get; set; }
  470. +   public ICommand TertiaryButtonCommand { get; set; }
  471. +   public string TertiaryButtonText { get; set; }
  472. +   public Style PrimaryButtonStyle { get; set; }
  473. +   public bool IsTertiaryButtonEnabled { get; set; }
  474. +   public DependencyProperty IsTertiaryButtonEnabledProperty { get; }
  475. +   public DependencyProperty PrimaryButtonStyleProperty { get; }
  476. +   public DependencyProperty SecondaryButtonStyleProperty { get; }
  477. +   public DependencyProperty TertiaryButtonCommandParameterProperty { get; }
  478. +   public DependencyProperty TertiaryButtonCommandProperty { get; }
  479. +   public DependencyProperty TertiaryButtonStyleProperty { get; }
  480. +   public DependencyProperty TertiaryButtonTextProperty { get; }
  481. | }
  482.  
  483. | public enum Windows.UI.Xaml.Controls.ContentDialogResult {
  484. +   Tertiary = 3,
  485. | }
  486.  
  487. | public class Windows.UI.Xaml.Controls.Control : Windows.UI.Xaml.FrameworkElement {
  488. +   public Uri DefaultStyleResourceUri { get; set; }
  489. +   public DependencyProperty DefaultStyleResourceUriProperty { get; }
  490. | }
  491.  
  492. | public class Windows.UI.Xaml.Controls.FocusEngagedEventArgs : Windows.UI.Xaml.RoutedEventArgs {
  493. +   public bool Handled { get; set; }
  494. | }
  495.  
  496. | public class Windows.UI.Xaml.Controls.InkToolbar : Windows.UI.Xaml.Controls.Control {
  497. +   public FlyoutPlacementMode ButtonDirection { get; set; }
  498. +   public DependencyProperty ButtonDirectionProperty { get; }
  499. | }
  500.  
  501. | public class Windows.UI.Xaml.Controls.Maps.MapControl : Windows.UI.Xaml.Controls.Control {
  502. | }
  503.  
  504. + public class Windows.UI.Xaml.Controls.Maps.MapElementContextRequestedEventArgs {
  505. +   public Geopoint Location { get; }
  506. +   public IVectorView<MapElement> MapElements { get; }
  507. +   public Point Position { get; }
  508. +   public MapElementContextRequestedEventArgs();
  509. + }
  510.  
  511. - public class Windows.UI.Xaml.Controls.Maps.MapElementRightClickEventArgs;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement