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

 
public Nullable<DateTimeOffset> SnapshotTime { get; private set; }
 
public:
property Nullable<DateTimeOffset> SnapshotTime {
	virtual Nullable<DateTimeOffset> get() sealed;
	private: virtual void set(Nullable<DateTimeOffset> value) sealed;
}
 
abstract SnapshotTime : Nullable<DateTimeOffset> with get, private set
override SnapshotTime : Nullable<DateTimeOffset> with get, private set
 
Public Property SnapshotTime As Nullable(Of DateTimeOffset)
	Get
	Private Set
End Property

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