How should you complete the code segment?

Posted by: Pdfprep Category: AZ-203 Tags: , ,

HOTSPOT

You develop a news and blog content delivery app for Windows devices. A notification must arrive on a user’s device when there is a new article available for them to view. You need to implement push notifications.

How should you complete the code segment? To answer, select the appropriate options in the answer

area. NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Box 1: NotificationHubClient

Box 2: NotificationHubClient

Box 3: CreateClientFromConnectionString

// Initialize the Notification Hub

NotificationHubClient hub = NotificationHubClient.CreateClientFromConnectionString(listenConnString, hubName);

Box 4: SendWindowsNativeNotificationAsync

Send the push notification.

var result = await hub.SendWindowsNativeNotificationAsync(windowsToastPayload);

References:

https://docs.microsoft.com/en-us/azure/notification-hubs/notification-hubs-push-notification-registration-management

https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/app-service-mobile/app-service-mobile-windows-store-dotnet-get-started-push.md