sessionId
inline fun <reified SessionType : Any> ApplicationCall.sessionId(): String?
Returns the corresponding session ID for the type SessionType or null
if no session provided.
It will crash if no session provider for type SessionType installed or no Sessions feature installed.
Parameters
SessionType
- to search ID for
Return
session id or null
if no session ID sent by the client
val ApplicationCall.sessionId: String?
Returns a sessionId for for a single session identified by ID. This will not work if there are multiple sessions by ID were registered or the Sessions feature is not installed. If you are using multiple sessions, please use sessionId function instead.
Return
session id or null
if no session ID sent by the client