Class IisAspSessionSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the classic ASP session settings.
public class IisAspSessionSettings : GlobalSerializableBase
- Inheritance
-
IisAspSessionSettings
Constructors
IisAspSessionSettings()
Intializes a new instance of the CENTREL.XIA.Configuration.Types.IisAspSessionSettings class.
public IisAspSessionSettings()
Properties
EnableSessionState
Gets or sets whether session state is enabled.
public BooleanOption EnableSessionState { get; set; }
Property Value
KeepSessionIdSecure
Gets or sets whether to assign a new ID on secure connection.
public BooleanOption KeepSessionIdSecure { get; set; }
Property Value
MaximumSessions
Gets or sets the maximum number of sessions.
public uint MaximumSessions { get; set; }
Property Value
SessionTimeout
Gets or sets the session timeout.
public SerializableTimeSpan SessionTimeout { get; set; }
Property Value
- SerializableTimeSpan
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.IisAspSessionSettings class from the specified Xml.
public static IisAspSessionSettings FromXml(string xml)
Parameters
xml
stringThe XML representation of the CENTREL.XIA.Configuration.Types.IisAspSessionSettings object
Returns
- IisAspSessionSettings
A CENTREL.XIA.Configuration.Types.IisAspSessionSettings class from the specified Xml.