Class IisAuthenticationSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the IIS authentication settings.
public class IisAuthenticationSettings : BypassSection
- Inheritance
-
IisAuthenticationSettings
- Inherited Members
Constructors
IisAuthenticationSettings()
Intializes a new instance of the CENTREL.XIA.Configuration.Types.IisAuthenticationSettings class.
public IisAuthenticationSettings()
Properties
Anonymous
Gets or sets the anonymous authentication settings.
public IisAnonymousAuthenticationSettings Anonymous { get; set; }
Property Value
Basic
Gets or sets the basic authentication settings.
public IisBasicAuthenticationSettings Basic { get; set; }
Property Value
ClientCertificateMapping
Gets or sets the Active Directory client certificate mapping authentication settings.
public IisClientCertificateMappingAuthenticationSettings ClientCertificateMapping { get; set; }
Property Value
Digest
Gets or sets the digest authentication settings.
public IisDigestAuthenticationSettings Digest { get; set; }
Property Value
Forms
Gets or sets the forms authentication settings.
public IisFormsAuthenticationSettings Forms { get; set; }
Property Value
Impersonation
Gets or sets the ASP.NET impersonation settings.
public IisImpersonationAuthenticationSettings Impersonation { get; set; }
Property Value
Windows
Gets or sets the Windows authentication settings.
public IisWindowsAuthenticationSettings Windows { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.IisAuthenticationSettings class from the specified Xml.
public static IisAuthenticationSettings FromXml(string xml)
Parameters
xml
stringThe XML representation of the CENTREL.XIA.Configuration.Types.IisAuthenticationSettings object
Returns
- IisAuthenticationSettings
A CENTREL.XIA.Configuration.Types.IisAuthenticationSettings class from the specified Xml.
ToString()
Returns the authentication settings as a human readable string.
public override string ToString()
Returns
- string
The authentication as a human readable string.