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 | 
|---|---|---|
| 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<EndpointType> AssertionIDRequestServices { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<EndpointType> | The list of assertion ID request services.  | 
      
AuthnQueryServices
Gets or sets the list of authentication query services.
Declaration
public IList<EndpointType> AuthnQueryServices { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<EndpointType> | The list of authentication query services.  | 
      
NameIDFormats
Gets or sets the list of name ID formats.
Declaration
public IList<string> NameIDFormats { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<string> | 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 | 
|---|---|---|
| XmlElement | xmlElement | The XML to test.  | 
      
Returns
| Type | Description | 
|---|---|
| bool | 
  | 
      
ToXml(XmlDocument)
Serializes the authentication authority descriptor to XML.
Declaration
public XmlElement ToXml(XmlDocument xmlDocument)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlDocument | xmlDocument | The owning XML document.  | 
      
Returns
| Type | Description | 
|---|---|
| XmlElement | The authentication authority descriptor as XML.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML serialization fails.  |