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
You can then instantiate a `BlobContainerClient`, `BlobServiceClient`, or `BlobClient`.
567
+
To interact with Blob Storage resources, you can instantiate a `BlobContainerClient`, `BlobServiceClient`, or `BlobClient`.
568
568
569
569
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).
570
570
@@ -588,7 +588,9 @@ var client = new BlobContainerClient(
588
588
589
589
#### Azure Queue Storage
590
590
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).
592
594
593
595
```csharp
594
596
// With queue URL and DefaultAzureCredential
@@ -610,7 +612,9 @@ var client = new QueueClient(
610
612
611
613
#### Azure Table Storage
612
614
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).
0 commit comments