Class AssertionIDRequest
Represents an assertion ID request.
Inherited Members
Namespace: ComponentSpace.SAML2.Protocols
Assembly: ComponentSpace.Saml2.dll
Syntax
public class AssertionIDRequest : RequestAbstractType
  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.
Declaration
public AssertionIDRequest()
  AssertionIDRequest(XmlElement)
Initializes a new instance of the AssertionIDRequest class from XML.
Declaration
public AssertionIDRequest(XmlElement xmlElement)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlElement | xmlElement | The assertion ID request XML.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML deserialization fails.  | 
      
Properties
AssertionIDRefs
Gets or sets the assertion ID refs.
Declaration
public IList<AssertionIDRef> AssertionIDRefs { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<AssertionIDRef> | The assertion ID refs.  | 
      
Methods
IsValid(XmlElement)
Indicates whether the XML is an assertion ID request.
Declaration
public static bool IsValid(XmlElement xmlElement)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlElement | xmlElement | The XML to test.  | 
      
Returns
| Type | Description | 
|---|---|
| bool | 
  | 
      
ToString()
Converts the assertion ID request to a string.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| string | The assertion ID request as a string.  | 
      
Overrides
ToXml()
Serializes the assertion ID request to XML.
Declaration
public XmlElement ToXml()
  Returns
| Type | Description | 
|---|---|
| XmlElement | The assertion ID request as XML.  | 
      
Remarks
An XML document is created.
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML serialization fails.  | 
      
ToXml(XmlDocument)
Serializes the assertion ID request to XML.
Declaration
public XmlElement ToXml(XmlDocument xmlDocument)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlDocument | xmlDocument | The owning XML document.  | 
      
Returns
| Type | Description | 
|---|---|
| XmlElement | The assertion ID request as XML.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML serialization fails.  |