Table of Contents

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

xmlElement XmlElement

The 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

IList<IdpEntry>

The IdP entries.

Methods

IsValid(XmlElement)

Indicates whether the XML is an IdP list.

public static bool IsValid(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The XML to test.

Returns

bool

true if the XML is an IdP list; otherwise false.

ToXml(XmlDocument)

Serializes the IdP list to XML.

public XmlElement ToXml(XmlDocument xmlDocument)

Parameters

xmlDocument XmlDocument

The owning XML document.

Returns

XmlElement

The IdP list as XML.

Exceptions

SamlSerializationException

Thrown when the XML serialization fails.