Microsoft.WindowsAzure.Commands.Storage.Common.Cmdlet.NewAzureStorageContext.GetAnonymousStorageAccountFromAzureEnvironment C# (CSharp) Method

GetAnonymousStorageAccountFromAzureEnvironment() private method

Get anonymous storage account
private GetAnonymousStorageAccountFromAzureEnvironment ( string storageAccountName, bool useHttps, string azureEnvironmentName = "" ) : Microsoft.WindowsAzure.Storage.CloudStorageAccount
storageAccountName string Storage account name, it's used for build end point
useHttps bool
azureEnvironmentName string
return Microsoft.WindowsAzure.Storage.CloudStorageAccount
        internal CloudStorageAccount GetAnonymousStorageAccountFromAzureEnvironment(string storageAccountName,
            bool useHttps, string azureEnvironmentName = "")
        {
            StorageCredentials credential = new StorageCredentials();
            return GetStorageAccountWithAzureEnvironment(credential, storageAccountName, useHttps, azureEnvironmentName);
        }