public async Task <string> GetStorageAccountKey(IStorageAccount storageAccount, CancellationToken cancellationToken = default) { if (storageAccount == null) { throw new ArgumentNullException("storageAccount"); } return(await AzureStorageUtils.GetStorageAccountKeyByName(storageAccount, cancellationToken : cancellationToken)); }