Skip to content

Commit 1375aa9

Browse files
committed
bug fix of switchers
1 parent 9c00c11 commit 1375aa9

6 files changed

+16
-19
lines changed

articles/app-service-how-to-configure-active-directory-authentication-preview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
pageTitle="How to configure Azure Active Directory authentication for your App Services application"
33
description="Learn how to configure Azure Active Directory authentication for your App Services application."
44
authors="mattchenderson,wesmc7777"
5-
services="app-service"
5+
services="app-service-mobile"
66
documentationCenter=""
77
manager="dwrede"
88
editor=""/>
99

1010
<tags
11-
ms.service="app-service"
11+
ms.service="app-service-mobile"
1212
ms.workload="mobile"
1313
ms.tgt_pltfrm=""
1414
ms.devlang="multiple"

articles/app-service-mobile-dotnet-backend-ios-get-started-push-preview.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
ms.author="yuaxu"/>
1818

1919

20-
# Add push notifications to your Mobile Services app
20+
# Add push notifications to your Mobile App
2121

22-
[AZURE.INCLUDE [app-service-mobile-selector-get-started-push-xamarin-preview](../includes/app-service-mobile-selector-get-started-push-xamarin-preview.md)]
22+
[AZURE.INCLUDE [app-service-mobile-selector-get-started-push-preview](../includes/app-service-mobile-selector-get-started-push-preview.md)]
2323

2424
This topic shows you how to use Azure App Service to send push notifications to an iOS app with Apple Push Notification service (APNS). On completion, your .NET backend will send a push notification to your QuickStart ToDo app each time a record is inserted.
2525

@@ -31,10 +31,10 @@ This tutorial walks you through these basic steps to enable push notifications:
3131
3. [Create a provisioning profile for the app]
3232
4. [Configure App Service Mobile to send push requests]
3333
5. [Update the server to send push notifications](#update-server)
34-
6. [Publish the mobile service to Azure]
34+
6. [Publish the mobile backend to Azure]
3535
7. [Add push notifications to the app]
3636
8. [Enable push notifications for local testing](#local-testing)
37-
9. [Test the app against the published mobile service]
37+
9. [Test the app against the published mobile backend]
3838

3939
This tutorial requires the following:
4040

@@ -63,7 +63,7 @@ This tutorial is based on the Mobile Services quickstart. Before you start this
6363

6464
2. Search for **WindowsAzure.ServiceBus** and click **Install** for all projects in the solution.
6565

66-
3. In Visual Studio Solution Explorer, expand the **Controllers** folder in the mobile service project. Open TodoItemController.cs. At the top of the file, add the following `using` statements:
66+
3. In Visual Studio Solution Explorer, expand the **Controllers** folder in the mobile backend project. Open TodoItemController.cs. At the top of the file, add the following `using` statements:
6767

6868
using System;
6969
using System.Collections.Generic;
@@ -200,11 +200,11 @@ This tutorial demonstrated the basics of enabling an iOS app to use App Service
200200
[Update scripts to send push notifications]: #update-scripts
201201
[Add push notifications to the app]: #add-push
202202
[Insert data to receive notifications]: #test
203-
[Test the app against the published mobile service]: #test-app
203+
[Test the app against the published mobile backend]: #test-app
204204
[Next Steps]:#next-steps
205205
[Download the service locally]: #download-the-service-locally
206-
[Test the mobile service]: #test-the-service
207-
[Publish the mobile service to Azure]: #publish-mobile-service
206+
[Test the mobile backend]: #test-the-service
207+
[Publish the mobile backend to Azure]: #publish-mobile-service
208208

209209
<!-- Images. -->
210210
[5]: ./media/mobile-services-ios-get-started-push/mobile-services-ios-push-step5.png

articles/app-service-mobile-dotnet-backend-xamarin-ios-get-started-push-preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# Add push notifications to your Mobile Services app
2020

21-
[AZURE.INCLUDE [app-service-mobile-selector-get-started-push-xamarin-preview](../includes/app-service-mobile-selector-get-started-push-xamarin-preview.md)]
21+
[AZURE.INCLUDE [app-service-mobile-selector-get-started-push-preview](../includes/app-service-mobile-selector-get-started-push-preview.md)]
2222

2323
<p>This topic shows you how to use Azure App Service to send push notifications to a Xamarin.iOS 8 app. In this tutorial you add push notifications using the Apple Push Notification service (APNS) to the [Get started with App Service mobile apps] project. When complete, your mobile backend will send a push notification each time a record is inserted.</p>
2424

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
> [AZURE.SELECTOR-LIST (Platform | Backend )]
2-
- [(iOS | .NET)](/en-us/documentation/articles/mobile-services-dotnet-backend-ios-get-started/)
3-
- [(Xamarin iOS | .NET)](/en-us/documentation/articles/mobile-services-dotnet-backend-xamarin-ios-get-started/)
4-
- [(Xamarin Android | .NET)](/en-us/documentation/articles/mobile-services-dotnet-backend-xamarin-android-get-started/)
2+
- [(iOS | .NET)](/en-us/documentation/articles/app-service-mobile-dotnet-backend-ios-get-started-preview/)
3+
- [(Xamarin iOS | .NET)](/en-us/documentation/articles/app-service-mobile-dotnet-backend-xamarin-ios-get-started-preview/)
4+
- [(Xamarin Android | .NET)](/en-us/documentation/articles/app-service-mobile-dotnet-backend-xamarin-android-get-started-preview/)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
> [AZURE.SELECTOR-LIST (Platform | Backend )]
2-
- [(iOS | .NET)](/en-us/documentation/articles/mobile-services-dotnet-backend-ios-get-started-push/)
3-
- [(Xamarin iOS | .NET)](/en-us/documentation/articles/mobile-services-dotnet-backend-xamarin-ios-get-started-push/)
2+
- [(iOS | .NET)](/en-us/documentation/articles/app-service-mobile-dotnet-backend-ios-get-started-push-preview/)
3+
- [(Xamarin iOS | .NET)](/en-us/documentation/articles/app-service-mobile-dotnet-backend-xamarin-ios-get-started-push-preview/)

includes/app-service-mobile-selector-get-started-push-xamarin-preview.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)