Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets a reference to an append blob in this container.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public CloudAppendBlob GetAppendBlobReference(
	string blobName,
	Nullable<DateTimeOffset> snapshotTime
)
 
public:
CloudAppendBlob^ GetAppendBlobReference(
	String^ blobName,
	Nullable<DateTimeOffset> snapshotTime
)
 
member GetAppendBlobReference : 
        blobName:string *
        snapshotTime:Nullable<DateTimeOffset> -> CloudAppendBlob
 
Public Function GetAppendBlobReference (
	blobName As String,
	snapshotTime As Nullable(Of DateTimeOffset)
) As CloudAppendBlob

Parameters

blobName
Type: System.StringSystem::String^System.StringSystem.String

A string containing the name of the append blob.

snapshotTime
Type: System.Nullable<DateTimeOffset>System::Nullable<DateTimeOffset>System.Nullable<DateTimeOffset>System.Nullable(Of DateTimeOffset)

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

Return to top