Class NSCsSessionKey
Carrier object for CsSessionKey.
Constructors
NSCsSessionKey()
Initializes a new instance of the NSCsSessionKey class.
Declaration
NSCsSessionKey Methods
GetKey()
Declaration
String GetKey() Examples
NSCsSessionKey thing;
String key = thing.GetKey();
Returns
| Type | Description |
| String | The session key created in the login table. |
GetLoginId()
Declaration
Integer GetLoginId() Examples
NSCsSessionKey thing;
Integer loginId = thing.GetLoginId();
Returns
| Type | Description |
| Integer | The ID of the login row. |
GetUserId()
Declaration
Integer GetUserId() Examples
NSCsSessionKey thing;
Integer userId = thing.GetUserId();
Returns
| Type | Description |
| Integer | The ejuser ID owning this session key. |
SetKey(String)
Declaration
Void SetKey(String key) Examples
NSCsSessionKey thing;
String key;
thing.SetKey(key);
Parameters
| Type | Name | Description |
| String | key | The session key created in the login table. |
Returns
| Type | Description |
| Void |