Table of Contents

Class AssertionIDRequest

Namespace
ComponentSpace.Saml2.Protocols
Assembly
ComponentSpace.Saml2.dll

Represents an assertion ID request.

public class AssertionIDRequest : RequestAbstractType
Inheritance
AssertionIDRequest
Inherited Members

Remarks

Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.

Constructors

AssertionIDRequest()

Initializes a new instance of the AssertionIDRequest class.

public AssertionIDRequest()

AssertionIDRequest(XmlElement)

Initializes a new instance of the AssertionIDRequest class from XML.

public AssertionIDRequest(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The assertion ID request XML.

Exceptions

SamlSerializationException

Thrown when the XML deserialization fails.

Properties

AssertionIDRefs

Gets or sets the assertion ID refs.

public IList<AssertionIDRef> AssertionIDRefs { get; set; }

Property Value

IList<AssertionIDRef>

The assertion ID refs.

Methods

IsValid(XmlElement)

Indicates whether the XML is an assertion ID request.

public static bool IsValid(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The XML to test.

Returns

bool

true if the XML is an assertion ID request; otherwise false.

ToXml(XmlDocument)

Serializes the assertion ID request to XML.

public override XmlElement ToXml(XmlDocument xmlDocument)

Parameters

xmlDocument XmlDocument

The owning XML document.

Returns

XmlElement

The assertion ID request as XML.

Exceptions

SamlSerializationException

Thrown when the XML serialization fails.