Skip to content

Commit 10953a8

Browse files
committed
fix formatting
1 parent 1291a33 commit 10953a8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

includes/notification-hubs-enable-apple-push-notifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To be able to send push notifications to an iOS app, you must register your appl
6565

6666
![Create certificate for App ID button](./media/notification-hubs-enable-apple-push-notifications/notification-hubs-appid-create-cert.png)
6767

68-
You see the **Add iOS Certificate**"** assistant.
68+
You see the **Add iOS Certificate** assistant.
6969

7070
> [!NOTE]
7171
> This tutorial uses a development certificate. The same process is used when registering a production certificate. Just make sure that you use the same certificate type when sending notifications.

includes/notification-hubs-localized-back-end.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
ms.custom: include file
1111
---
1212

13-
1413
When you send template notifications, you only need to provide a set of properties. In this scenario, the set of properties contain the localized version of the current news.
1514

16-
{
17-
"News_English": "World News in English!",
18-
"News_French": "World News in French!",
19-
"News_Mandarin": "World News in Mandarin!"
20-
}
21-
22-
15+
```json
16+
{
17+
"News_English": "World News in English!",
18+
"News_French": "World News in French!",
19+
"News_Mandarin": "World News in Mandarin!"
20+
}
21+
```
2322

2423
### Send notifications using a C# console app
24+
2525
This section shows how to send notifications using a console app. The code broadcasts notifications to both Windows Store and iOS devices. Modify the `SendTemplateNotificationAsync` method in the console app you previously created with the following code:
2626

2727
```csharp
@@ -62,6 +62,7 @@ private static async void SendTemplateNotificationAsync()
6262
The SendTemplateNotificationAsync method delivers the localized piece of news to **all** your devices, irrespective of the platform. Your notification hub builds and delivers the correct native payload to all the devices subscribed to a specific tag.
6363

6464
### Sending notification with Mobile Services
65+
6566
In your Mobile Services scheduler, use the following script:
6667

6768
```csharp
@@ -78,4 +79,3 @@ notificationHubService.send('World', notification, function(error) {
7879
}
7980
});
8081
```
81-

0 commit comments

Comments
 (0)