forked from microsoft/Windows-universal-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScenario6_AppListingURI.xaml.cs
43 lines (38 loc) · 1.28 KB
/
Scenario6_AppListingURI.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************
using System;
using Windows.Services.Store;
using Windows.UI.Xaml.Controls;
namespace SDKTemplate
{
/// <summary>
/// A page for sixth scenario.
/// </summary>
public sealed partial class Scenario6_AppListingURI : Page
{
MainPage rootPage = MainPage.Current;
private StoreContext storeContext = StoreContext.GetDefault();
public Scenario6_AppListingURI()
{
this.InitializeComponent();
}
private async void DisplayLink()
{
StoreProductResult result = await storeContext.GetStoreProductForCurrentAppAsync();
if (result.ExtendedError != null)
{
Utils.ReportExtendedError(result.ExtendedError);
return;
}
await Windows.System.Launcher.LaunchUriAsync(result.Product.LinkUri);
}
}
}