SetSession (Object subroutine): Difference between revisions
Jump to navigation
Jump to search
Line 31: | Line 31: | ||
<li>The <var>[[GetSession (Object subroutine)|GetSession]]</var> subroutine. | <li>The <var>[[GetSession (Object subroutine)|GetSession]]</var> subroutine. | ||
<li>[[Global and session objects]]. | <li>[[Global and session objects]]. | ||
< | </ul> | ||
{{Template:Object:SetSession footer}} | {{Template:Object:SetSession footer}} |
Revision as of 12:50, 10 July 2017
Set session object reference (Object class)
Syntax
%(Object):SetSession( name, source)
Syntax terms
%(Object) | The class name in parentheses denotes a shared method. SetSession can also be invoked via an Object class object variable, which may be Null. |
---|---|
name | A string that specifies the session name. |
source | This Object class object variable is set by SetSession to be referenced by the session name name.
source can be a %variable, a structure member, or a class member inside an object. |
Examples
The following example creates a session called GROUCHO
, followed by a timestamp then sets a cookie for a web application so that the session can be easily located on subsequent web requests.
%sesid = 'GROUCHO' WITH $SirTime %rc = $Session_Create(%sesid, , 3600) %rc = $Web_Set_Cookie('SESID', %sesid)
See also
- The GetSession subroutine.
- Global and session objects.