Skip to content

Commit 8ca6f09

Browse files
Edits for Queue and Table
1 parent 63136fe commit 8ca6f09

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/storage/common/storage-use-azurite.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ azurite --oauth basic --cert certname.pem --key certname-key.pem
564564

565565
#### Azure Blob Storage
566566

567-
You can then instantiate a `BlobContainerClient`, `BlobServiceClient`, or `BlobClient`.
567+
To interact with Blob Storage resources, you can instantiate a `BlobContainerClient`, `BlobServiceClient`, or `BlobClient`.
568568

569569
The following examples show how to authorize a `BlobContainerClient` object using three different authorization mechanisms: [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential), connection string, and shared key. `DefaultAzureCredential` provides a Bearer token-based authentication mechanism, and uses a chain of credential types used for authentication. Once authenticated, this credential provides the OAuth token as part of client instantiation. To learn more, see the [DefaultAzureCredential class reference](/dotnet/api/azure.identity.defaultazurecredential).
570570

@@ -588,7 +588,9 @@ var client = new BlobContainerClient(
588588

589589
#### Azure Queue Storage
590590

591-
You can also instantiate a QueueClient or QueueServiceClient.
591+
To interact with Queue Storage resources, you can instantiate a `QueueClient` or `QueueServiceClient`.
592+
593+
The following examples show how to create and authorize a `QueueClient` object using three different authorization mechanisms: [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential), connection string, and shared key. `DefaultAzureCredential` provides a Bearer token-based authentication mechanism, and uses a chain of credential types used for authentication. Once authenticated, this credential provides the OAuth token as part of client instantiation. To learn more, see the [DefaultAzureCredential class reference](/dotnet/api/azure.identity.defaultazurecredential).
592594

593595
```csharp
594596
// With queue URL and DefaultAzureCredential
@@ -610,7 +612,9 @@ var client = new QueueClient(
610612

611613
#### Azure Table Storage
612614

613-
You can also instantiate a TableClient or TableServiceClient.
615+
To interact with Table Storage resources, you can instantiate a `TableClient` or `TableServiceClient`.
616+
617+
The following examples show how to create and authorize a `TableClient` object using three different authorization mechanisms: [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential), connection string, and shared key. `DefaultAzureCredential` provides a Bearer token-based authentication mechanism, and uses a chain of credential types used for authentication. Once authenticated, this credential provides the OAuth token as part of client instantiation. To learn more, see the [DefaultAzureCredential class reference](/dotnet/api/azure.identity.defaultazurecredential).
614618

615619
```csharp
616620
// With table URL and DefaultAzureCredential

0 commit comments

Comments
 (0)