SystemWebSectionGroup.SessionState Property

Gets the sessionState section.

Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)

'Declaration
Public ReadOnly Property SessionState As SessionStateSection
'Usage
Dim instance As SystemWebSectionGroup
Dim value As SessionStateSection

value = instance.SessionState

/** @property */
public SessionStateSection get_SessionState ()

public function get SessionState () : SessionStateSection

Not applicable.

Property Value

The SessionStateSection object.

The SessionStateSection object refers to the sessionState section of the configuration file.

The following code example shows how to obtain the SessionStateSection object from the configuration file of an existing Web application.

' Get the sessionState section.
Dim sessionState _
As SessionStateSection = _
systemWeb.SessionState
' Read section information.
info = sessionState.SectionInformation
name = info.SectionName
type = info.Type
declared = info.IsDeclared.ToString()
msg = String.Format("Name:     {0}" + _
ControlChars.Lf + "Declared: {1}" + _
ControlChars.Lf + "Type:     {2}" + _
ControlChars.Lf, name, declared, type)


Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: