Skip to content

Commit a4a8766

Browse files
Add clarification for DAC
1 parent 5c4fb84 commit a4a8766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use Azurite emulator for local Azure Storage development
33
description: The Azurite open-source emulator provides a free local environment for testing your Azure storage applications.
44
author: pauljewellmsft
55
ms.author: pauljewell
6-
ms.date: 04/26/2023
6+
ms.date: 07/11/2023
77
ms.service: azure-storage
88
ms.subservice: storage-common-concepts
99
ms.topic: how-to
@@ -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+
You can then instantiate a `BlobContainerClient`, `BlobServiceClient`, or `BlobClient`. 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](/dotnet/api/azure.identity.defaultazurecredential) class reference.
568568

569569
```csharp
570570
// With container URL and DefaultAzureCredential

0 commit comments

Comments
 (0)