From 22dd2726aa8efda5f72095c4479b2a8562a64943 Mon Sep 17 00:00:00 2001 From: Kai Date: Tue, 22 Sep 2020 15:53:10 +0200 Subject: [PATCH] Added using-statement Using statement for CancellationToken was missing --- .../includes/notification-hubs-backend-service-web-api.md | 1 + 1 file changed, 1 insertion(+) diff --git a/articles/mobile-apps/includes/notification-hubs-backend-service-web-api.md b/articles/mobile-apps/includes/notification-hubs-backend-service-web-api.md index 23d9a0a23f..387cb7630e 100644 --- a/articles/mobile-apps/includes/notification-hubs-backend-service-web-api.md +++ b/articles/mobile-apps/includes/notification-hubs-backend-service-web-api.md @@ -321,6 +321,7 @@ Use of the notification hub and the [Notification Hubs SDK for backend operation 1. Add an **Empty Interface** to the **Services** folder called *INotificationService.cs*, then add the following implementation. ```csharp + using System.Threading; using System.Threading.Tasks; using PushDemoApi.Models;