ComputerStats Object



 
The ComputerStats object contains computer statistics.


Members Table

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

    Members
    Methods Description
    GetComputerStats Returns a range of statistics for a computer.
    GetConnectedTime Returns the time a computer was connected.
    Events Description
    OnComputerStatChanged Fires when a computer statistics changed.

Remarks
    This object is available through the object Server. Use the ComputerStats object to receive statistics for a computer.

Examples
    The following example displays the time the first computer is connected.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteCafe.Server.ComputerStats.GetConnectedTime(1, 0, 0));
    </SCRIPT>
    

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

Back to top