ComputerStat Object
The ComputerStat object contains computer statistics.
Members Table
The following table lists the members provided by the ComputerStat object.
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