DisconnectTime Property



 
The DisconnectTime property contains the date the computer disconnected the last time.


Syntax

    [long=] ComputerStat.DisconnectTime
    
Possible Values
    Long value that retrieves the date.

    The property is read only.
Remarks
    Dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
    The following example displays the first computer's disconnection date of the first statistics.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    cStats = SiteCafe.Server.ComputerStats.GetComputerStats(1, 0, 0, 1, 10);
    alert(cStats.Item(1).DisconnectTime);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top