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)
Usage
| Visual Basic |
|---|
Dim instance As ICloudBlob
Dim value As Nullable(Of DateTimeOffset)
value = instance.SnapshotTime
|
Syntax
| Visual Basic |
|---|
ReadOnly Property SnapshotTime As Nullable(Of DateTimeOffset) |
| C# |
|---|
Nullable<DateTimeOffset> SnapshotTime { get; } |
| C++ |
|---|
property Nullable<DateTimeOffset> SnapshotTime {
Nullable<DateTimeOffset> get ();
} |
| J# |
|---|
/** @property */
Nullable<DateTimeOffset> get_SnapshotTime ()
|
| JScript |
|---|
function get SnapshotTime () : Nullable<DateTimeOffset>
|
Property Value
A
DateTimeOffset containing the blob's snapshot time if the blob is a snapshot; otherwise,
null.
Remarks
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also