Item Property

HttpServer.dll

Load a session from the store

Namespace:  HttpServer.Sessions
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public HttpSession this[
	string sessionId
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	sessionId As String _
) As HttpSession
Visual C++
public:
virtual property HttpSession^ default[String^ sessionId] {
	HttpSession^ get (String^ sessionId) sealed;
}

Parameters

sessionId
Type: System..::.String

Return Value

null if session is not found.

Implements

HttpSessionStore..::.Item[([(String])])

See Also