Microsoft.WindowsAzure.Commands.Storage.Common.Cmdlet.NewAzureStorageContext.GetAnonymousStorageAccountFromAzureEnvironment C# (CSharp) 메소드

GetAnonymousStorageAccountFromAzureEnvironment() 개인적인 메소드

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
리턴 Microsoft.WindowsAzure.Storage.CloudStorageAccount
        internal CloudStorageAccount GetAnonymousStorageAccountFromAzureEnvironment(string storageAccountName,
            bool useHttps, string azureEnvironmentName = "")
        {
            StorageCredentials credential = new StorageCredentials();
            return GetStorageAccountWithAzureEnvironment(credential, storageAccountName, useHttps, azureEnvironmentName);
        }