Session Object



 
The Session object represents a SiteCafe session.


Members Table

Remarks
    This object is returned by the GetSessionByIndex or Item method. Use the Session object to receive information about a session.

Examples
    The following example displays the current amount of the first session.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    session = SiteCafe.Server.Sessions.GetSessionByIndex(1);
    alert(session.SessionAmount);
    </SCRIPT>
    

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

Back to top