SystemWebSectionGroup.SessionState Property
.NET Framework 3.0
Gets the sessionState section.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
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 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)
Community Additions
ADD
Show: