Class BlobHierarchyItem
Either a Prefix or Blob returned from GetBlobsByHierarchyAsync(BlobTraits, BlobStates, String, String, CancellationToken).
Inheritance
System.Object
BlobHierarchyItem
Namespace: System.Dynamic.ExpandoObject
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
System.Boolean
|
IsPrefix
Gets a value indicating if this item represents a Prefix.
Declaration
public bool IsPrefix { get; }
Property Value
System.Boolean
|
Prefix
Gets a prefix, relative to the delimiter used to get the blobs.
Declaration
public string Prefix { get; }
Property Value
System.String
|