ServerInfoDataLastSeenTime Property |
Gets the UTC time at which the server last reported itself as active.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(Name = "lastSeenTime", EmitDefaultValue = false)]
public DateTime? LastSeenTime { get; set; }
<DataMemberAttribute(Name := "lastSeenTime", EmitDefaultValue := false)>
Public Property LastSeenTime As DateTime?
Get
Set
public:
[DataMemberAttribute(Name = L"lastSeenTime", EmitDefaultValue = false)]
property Nullable<DateTime> LastSeenTime {
Nullable<DateTime> get ();
void set (Nullable<DateTime> value);
}
[<DataMemberAttribute(Name = "lastSeenTime", EmitDefaultValue = false)>]
member LastSeenTime : Nullable<DateTime> with get, set
Property Value
Type:
NullableDateTime
The time at which the server last reported itself as active, or
if it has never done so.
Remarks
A server "reports itself as active" by updating a record in the application database.
See Also