diff --git a/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md b/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md index 3a775e2bb9..4d16e7b5d1 100644 --- a/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md +++ b/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md @@ -23,8 +23,8 @@ Push notifications can be broken down into these four separate stages. | Stage | UWP | Windows App SDK| |--------|-----|----------------| | Identity | Partner Center (MSA) | Azure App Registration (AAD) | -| Channel request | Synchronous| Asynchronous
Azure App Registration Id
Azure Tenant Id
Retry logic built in (up to 5 retries) | -| Activation | In-process, PushTrigger\*, COM activation\* | In-process, COM activation | +| Channel request | Asynchronous| Asynchronous
Azure App Registration Id
Retry logic built in (up to 5 retries) | +| Activation | In-process, PushTrigger\*, COM activation\* | In-process, COM activation, ShellExecute | | Sending push notifications | Uses login.live.com endpoint to receive an access token | Uses the `https://login.microsoftonline.com/{tenantID}/oauth2/token` endpoint for token request | \* Supported for Windows 10, version 2004 (10.0; Build 19041), and later. @@ -88,4 +88,4 @@ Authorization: Bearer [your access token] Content-Length: 46 { Sync: "Hello from the Contoso App Service" } -``` \ No newline at end of file +```