Skip to content

Commit e6d6a5f

Browse files
Address second round of Copilot review feedback on PR #6618
- push-quickstart.md: Bump ms.date to 04/09/2026 - wns-overview.md: Bump ms.date to 04/09/2026 - wns-overview.md: Add NOTE to 'Requesting a notification channel' section clarifying it covers UWP CreatePushNotificationChannelForApplicationAsync; WAS desktop apps should use PushNotificationManager per the quickstart Co-authored-by: Copilot <[email protected]>
1 parent f256745 commit e6d6a5f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

hub/apps/develop/notifications/push-notifications/push-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Quickstart Push notifications in the Windows App SDK
33
description: Send push notifications using the Windows App SDK
44
ms.topic: quickstart
5-
ms.date: 07/14/2025
5+
ms.date: 04/09/2026
66
keywords: push, notification
77
ms.localizationpriority: medium
88
ms.custom:

hub/apps/develop/notifications/push-notifications/wns-overview.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: The Windows Push Notification Services (WNS) enables third-party de
33
title: Windows Push Notification Services (WNS) overview
44
ms.assetid: 2125B09F-DB90-4515-9AA6-516C7E9ACCCD
55
template: detail.hbs
6-
ms.date: 11/27/2024
6+
ms.date: 04/09/2026
77
ms.topic: article
88
keywords: windows 10, uwp
99
ms.localizationpriority: medium
@@ -32,6 +32,9 @@ Before you can send notifications using WNS, your app must be registered with th
3232

3333
## Requesting a notification channel
3434

35+
> [!NOTE]
36+
> The channel-request guidance in this section applies to UWP apps that use [**CreatePushNotificationChannelForApplicationAsync**](/uwp/api/Windows.Networking.PushNotifications.PushNotificationChannelManager#Windows_Networking_PushNotifications_PushNotificationChannelManager_CreatePushNotificationChannelForApplicationAsync_System_String_). If you're building a Windows App SDK desktop app (WinUI 3, WPF, or WinForms), use `PushNotificationManager` instead — see the [Push notifications quickstart](push-quickstart.md).
37+
3538
When an app that is capable of receiving push notifications runs, it must first request a notification channel through the [**CreatePushNotificationChannelForApplicationAsync**](/uwp/api/Windows.Networking.PushNotifications.PushNotificationChannelManager#Windows_Networking_PushNotifications_PushNotificationChannelManager_CreatePushNotificationChannelForApplicationAsync_System_String_). For a full discussion and example code, see [How to request, create, and save a notification channel](request-create-save-notification-channel.md). This API returns a channel URI that is uniquely linked to the calling application and its tile, and through which all notification types can be sent.
3639

3740
After the app has successfully created a channel URI, it sends it to its cloud service, together with any app-specific metadata that should be associated with this URI.

0 commit comments

Comments
 (0)