Class IdpList
- Namespace
- ComponentSpace.Saml2.Protocols
- Assembly
- ComponentSpace.Saml2.dll
Represents an IdP list.
public class IdpList
- Inheritance
-
IdpList
- Inherited Members
Remarks
Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.
Constructors
IdpList()
Initializes a new instance of the IdpList class.
public IdpList()
IdpList(XmlElement)
Initializes a new instance of the IdpList class from XML.
public IdpList(XmlElement xmlElement)
Parameters
xmlElementXmlElementThe IdP list XML.
Exceptions
- SamlSerializationException
Thrown when the XML deserialization fails.
Properties
GetComplete
Gets or sets the get complete URI.
public GetComplete GetComplete { get; set; }
Property Value
- GetComplete
The get complete URI.
IdpEntries
Gets or sets the IdP entries.
public IList<IdpEntry> IdpEntries { get; set; }
Property Value
Methods
IsValid(XmlElement)
Indicates whether the XML is an IdP list.
public static bool IsValid(XmlElement xmlElement)
Parameters
xmlElementXmlElementThe XML to test.
Returns
- bool
trueif the XML is an IdP list; otherwisefalse.
ToXml(XmlDocument)
Serializes the IdP list to XML.
public XmlElement ToXml(XmlDocument xmlDocument)
Parameters
xmlDocumentXmlDocumentThe owning XML document.
Returns
- XmlElement
The IdP list as XML.
Exceptions
- SamlSerializationException
Thrown when the XML serialization fails.