Class AppendBlobCreateOptions
Optional parameters for creating an Append Blob.
Inheritance
System.Object
AppendBlobCreateOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class AppendBlobCreateOptions
Constructors
AppendBlobCreateOptions()
Declaration
public AppendBlobCreateOptions ();
Properties
Conditions
Optional AppendBlobRequestConditions to add conditions on the creation of this new append blob.
Declaration
public Azure.Storage.Blobs.Models.AppendBlobRequestConditions Conditions { get; set; }
Property Value
AppendBlobRequestConditions
|
HttpHeaders
Optional standard HTTP header properties that can be set for the new append blob.
Declaration
public Azure.Storage.Blobs.Models.BlobHttpHeaders HttpHeaders { get; set; }
Property Value
BlobHttpHeaders
|
Metadata
Optional custom metadata to set for this append 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 append blob.
Declaration
public System.Collections.Generic.IDictionary<string,string> Tags { get; set; }
Property Value
System.Collections.Generic.IDictionary<System.String,System.String>
|