LoginCode Method



 
The LoginCode method logs in using a code.


Syntax

    SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
    LoginCode(code)
    
Parameters
    code String that specifies the code.
Return Value
    None.
Remarks
    None.
Examples
    The following example logs in using a code.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
    SiteCafe.LoginCode("your_code");
    </SCRIPT>
    

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

Back to top