I am trying to figure out the difference between when to use a BlobClient vs a BlobItem vs BlobHierarchyItem.Blob?
Asked
Active
Viewed 2,336 times
1 Answers
4
BlobClient is an object that allows you to do some operations on azure storage blobs.
BlobItem is the Azure Storage blob object.
BlobHierarchyItem.Blob is a Property, and the type is BlobItem.
public Azure.Storage.Blobs.Models.BlobItem Blob { get; }

Cindy Pau
- 13,085
- 1
- 15
- 27
-
2How do I create a BlobClient from a BlobItem? – Mike Lenart Apr 06 '21 at 22:52
-
2@MikeLenart `BlobServiceClient.GetBlobContainer("xxx").GetBlobClient(BlobItem.Name)` – Cindy Pau Apr 07 '21 at 09:00
-
6And how do I do the reverse, ie a BlobItem from a BlobClient? – Wouter Van Ranst May 10 '21 at 09:11