Skip to content

Commit 730e3f5

Browse files
authored
Merge pull request #4 from robinsh/robinsh-1127
Change name of method
2 parents 822c59c + 559b635 commit 730e3f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

StorageRestApiAuth/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal static class Program
1616
private static void Main()
1717
{
1818
// List the containers in a storage account.
19-
ListContainersAsync(StorageAccountName, StorageAccountKey, CancellationToken.None).GetAwaiter().GetResult();
19+
ListContainersAsyncREST(StorageAccountName, StorageAccountKey, CancellationToken.None).GetAwaiter().GetResult();
2020

2121
Console.WriteLine("Press any key to continue.");
2222
Console.ReadLine();
@@ -29,7 +29,7 @@ private static void Main()
2929
/// then check the returned status code. If it's OK (200), it will
3030
/// parse the response and show the list of containers found.
3131
/// </summary>
32-
private static async Task ListContainersAsync(string storageAccountName, string storageAccountKey, CancellationToken cancellationToken)
32+
private static async Task ListContainersAsyncREST(string storageAccountName, string storageAccountKey, CancellationToken cancellationToken)
3333
{
3434

3535
// Construct the URI. This will look like this:

0 commit comments

Comments
 (0)