Delete Method



 
The Delete method deletes a user.


Syntax

    SiteCafe.Server.Users.Delete(userIndex)
    
Parameters
    userIndex Long value that specifies the user index.
Return Value
    None.
Remarks
    None.
Examples
    The following example creates and deletes a user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    userIndex = SiteCafe.Server.Users.Create("NewUser", "password", 1);
    SiteCafe.Server.Users.Delete(userIndex);
    </SCRIPT>
    

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

Back to top