Share via


ITableData.CreatedAt Property

 

Gets or sets the date and time the entity was created.

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

Syntax

[JsonPropertyAttribute(PropertyName = "__createdAt")]
Nullable<DateTimeOffset> CreatedAt { get; set; }
[JsonPropertyAttribute(PropertyName = "__createdAt")]
property Nullable<DateTimeOffset> CreatedAt {
    Nullable<DateTimeOffset> get();
    void set(Nullable<DateTimeOffset> value);
}
[<JsonPropertyAttribute(PropertyName = "__createdAt")>]
abstract CreatedAt : Nullable<DateTimeOffset> with get, set
<JsonPropertyAttribute(PropertyName := "__createdAt")>
Property CreatedAt As Nullable(Of DateTimeOffset)

Property Value

Type: System.Nullable<DateTimeOffset>

See Also

ITableData Interface
Microsoft.WindowsAzure.Mobile.Service.Tables Namespace

Return to top