ExpireDuration Property
The ExpireDuration property contains the expiry duration after a logout.
Syntax
Account.ExpireDuration [=long]
|
Possible Values
Long value that specifies or retrieves the duration.
|
The property is read/write.
Remarks
When the account is logged out for this contiguous period of time, it expires (0 = never).
This property is constant.
Durations are a number of seconds.
Examples
The following example displays the first account's expiry duration after a logout.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
alert(account.ExpireDuration);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top