Click or drag to resize
ISessionManagerPersistSession Method
This method is called right before rendering to write session data for the request.

Namespace: Activsoft.Engine
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
void PersistSession(
	Config monConfig
)

Parameters

monConfig
Type: Activsoft.EngineConfig
The current Config instance.
Remarks
Implementers are supposed to store the session variables somewhere (database, memory, disk, etc.) and send the session identifier back to the client, using a cookie for a web context for example.
See Also