Show / Hide Table of Contents

Class CommitBlockListOptions

Optional paraters for commiting a block list to a Block Blob.

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

Constructors

CommitBlockListOptions()

Declaration
public CommitBlockListOptions ();

Properties

AccessTier

Optional AccessTier to set on the Block Blob.

Declaration
public Nullable<Azure.Storage.Blobs.Models.AccessTier> AccessTier { get; set; }
Property Value
System.Nullable<AccessTier>

Conditions

Optional BlobRequestConditions to add conditions on the upload of this Block Blob.

Declaration
public Azure.Storage.Blobs.Models.BlobRequestConditions Conditions { get; set; }
Property Value
BlobRequestConditions

HttpHeaders

Optional standard HTTP header properties that can be set for the new block blob.

Declaration
public Azure.Storage.Blobs.Models.BlobHttpHeaders HttpHeaders { get; set; }
Property Value
BlobHttpHeaders

ImmutabilityPolicy

Optional BlobImmutabilityPolicy to set on the blob. Note that is parameter is only applicable to a blob within a container that has immutable storage with versioning enabled.

Declaration
public Azure.Storage.Blobs.Models.BlobImmutabilityPolicy ImmutabilityPolicy { get; set; }
Property Value
BlobImmutabilityPolicy

LegalHold

Optional. Indicates if a legal hold should be placed on the blob. Note that is parameter is only applicable to a blob within a container that has immutable storage with versioning enabled.

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

Metadata

Optional custom metadata to set for this block blob.

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

Tags

Options tags to set for this block blob.

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

Back to top Azure SDK for .NET