Class BaseIDAbstractType
Represents the base identifier abstract type.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 |
---|---|---|
System.String | nameQualifier | The name qualifier. |
System.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 |
---|---|---|
System.Xml.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 |
---|---|
System.String | The name qualifier. |
SPNameQualifier
Gets or sets the SP name qualifier.
Declaration
public string SPNameQualifier { get; set; }
Property Value
Type | Description |
---|---|
System.String | The SP name qualifier. |
Methods
ToXml(XmlElement)
Serializes the base identifier to XML.
Declaration
public void ToXml(XmlElement xmlElement)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | xmlElement | The owning XML element. |
Exceptions
Type | Condition |
---|---|
SAMLSerializationException | Thrown when the XML serialization fails. |