Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.

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

Syntax

 
Nullable<DateTimeOffset> SnapshotTime { get; }
 
property Nullable<DateTimeOffset> SnapshotTime {
	Nullable<DateTimeOffset> get();
}
 
abstract SnapshotTime : Nullable<DateTimeOffset> with get
 
ReadOnly Property SnapshotTime As Nullable(Of DateTimeOffset)

Property Value

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

A DateTimeOffset containing the blob's snapshot time if the blob is a snapshot; otherwise, null.

Remarks

If the blob is not a snapshot, the value of this property is null.

Return to top