Class IisAspLimitsSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the classic ASP limits settings.
public class IisAspLimitsSettings : GlobalSerializableBase
- Inheritance
-
IisAspLimitsSettings
Constructors
IisAspLimitsSettings()
Intializes a new instance of the CENTREL.XIA.Configuration.Types.IisAspLimitsSettings class.
public IisAspLimitsSettings()
Properties
ClientConnectionTestInterval
Gets or sets the client connection test interval.
public SerializableTimeSpan ClientConnectionTestInterval { get; set; }
Property Value
- SerializableTimeSpan
MaximumRequestingEntityBodyLimit
Gets or sets the maximum requesting entity body limit.
public int MaximumRequestingEntityBodyLimit { get; set; }
Property Value
ProcessorThreadLimit
Gets or sets the limit to the number of threads per processor.
public int ProcessorThreadLimit { get; set; }
Property Value
QueueLength
Gets or sets the maximum number of concurrent ASP requests that are allowed into the request queue.
public int QueueLength { get; set; }
Property Value
RequestQueueTimeout
Gets or sets the request queue timeout.
public SerializableTimeSpan RequestQueueTimeout { get; set; }
Property Value
- SerializableTimeSpan
ResponseBufferingLimit
Gets or sets the response buffering limit.
public int ResponseBufferingLimit { get; set; }
Property Value
ScriptTimeout
Gets or sets the script timeout.
public SerializableTimeSpan ScriptTimeout { get; set; }
Property Value
- SerializableTimeSpan
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.IisAspLimitsSettings class from the specified Xml.
public static IisAspLimitsSettings FromXml(string xml)
Parameters
xml
stringThe XML representation of the CENTREL.XIA.Configuration.Types.IisAspLimitsSettings object
Returns
- IisAspLimitsSettings
A CENTREL.XIA.Configuration.Types.IisAspLimitsSettings class from the specified Xml.