Skip to content

Commit 7cfd93d

Browse files
Update push-notifications-windows.md
1 parent f7336e4 commit 7cfd93d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/communication-services/how-tos/calling-sdk/includes/push-notifications/push-notifications-windows.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ A push notification is the pop-up notification that you get in your device. For
1313

1414
The following sections describe how to register for, handle, and show a Windows notification to answer/decline an incoming call. Before you start those tasks, complete these prerequisites:
1515

16-
1. Follow [Tutorial: Send notifications to Universal Windows Platform apps using Azure Notification Hubs](/azure/notification-hubs/notification-hubs-windows-store-dotnet-get-started-wns-push-notification). After this you have:
16+
1. Follow [Tutorial: Send notifications to Universal Windows Platform apps using Azure Notification Hubs](/azure/notification-hubs/notification-hubs-windows-store-dotnet-get-started-wns-push-notification). After following this tutorial you have:
1717
1. An application that has the `WindowsAzure.Messaging.Managed` and `Microsoft.Toolkit.Uwp.Notifications` packages.
18-
2. An Azure PNH Hub name referenced as `<AZURE_PNH_HUB_NAME>` and the Azure PNH Connection String referenced as `<AZURE_PNH_HUB_CONNECTION_STRING>` in this quickstart.
18+
2. An Azure PNH (Push Notifications Hub) Hub name referenced as `<AZURE_PNH_HUB_NAME>` and the Azure PNH Connection String referenced as `<AZURE_PNH_HUB_CONNECTION_STRING>` in this quickstart.
1919

20-
2. To register for a WNS channel on every application init, Make sure you have added the initialization code on your App.xaml.cs file:
20+
2. To register for a WNS (Windows Notification Service) channel on every application init, make sure you add the initialization code on your App.xaml.cs file:
2121

2222
```C#
2323
// App.xaml.cs
@@ -118,7 +118,7 @@ public async Task HandlePushNotificationIncomingCallAsync(string notificationCon
118118
}
119119
```
120120

121-
This triggers a incoming call event on CallAgent that will show the incoming call notification.
121+
This triggers an incoming call event on CallAgent that shows the incoming call notification.
122122

123123
```C#
124124
// MainPage.xaml.cs

0 commit comments

Comments
 (0)