Table of Contents

Class ArtifactResolve

Namespace
ComponentSpace.Saml2.Protocols
Assembly
ComponentSpace.Saml2.dll

Represents an artifact resolve request.

public class ArtifactResolve : RequestAbstractType
Inheritance
ArtifactResolve
Inherited Members

Remarks

Refer to the Assertions and Protocol for the OASIS Security Assertion Markup Language (SAML) V2.0 specification for further details.

Constructors

ArtifactResolve()

Initializes a new instance of the ArtifactResolve class.

public ArtifactResolve()

ArtifactResolve(XmlElement)

Initializes a new instance of the ArtifactResolve class from XML.

public ArtifactResolve(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The artifact resolve request XML.

Exceptions

SamlSerializationException

Thrown when the XML deserialization fails.

Properties

Artifact

Gets or sets the artifact.

public Artifact Artifact { get; set; }

Property Value

Artifact

The artifact.

Methods

IsValid(XmlElement)

Indicates whether the XML is an artifact resolve request.

public static bool IsValid(XmlElement xmlElement)

Parameters

xmlElement XmlElement

The XML to test.

Returns

bool

true if the XML is an artifact resolve request; otherwise false.

ToXml(XmlDocument)

Serializes the artifact resolve request to XML.

public override XmlElement ToXml(XmlDocument xmlDocument)

Parameters

xmlDocument XmlDocument

The owning XML document.

Returns

XmlElement

The artifact resolve request as XML.

Exceptions

SamlSerializationException

Thrown when the XML serialization fails.