Class GetComplete
- Namespace
- ComponentSpace.Saml2.Protocols
- Assembly
- ComponentSpace.Saml2.dll
Represents a get complete URI.
public class GetComplete
- Inheritance
-
GetComplete
- Inherited Members
Remarks
Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.
Constructors
GetComplete()
Initializes a new instance of the GetComplete class.
public GetComplete()
GetComplete(string)
Initializes a new instance of the GetComplete class.
public GetComplete(string uri)
Parameters
uristringThe URI.
GetComplete(XmlElement)
Initializes a new instance of the GetComplete class from XML.
public GetComplete(XmlElement xmlElement)
Parameters
xmlElementXmlElementThe get complete URI XML.
Exceptions
- SamlSerializationException
Thrown when the XML deserialization fails.
Properties
Uri
Gets or sets the URI.
public string Uri { get; set; }
Property Value
- string
The URI.
Methods
IsValid(XmlElement)
Indicates whether the XML is a get complete URI.
public static bool IsValid(XmlElement xmlElement)
Parameters
xmlElementXmlElementThe XML to test.
Returns
- bool
trueif the XML is a get complete URI; otherwisefalse.
ToXml(XmlDocument)
Serializes the get complete URI to XML.
public XmlElement ToXml(XmlDocument xmlDocument)
Parameters
xmlDocumentXmlDocumentThe owning XML document.
Returns
- XmlElement
The get complete URI as XML.
Exceptions
- SamlSerializationException
Thrown when the XML serialization fails.