OneComputeWpfClient\Azure\AzureStorageConstants.cs

namespace OneComputeWpfClient.Azure
{
    /// <summary>
    /// Constants for the Azure Batch and storage accounts.
    /// </summary>
    public class AzureStorageConstants
    {
        /// <summary>
        /// The BLOB container name for the demo.
        /// </summary>
        // TODO: Define your Azure Storage Blob container name.
        internal const string ContainerName = "xxxxxx";

        /// <summary>
        /// The storage account key.
        /// </summary>
        // TODO: Define your Azure Storage account key.
        internal const string StorageAccountKey = "xxxxxx";

        /// <summary>
        /// The storage account name.
        /// </summary>
        // TODO: Define your Azure Storage account name.
        internal const string StorageAccountName = "xxxxxx";

        /// <summary>
        /// The storage connection string.
        /// </summary>
        internal static string StorageConnectionString =>
            $"DefaultEndpointsProtocol=https;AccountName={StorageAccountName};AccountKey={StorageAccountKey};EndpointSuffix=core.windows.net";
    }
}
  • Edit this page
In this article
Back to top Copyright © DNV AS. All rights reserved.