AzureStorageNew.StorageAccountTests.GetAuthorizationHeader C# (CSharp) Method

GetAuthorizationHeader() private static method

private static GetAuthorizationHeader ( ) : string
return string
        private static string GetAuthorizationHeader()
        {
            ClientCredential cc = new ClientCredential(applicationId, password);
            var context = new AuthenticationContext("https://login.windows.net/" + tenantId);
            var result = context.AcquireToken("https://management.azure.com/", cc);

            if (result == null)
            {
                throw new InvalidOperationException("Failed to obtain the JWT token");
            }

            string token = result.AccessToken;

            return token;
        }