GetUsers Method



 
The GetUsers method returns a range of chat users.


Syntax

    [obj=] SiteCafe.Server.Chat.GetUsers(start, maxCount)
    
Parameters
    start Long value that specifies the start user.
    maxCount Long value that specifies the maximum number of users.
Return Value
    Returns a ChatUsersCol collection containing the specified users.
Remarks
    None.
Examples
    The following example displays the number of chat users (maximum 100).

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    users = SiteCafe.Server.Chat.GetUsers(1, 100);
    alert(users.Count);
    </SCRIPT>
    

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

Back to top