Skip to content

Commit 3c67358

Browse files
Final review pass
1 parent 4c1269b commit 3c67358

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/storage/blobs/storage-blob-copy-async-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To work with the code examples in this article, make sure you have:
3131

3232
## About copying blobs with asynchronous scheduling
3333

34-
The `Copy Blob` operation can finish asynchronously, and is performed on a best-effort basis. The operation is performed when server resources aren't being utilized by other tasks, which means the copy isn't guaranteed to start immediately or complete within a specified time frame. The operation can complete synchronously if the copy occurs within the same storage account.
34+
The `Copy Blob` operation can finish asynchronously and is performed on a best-effort basis, which means that the operation isn't guaranteed to start immediately or complete within a specified time frame. The copy operation is scheduled in the background and performed as the server has available resources. The operation can complete synchronously if the copy occurs within the same storage account.
3535

3636
A `Copy Blob` operation can perform any of the following actions:
3737

@@ -82,7 +82,7 @@ var sourceBlobSASURI = new Uri(
8282
$"https://{srcAccountName}.blob.core.windows.net/{srcContainerName}/{srcBlobName}?{sasToken}");
8383
```
8484

85-
You can also [create a user delegation SAS token with .NET](storage-blob-user-delegation-sas-create-dotnet.md). User delegation SAS tokens offer greater security, as they are signed with Azure AD credentials instead of an account key.
85+
You can also [create a user delegation SAS token with .NET](storage-blob-user-delegation-sas-create-dotnet.md). User delegation SAS tokens offer greater security, as they're signed with Azure AD credentials instead of an account key.
8686

8787
## Copy a blob from a source outside of Azure
8888

articles/storage/blobs/storage-blob-copy-url-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ var sourceBlobSASURI = new Uri(
8585
$"https://{srcAccountName}.blob.core.windows.net/{srcContainerName}/{srcBlobName}?{sasToken}");
8686
```
8787

88-
You can also [create a user delegation SAS token with .NET](storage-blob-user-delegation-sas-create-dotnet.md). User delegation SAS tokens offer greater security, as they are signed with Azure AD credentials instead of an account key.
88+
You can also [create a user delegation SAS token with .NET](storage-blob-user-delegation-sas-create-dotnet.md). User delegation SAS tokens offer greater security, as they're signed with Azure AD credentials instead of an account key.
8989

9090
## Copy a blob from a source outside of Azure
9191

articles/storage/blobs/storage-blob-copy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to copy blobs in Azure Storage using the .NET client libr
55
author: pauljewellmsft
66

77
ms.author: pauljewell
8-
ms.date: 04/11/2023
8+
ms.date: 04/14/2023
99
ms.service: storage
1010
ms.subservice: blobs
1111
ms.topic: how-to

0 commit comments

Comments
 (0)