SessionIndex Property



 
The SessionIndex property contains the session index of the user.


Syntax

    [long=] ChatUser.SessionIndex
    
Possible Values
    Long value that retrieves the session index.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the session index of the first chat user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    user = SiteCafe.Server.Chat.GetUser(1);
    alert(user.SessionIndex);
    </SCRIPT>
    

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

Back to top