ComputerStat Object



 
The ComputerStat object contains computer statistics.


Members Table

    The following table lists the members provided by the ComputerStat object.

    Members
    Properties Description
    ComputerIndex Computer index number.
    ConnectTime Date the computer connected the last time.
    DisconnectTime Date the computer disconnected the last time.
    Index Statistics index number.

Remarks
    This object is returned by the Item method. Use the ComputerStat object to receive statistics for a computer.

Examples
    The following example displays the first computer's connection time 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).ConnectTime);
    </SCRIPT>
    

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

Back to top