Class IisAspCacheSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the classic ASP cache settings.
public class IisAspCacheSettings : GlobalSerializableBase
- Inheritance
-
IisAspCacheSettings
Constructors
IisAspCacheSettings()
Intializes a new instance of the CENTREL.XIA.Configuration.Types.IisAspCacheSettings class.
public IisAspCacheSettings()
Properties
CacheDirectory
Gets or sets the path to the cache directory.
public string CacheDirectory { get; set; }
Property Value
EnableTypeLibraryCaching
Gets or sets whether to enable type library caching.
public BooleanOption EnableTypeLibraryCaching { get; set; }
Property Value
MaximumDiskCachedFiles
Gets or sets the maximum disk cached files.
public int MaximumDiskCachedFiles { get; set; }
Property Value
MaximumMemoryCachedFiles
Gets or sets the maximum number of memory cached files.
public int MaximumMemoryCachedFiles { get; set; }
Property Value
MaximumScriptEnginesCached
Gets or sets the maximum number of script engines cached.
public int MaximumScriptEnginesCached { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.IisAspCacheSettings class from the specified Xml.
public static IisAspCacheSettings FromXml(string xml)
Parameters
xml
stringThe XML representation of the CENTREL.XIA.Configuration.Types.IisAspCacheSettings object
Returns
- IisAspCacheSettings
A CENTREL.XIA.Configuration.Types.IisAspCacheSettings class from the specified Xml.