LogonsCol Collection



 
The LogonsCol collection contains an admin's logon and logoff information.


Members Table

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

    Members
    Properties Description
    Count Contains the number of logons / logoffs.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetLogons method. Use the LogonsCol collection to receive information about an account.

Examples
    The following example displays the first logon date of the first admin.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    logons = SiteCafe.Server.Admins.Logons.GetLogons(1, 0, 0, 1, 1, true);
    alert(logons.Item(1).LogonDate);
    </SCRIPT>
    

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

Back to top