ComputerStatsCol Collection



 
The ComputerStatsCol collection contains SiteCafe computer statistics.


Members Table

    The following table lists the members provided by the ComputerStatsCol collection.

    Members
    Properties Description
    Count Contains the number of computer statistics.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetComputerStats method. Use the ComputerStatsCol collection to receive computer statistics.

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