Class BaseIDAbstractType
Represents the base identifier abstract type.
Inherited Members
Namespace: ComponentSpace.SAML2.Assertions
Assembly: ComponentSpace.Saml2.dll
Syntax
public abstract class BaseIDAbstractType
  Remarks
Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.
Constructors
BaseIDAbstractType()
Initializes a new instance of the BaseIDAbstractType class.
Declaration
public BaseIDAbstractType()
  BaseIDAbstractType(string, string)
Initializes a new instance of the BaseIDAbstractType class.
Declaration
public BaseIDAbstractType(string nameQualifier, string spNameQualifier)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | nameQualifier | The name qualifier.  | 
      
| string | spNameQualifier | The SP name qualifier.  | 
      
BaseIDAbstractType(XmlElement)
Initializes a new instance of the BaseIDAbstractType class from XML.
Declaration
public BaseIDAbstractType(XmlElement xmlElement)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlElement | xmlElement | The base identifier XML.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML deserialization fails.  | 
      
Properties
NameQualifier
Gets or sets the name qualifier.
Declaration
public string NameQualifier { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | The name qualifier.  | 
      
SPNameQualifier
Gets or sets the SP name qualifier.
Declaration
public string SPNameQualifier { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | The SP name qualifier.  | 
      
Methods
ToXml(XmlElement)
Serializes the base identifier to XML.
Declaration
public void ToXml(XmlElement xmlElement)
  Parameters
| Type | Name | Description | 
|---|---|---|
| XmlElement | xmlElement | The owning XML element.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| SAMLSerializationException | Thrown when the XML serialization fails.  |