Click or drag to resize

TableEntityTimestamp Property

The Timestamp property is a DateTime value that is maintained on the server side to record the time an entity was last modified. The Table service uses the Timestamp property internally to provide optimistic concurrency. The value of Timestamp is a monotonically increasing value, meaning that each time the entity is modified, the value of Timestamp increases for that entity. This property should not be set on insert or update operations (the value will be ignored).

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.0.8475.0
Syntax
C#
public DateTimeOffset? Timestamp { get; set; }

Property Value

NullableDateTimeOffset
A DateTimeOffset containing the timestamp of the entity.

Implements

ITableEntity.Timestamp
See Also