Show / Hide Table of Contents

Class BlobItem

An Azure Storage blob.

Inheritance
System.Object
BlobItem
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class BlobItem

Properties

Deleted

Deleted.

Declaration
public bool Deleted { get; }
Property Value
System.Boolean

HasVersionsOnly

Indicates that this root blob has been deleted, but it has versions that are active.

Declaration
public Nullable<bool> HasVersionsOnly { get; }
Property Value
System.Nullable<System.Boolean>

IsLatestVersion

IsCurrentVersion.

Declaration
public Nullable<bool> IsLatestVersion { get; }
Property Value
System.Nullable<System.Boolean>

Metadata

Metadata.

Declaration
public System.Collections.Generic.IDictionary<string,string> Metadata { get; }
Property Value
System.Collections.Generic.IDictionary<System.String,System.String>

Name

Name.

Declaration
public string Name { get; }
Property Value
System.String

ObjectReplicationSourceProperties

Object Replication Metadata (OrMetadata)

Declaration
public System.Collections.Generic.IList<Azure.Storage.Blobs.Models.ObjectReplicationPolicy> ObjectReplicationSourceProperties { get; }
Property Value
System.Collections.Generic.IList<ObjectReplicationPolicy>

Properties

Properties of a blob.

Declaration
public Azure.Storage.Blobs.Models.BlobItemProperties Properties { get; }
Property Value
BlobItemProperties

Snapshot

Snapshot.

Declaration
public string Snapshot { get; }
Property Value
System.String

Tags

Tags.

Note: this will return null if there are no tags associated with the blob.

Declaration
public System.Collections.Generic.IDictionary<string,string> Tags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String,System.String>

VersionId

VersionId.

Declaration
public string VersionId { get; }
Property Value
System.String

Back to top Azure SDK for .NET