HTTPServerResponse.startSession - multiple declarations
- Function HTTPServerResponse.startSession
- Function HTTPServerResponse.startSession
Function HTTPServerResponse.startSession
Deprecated compatibility overload.
Uses boolean parameters instead of SessionOption
to specify the
session options SessionOption.secure
and SessionOption.httpOnly
.
Prototype
Session startSession( string path, bool secure, bool httpOnly ) deprecated;
Function HTTPServerResponse.startSession
Initiates a new session.
The session is stored in the SessionStore that was specified when creating the server. Depending on this, the session can be persistent or temporary and specific to this server instance.
Prototype
Session startSession( string path, SessionOption options );
Authors
Sönke Ludwig, Jan Krüger, Ilya Shipunov
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.