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

SetLoginId(Integer)

Declaration

Void SetLoginId(Integer loginId)

Examples

NSCsSessionKey thing;
Integer loginId;
thing.SetLoginId(loginId);

Parameters

Type Name Description
Integer loginId The ID of the login row.

Returns

Type Description
Void

SetUserId(Integer)

Declaration

Void SetUserId(Integer userId)

Examples

NSCsSessionKey thing;
Integer userId;
thing.SetUserId(userId);

Parameters

Type Name Description
Integer userId The ejuser ID owning this session key.

Returns

Type Description
Void