Skip to content

Commit f7336e4

Browse files
Update push-notifications-windows.md
1 parent 94cec06 commit f7336e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ ms.author: jsaurezlee
99

1010
## Set up push notifications
1111

12-
A push notification is the pop-up notification that you get in the in your device. For calling, we'll focus on VoIP (voice over Internet Protocol) push notifications.
12+
A push notification is the pop-up notification that you get in your device. For calling, we'll focus on VoIP (voice over Internet Protocol) push notifications.
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 will 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 this you have:
1717
1. An application that has the `WindowsAzure.Messaging.Managed` and `Microsoft.Toolkit.Uwp.Notifications` packages.
18-
2. A 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 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. Make sure you have added the initialization code on your App.xaml.cs file to register for a WNS channel on every application init:
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:
2121

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

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

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

0 commit comments

Comments
 (0)