| ISessionManagerPersistSession Method |
This method is called right before rendering to write session data for the request.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxvoid PersistSession(
Config monConfig
)
Sub PersistSession (
monConfig As Config
)
void PersistSession(
Config^ monConfig
)
abstract PersistSession :
monConfig : Config -> unit
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