Show / Hide Table of Contents

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

HasLegalHold

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> HasLegalHold { get; set; }
Property Value
System.Nullable<System.Boolean>

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

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

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>

Back to top Azure SDK for .NET