ConnectionCookie Object
The ConnectionCookie object represents the dialup connection.
Members Table
The following table lists the members provided by the ConnectionCookie object.
|
Methods |
Description |
RevokeCookie |
Revokes a connection cookie. |
|
Remarks
This object is returned by the RequestConnection method.
Use the ConnectionCookie object to close a connection.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example closes the connection right after it has been established.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
myconn = SiteKiosk.Dialup.RequestConnection("reason", true, true);
myconn.RevokeCookie();
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top