Skip to content

Commit fe2e9fd

Browse files
committed
tweaks
1 parent eebe9b9 commit fe2e9fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/storage/blobs/storage-blob-user-delegation-sas-create-dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ using Azure.Storage.Blobs;
6565
using Azure.Storage.Blobs.Models;
6666
```
6767

68-
## Get an authenticated credential
68+
## Get an authenticated token credential
6969

70-
To get a credential that your code can use to authorize requests to Azure Storage, create an instance of the [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) class.
70+
To get a token credential that your code can use to authorize requests to Azure Storage, create an instance of the [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) class.
7171

72-
The following code snippet shows how to get the authenticated credential and use it to create a service client for Blob storage:
72+
The following code snippet shows how to get the authenticated token credential and use it to create a service client for Blob storage:
7373

7474
```csharp
7575
string blobEndpoint = string.Format("https://{0}.blob.core.windows.net", accountName);

articles/storage/common/storage-auth-aad-msi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ using Azure.Storage.Blobs;
7575
using Azure.Storage.Blobs.Models;
7676
```
7777

78-
To get a token credential that your code can use to authorize requests to Azure Storage, create an instance of the [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) class. The following code example shows how to get the authenticated credential and use it to create a service client object, then use the service client to upload a new blob:
78+
To get a token credential that your code can use to authorize requests to Azure Storage, create an instance of the [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) class. The following code example shows how to get the authenticated token credential and use it to create a service client object, then use the service client to upload a new blob:
7979

8080
```csharp
8181
async static Task CreateBlockBlobAsync(string accountName, string containerName, string blobName)

0 commit comments

Comments
 (0)