-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathConstants.cs
29 lines (26 loc) · 1.17 KB
/
Constants.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace WhatIsThat
{
/// <summary>
/// Static class containing constants.
/// </summary>
internal static class Constants
{
/// <summary>
/// This sample depends on having a subscription to the Azure Speech Api. A valid subscription
/// key may be obtained by signing up at https://azure.microsoft.com/en-us/try/cognitive-services/.
/// </summary>
internal static readonly string AzureSpeechSubscriptionKey = string.Empty;
/// <summary>
/// This sample depends on having a subscription to the Azure Computer Vision API. A valid subscription
/// key may be obtained by signing up at https://azure.microsoft.com/en-us/try/cognitive-services/.
/// </summary>
internal static readonly string AzureVisionSubscriptionKey = string.Empty;
/// <summary>
/// This is the Azure region, fill it in according to the region to which the subscription is
/// associated (e.g. "westus").
/// </summary>
internal static readonly string AzureRegion = string.Empty;
}
}