Skip to content

Commit e0727e7

Browse files
Steven WhiteSteven White
Steven White
authored and
Steven White
committed
Merged PR 18407: last of the desktop app notes for this class of APIs for the moment
last of the desktop app notes for this class of APIs for the moment
1 parent 5534795 commit e0727e7

File tree

10 files changed

+23
-6
lines changed

10 files changed

+23
-6
lines changed

windows.applicationmodel.contacts/pinnedcontactmanager.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public class PinnedContactManager
1212
## -description
1313
Represents a service that source apps can call to pin and unpin contacts to and from the taskbar or **Start** menu.
1414

15+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
16+
1517
## -remarks
1618

1719
## -see-also

windows.applicationmodel.payments/paymentmediator.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public class PaymentMediator : Windows.ApplicationModel.Payments.IPaymentMediato
1212
## -description
1313
This class is used to submit payment requests.
1414

15+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
16+
1517
## -remarks
1618

1719
### Version history

windows.media.casting/castingdevicepicker.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ public class CastingDevicePicker : Windows.Media.Casting.ICastingDevicePicker
1313
## -description
1414
Represents a device picker that contains a list of casting devices for the user to choose from.
1515

16+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
17+
1618
## -remarks
1719

1820
## -examples

windows.media.dialprotocol/dialdevicepicker.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ public class DialDevicePicker : Windows.Media.DialProtocol.IDialDevicePicker
1313
## -description
1414
Represents a picker flyout that contains a list of remote devices for the user to choose from.
1515

16+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
17+
1618
## -remarks
1719

1820
## -examples

windows.networking.networkoperators/provisioningagent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ public class ProvisioningAgent : Windows.Networking.NetworkOperators.IProvisioni
1313
## -description
1414
Represents an agent that provisions connectivity and subscription information with a network provider.
1515

16-
> [!NOTE]
17-
> This functionality is only available to mobile operator apps and UWP apps given privileged access by mobile network operators.
18-
16+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
1917

18+
> [!NOTE]
19+
> This functionality is available only to mobile operator apps and UWP apps given privileged access by mobile network operators.
2020
21-
> If you want to use this API and publish your app to the Store, you will need special approval. For more information, see the **Special and restricted capabilities** section under [App capability declarations](/windows/uwp/packaging/app-capability-declarations).
21+
> If you want to use this API and publish your app to the Microsoft Store, then you'll need special approval. For more information, see the **Special and restricted capabilities** section under [App capability declarations](/windows/uwp/packaging/app-capability-declarations).
2222
2323
## -remarks
2424

windows.security.authentication.onlineid/onlineidauthenticator.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ public class OnlineIdAuthenticator : Windows.Security.Authentication.OnlineId.IO
1212
## -description
1313
Provides an app with the ability to start the authentication request to get JavaScript Object Notation (JSON) tokens to use with your service or request tickets that can be used to get data that the user has consented to for your app using the Live ConnectAPI.
1414

15+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
16+
1517
> [!NOTE]
16-
> If you are developing for Windows 10 or greater, use the [Windows.Security.Authentication.Web.Core](../windows.security.authentication.web.core/windows_security_authentication_web_core.md) APIs instead. For more information, see [Web account manager](/windows/uwp/security/web-account-manager).
18+
> If you're developing for Windows 10 or later, use the [Windows.Security.Authentication.Web.Core](../windows.security.authentication.web.core/windows_security_authentication_web_core.md) APIs instead. For more information, see [Web account manager](/windows/uwp/security/web-account-manager).
1719
1820
## -remarks
1921

20-
2122
## -examples
2223
The following example shows how to handle a user authentication request.
2324

windows.system/folderlauncheroptions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ public class FolderLauncherOptions : Windows.System.IFolderLauncherOptions, Wind
1313
## -description
1414
Specifies the options to use when launching File Explorer to display the contents of a specific folder by calling the [LaunchFolderAsync(IStorageFolder, FolderLauncherOptions)](launcher_launchfolderasync_1551340761.md) method.
1515

16+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
17+
1618
## -remarks
1719

1820
## -examples

windows.system/launcheroptions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ public class LauncherOptions : Windows.System.ILauncherOptions, Windows.System.I
1313

1414
Specifies the options used to launch the default app for a file or URI.
1515

16+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
17+
1618
## -remarks
1719

1820
### Version history

windows.ui.core/corewindowdialog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public class CoreWindowDialog : Windows.UI.Core.ICoreWindowDialog
1212
## -description
1313
Defines a child dialog of an app window.
1414

15+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
16+
1517
## -remarks
1618

1719
<!-- confirmed -->

windows.ui.core/corewindowflyout.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ public class CoreWindowFlyout : Windows.UI.Core.ICoreWindowFlyout
1212
## -description
1313
Defines a child flyout of an app window.
1414

15+
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see [Display WinRT UI objects that depend on CoreWindow](/windows/apps/develop/ui-input/display-ui-objects#winui-3-with-c).
16+
1517
## -remarks
1618

1719
<!-- confirmed -->

0 commit comments

Comments
 (0)