Share via


StorageData.UpdatedAt Property

 

This property timestamp at which the entity was created. By setting this property, the M:Timestamp property is updated as well. The property is not mapped to the actual storage table as the information is maintained by the timestamp property.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Storage (in Microsoft.WindowsAzure.Mobile.Service.Storage.dll)

Syntax

[IgnorePropertyAttribute]
[NotMappedAttribute]
public Nullable<DateTimeOffset> UpdatedAt { get; set; }
public:
[IgnorePropertyAttribute]
[NotMappedAttribute]
property Nullable<DateTimeOffset> UpdatedAt {
    virtual Nullable<DateTimeOffset> get() sealed;
    virtual void set(Nullable<DateTimeOffset> value) sealed;
}
[<IgnorePropertyAttribute>]
[<NotMappedAttribute>]
abstract UpdatedAt : Nullable<DateTimeOffset> with get, set
[<IgnorePropertyAttribute>]
[<NotMappedAttribute>]
override UpdatedAt : Nullable<DateTimeOffset> with get, set
<IgnorePropertyAttribute>
<NotMappedAttribute>
Public Property UpdatedAt As Nullable(Of DateTimeOffset)

Property Value

Type: System.Nullable<DateTimeOffset>

Implements

ITableData.UpdatedAt

See Also

StorageData Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top