EndTime Property



 
The EndTime property contains the session end date.


Syntax

    [long=] Session.EndTime
    
Possible Values
    Long value that retrieves the end date.

    The property is read only.
Remarks
    Dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
    The following example displays the end date of the first computer's first session.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    sessions = SiteCafe.Server.Sessions.GetSessions(1, 0, 0, 1, 10, true);
    alert(sessions.Item(1).EndTime);
    </SCRIPT>
    

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

Back to top