You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-create-geo-redundant-storage.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,13 +41,13 @@ To complete this tutorial:
41
41
42
42
- Install [Visual Studio 2022](https://www.visualstudio.com/downloads/) with the **Azure development** workload.
43
43
44
-

44
+

45
45
46
46
# [.NET v11 SDK](#tab/dotnet11)
47
47
48
48
- Install [Visual Studio 2019](https://www.visualstudio.com/downloads/) with the **Azure development** workload.
49
49
50
-

50
+

51
51
52
52
# [Python v12 SDK](#tab/python)
53
53
@@ -222,7 +222,7 @@ When the console window launches, the app will get the status of the secondary r
222
222
223
223
Next, the application enters a loop with a prompt to download the blob, initially reading from primary storage. Press any key to download the blob. If there's a retryable error reading from the primary region, a retry of the read request is performed against the secondary region endpoint. The console output will show when the region switches to secondary.

226
226
227
227
To exit the loop and clean up resources, press the `Esc` key at the blob download prompt.
228
228
@@ -232,7 +232,7 @@ In Visual Studio, press **F5** or select **Start** to begin debugging the applic
232
232
233
233
A console window launches and the application begins running. The application uploads the **HelloWorld.png** image from the solution to the storage account. The application checks to ensure the image has replicated to the secondary RA-GZRS endpoint. It then begins downloading the image up to 999 times. Each read is represented by a **P** or an **S**. Where **P** represents the primary endpoint and **S** represents the secondary endpoint.

236
236
237
237
In the sample code, the `RunCircuitBreakerAsync` task in the `Program.cs` file is used to download an image from the storage account using the [DownloadToFileAsync](/dotnet/api/microsoft.azure.storage.blob.cloudblob.downloadtofileasync) method. Prior to the download, an [OperationContext](/dotnet/api/microsoft.azure.cosmos.table.operationcontext) is defined. The operation context defines event handlers that fire when a download completes successfully, or if a download fails and is retrying.
0 commit comments