4

I am trying to figure out the difference between when to use a BlobClient vs a BlobItem vs BlobHierarchyItem.Blob?

Mike Lenart
  • 767
  • 1
  • 5
  • 19

1 Answers1

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