Class AuthnAuthorityDescriptor
Represents an authentication authority descriptor.
Inherited Members
Namespace: ComponentSpace.Saml2.Metadata
Assembly: ComponentSpace.Saml2.dll
Syntax
public class AuthnAuthorityDescriptor : RoleDescriptorType
Remarks
Refer to the Metadata for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.
Constructors
AuthnAuthorityDescriptor()
Initializes a new instance of the AuthnAuthorityDescriptor
class.
Declaration
public AuthnAuthorityDescriptor()
AuthnAuthorityDescriptor(XmlElement)
Initializes a new instance of the AuthnAuthorityDescriptor
class from XML.
Declaration
public AuthnAuthorityDescriptor(XmlElement xmlElement)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | xmlElement | The authentication authority descriptor XML. |
Exceptions
Type | Condition |
---|---|
SamlSerializationException | Thrown when the XML deserialization fails. |
Properties
AssertionIDRequestServices
Gets or sets the list of assertion ID request services.
Declaration
public IList<AssertionIDRequestService> AssertionIDRequestServices { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<AssertionIDRequestService> | The list of assertion ID request services. |
AuthnQueryServices
Gets or sets the list of authentication query services.
Declaration
public IList<AuthnQueryService> AuthnQueryServices { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<AuthnQueryService> | The list of authentication query services. |
NameIDFormats
Gets or sets the list of name ID formats.
Declaration
public IList<NameIDFormat> NameIDFormats { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<NameIDFormat> | The list of name ID formats. |
Methods
IsValid(XmlElement)
Indicates whether the XML is an authentication authority descriptor.
Declaration
public static bool IsValid(XmlElement xmlElement)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | xmlElement | The XML to test. |
Returns
Type | Description |
---|---|
System.Boolean |
|
ToXml(XmlDocument)
Serializes the authentication authority descriptor to XML.
Declaration
public XmlElement ToXml(XmlDocument xmlDocument)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlDocument | xmlDocument | The owning XML document. |
Returns
Type | Description |
---|---|
System.Xml.XmlElement | The authentication authority descriptor as XML. |
Exceptions
Type | Condition |
---|---|
SamlSerializationException | Thrown when the XML serialization fails. |