Gets or sets the entity's timestamp.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As ITableEntity
Dim value As DateTimeOffset
value = instance.Timestamp
instance.Timestamp = value |
Syntax
Visual Basic |
---|
Property Timestamp As DateTimeOffset |
C# |
---|
DateTimeOffset Timestamp { get; set; } |
C++ |
---|
property DateTimeOffset Timestamp {
DateTimeOffset get ();
void set (DateTimeOffset value);
} |
J# |
---|
/** @property */
DateTimeOffset get_Timestamp ()
/** @property */
void set_Timestamp (DateTimeOffset value)
|
JScript |
---|
function get Timestamp () : DateTimeOffset
function set Timestamp (value : DateTimeOffset)
|
Property Value
The entity's timestamp. The property is populated by the Windows Azure Table Service.
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