SessionStateSection::Mode Property
.NET Framework (current version)
Gets or sets a value specifying where to store the session state.
Assembly: System.Web (in System.Web.dll)
public: [ConfigurationPropertyAttribute("mode", DefaultValue = SessionStateMode::InProc)] property SessionStateMode Mode { SessionStateMode get(); void set(SessionStateMode value); }
Property Value
Type: System.Web.SessionState::SessionStateModeOne of the SessionStateMode values. The default value is InProc.
The SessionStateMode is not a required attribute and can be inherited from a higher level in the configuration hierarchy or from the default value. However, the configuration handler for this section will always write out the mode based on the current inherited value when writing this section.
The following code example demonstrates how to get the Mode property. Refer to the code example in the SessionStateSection class topic to learn how to access the SessionStateSection object.
.NET Framework
Available since 2.0
Available since 2.0
Show: