Table of Contents

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

uri string

The URI.

GetComplete(XmlElement)

Initializes a new instance of the GetComplete class from XML.

public GetComplete(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The 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

xmlElement XmlElement

The XML to test.

Returns

bool

true if the XML is a get complete URI; otherwise false.

ToXml(XmlDocument)

Serializes the get complete URI to XML.

public XmlElement ToXml(XmlDocument xmlDocument)

Parameters

xmlDocument XmlDocument

The owning XML document.

Returns

XmlElement

The get complete URI as XML.

Exceptions

SamlSerializationException

Thrown when the XML serialization fails.