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
|
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>
|