CloudBlobContainer.GetAppendBlobReference Method

Definition

Overloads

GetAppendBlobReference(String)

Gets a reference to an append blob in this container.

GetAppendBlobReference(String, Nullable<DateTimeOffset>)

Gets a reference to an append blob in this container.

GetAppendBlobReference(String)

Gets a reference to an append blob in this container.

public virtual Microsoft.Azure.Storage.Blob.CloudAppendBlob GetAppendBlobReference (string blobName);
abstract member GetAppendBlobReference : string -> Microsoft.Azure.Storage.Blob.CloudAppendBlob
override this.GetAppendBlobReference : string -> Microsoft.Azure.Storage.Blob.CloudAppendBlob
Public Overridable Function GetAppendBlobReference (blobName As String) As CloudAppendBlob

Parameters

blobName
String

A string containing the name of the append blob.

Returns

A CloudAppendBlob object.

Applies to

GetAppendBlobReference(String, Nullable<DateTimeOffset>)

Gets a reference to an append blob in this container.

public virtual Microsoft.Azure.Storage.Blob.CloudAppendBlob GetAppendBlobReference (string blobName, DateTimeOffset? snapshotTime);
abstract member GetAppendBlobReference : string * Nullable<DateTimeOffset> -> Microsoft.Azure.Storage.Blob.CloudAppendBlob
override this.GetAppendBlobReference : string * Nullable<DateTimeOffset> -> Microsoft.Azure.Storage.Blob.CloudAppendBlob
Public Overridable Function GetAppendBlobReference (blobName As String, snapshotTime As Nullable(Of DateTimeOffset)) As CloudAppendBlob

Parameters

blobName
String

A string containing the name of the append blob.

snapshotTime
Nullable<DateTimeOffset>

A DateTimeOffset specifying the snapshot timestamp, if the blob is a snapshot.

Returns

A CloudAppendBlob object.

Applies to