CloudBlobContainer.GetAppendBlobReference Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.