File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ internal static class Program
16
16
private static void Main ( )
17
17
{
18
18
// List the containers in a storage account.
19
- ListContainersAsync ( StorageAccountName , StorageAccountKey , CancellationToken . None ) . GetAwaiter ( ) . GetResult ( ) ;
19
+ ListContainersAsyncREST ( StorageAccountName , StorageAccountKey , CancellationToken . None ) . GetAwaiter ( ) . GetResult ( ) ;
20
20
21
21
Console . WriteLine ( "Press any key to continue." ) ;
22
22
Console . ReadLine ( ) ;
@@ -29,7 +29,7 @@ private static void Main()
29
29
/// then check the returned status code. If it's OK (200), it will
30
30
/// parse the response and show the list of containers found.
31
31
/// </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 )
33
33
{
34
34
35
35
// Construct the URI. This will look like this:
You can’t perform that action at this time.
0 commit comments