Class BlobHierarchyItem
Either a Prefix or Blob returned from GetBlobsByHierarchyAsync(BlobTraits, BlobStates, String, String, CancellationToken).
Namespace: Azure.Storage.Blobs.Models
Assembly: Azure.Storage.Blobs.dll
Syntax
public class BlobHierarchyItem
Properties
Blob
Gets a blob.
Declaration
public Azure.Storage.Blobs.Models.BlobItem Blob { get; }
Property Value
BlobItem
|
IsBlob
Gets a value indicating if this item represents a Blob.
Declaration
public bool IsBlob { get; }
Property Value
Boolean
|
IsPrefix
Gets a value indicating if this item represents a Prefix.
Declaration
public bool IsPrefix { get; }
Property Value
Boolean
|
Prefix
Gets a prefix, relative to the delimiter used to get the blobs.
Declaration
public string Prefix { get; }
Property Value
String
|