Class IisServerPlatformInformation
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the platform information for a Microsoft IIS server.
public class IisServerPlatformInformation : BaseTypeSection
- Inheritance
-
IisServerPlatformInformation
Constructors
IisServerPlatformInformation()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.IisServerPlatformInformation class.
public IisServerPlatformInformation()
Properties
Asp
Gets whether the classic ASP feature is installed.
public bool Asp { get; }
Property Value
BasicAuthentication
Gets whether the basic authentication feature is installed.
public bool BasicAuthentication { get; }
Property Value
CentralizedCertificates
Gets whether the centralized certificates feature is installed.
public bool CentralizedCertificates { get; }
Property Value
Cgi
Gets whether the CGI feature is installed.
public bool Cgi { get; }
Property Value
ClientCertificateMappingAuthentication
Gets whether the client certificate mapping authentication feature is installed.
public bool ClientCertificateMappingAuthentication { get; }
Property Value
DefaultDocuments
Gets whether the default documents feature is installed.
public bool DefaultDocuments { get; }
Property Value
DigestAuthentication
Gets whether the digest authentication feature is installed.
public bool DigestAuthentication { get; }
Property Value
DirectoryBrowsing
Gets whether the directory browsing feature is installed.
public bool DirectoryBrowsing { get; }
Property Value
DynamicCompression
Gets whether the dynamic compression feature is installed.
public bool DynamicCompression { get; }
Property Value
HttpErrors
Gets whether the HTTP errors feature is installed.
public bool HttpErrors { get; }
Property Value
HttpLogging
Gets whether the HTTP logging feature is installed.
public bool HttpLogging { get; }
Property Value
HttpRedirection
Gets whether the HTTP redirection feature is installed.
public bool HttpRedirection { get; }
Property Value
IPRestrictions
Gets whether the IP and domain restrictions feature is installed.
public bool IPRestrictions { get; }
Property Value
IsapiExtensions
Gets whether the ISAPI extensions feature is installed.
public bool IsapiExtensions { get; }
Property Value
IsapiFilters
Gets whether the ISAPI filters feature is installed.
public bool IsapiFilters { get; }
Property Value
ManagementService
Gets whether the IIS management service feature is installed.
public bool ManagementService { get; }
Property Value
OptionalFeatures
Gets or sets the installed optional features. This only applies to desktop operating systems.
public WindowsOptionalFeatures OptionalFeatures { get; set; }
Property Value
RequestFiltering
Gets whether the request filtering feature is installed.
public bool RequestFiltering { get; }
Property Value
ServerFeatures
Gets or sets the installed server features. This only applies to server operating systems.
public WindowsServerFeatures ServerFeatures { get; set; }
Property Value
StaticCompression
Gets whether the static compression feature is installed.
public bool StaticCompression { get; }
Property Value
StaticContent
Gets whether the static content feature is installed.
public bool StaticContent { get; }
Property Value
Tracing
Gets whether the tracing feature is installed.
public bool Tracing { get; }
Property Value
UrlAuthorization
Gets whether the URL authorization feature is installed.
public bool UrlAuthorization { get; }
Property Value
WebDavPublishing
Gets whether the WebDAV publishing feature is installed.
public bool WebDavPublishing { get; }
Property Value
WindowsAuthentication
Gets whether the Windows authentication feature is installed.
public bool WindowsAuthentication { get; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.IisServerPlatformInformation class from the specified XML.
public static IisServerPlatformInformation FromXml(string xml)
Parameters
xml
stringThe XML representation of the object.
Returns
- IisServerPlatformInformation
A CENTREL.XIA.Configuration.Types.IisServerPlatformInformation class.