Logoff Method



  The Logoff method logs off an admin.


Syntax

    SiteCafe.Server.Admins.Logoff(index)
    
Parameters
    index Long value that specifies the admin index.
Return Value
    None.
Remarks
    None.
Examples
    The following example logs off the first admin.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe.Server.Admins.Logoff(1);
    </SCRIPT>
    

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

Back to top