SamlConditions Class

Definition

Represents a set of conditions that must be taken into account when assessing the validity of a SAML assertion.

public ref class SamlConditions
public class SamlConditions
type SamlConditions = class
Public Class SamlConditions
Inheritance
SamlConditions

Remarks

SamlSecurityToken security tokens specify their claims using SAML assertions and a set of conditions that must be taken into account when assessing the validity of the SAML assertion. The SamlConditions class represents the set of conditions. An example of a condition is whether the SAML assertion must not be cached, which is represented by the SamlDoNotCacheCondition class.

The SAML specification defines two conditions and it allows for the set of conditions to be extended. The two conditions defined by the SAML specification are SamlAudienceRestrictionCondition and SamlDoNotCacheCondition. To define a new condition, derive a class from the SamlCondition class.

Constructors

SamlConditions()

Initializes a new instance of the SamlConditions class.

SamlConditions(DateTime, DateTime)

Initializes a new instance of the SamlConditions class using the specified timeframe that the SAML assertion is valid.

SamlConditions(DateTime, DateTime, IEnumerable<SamlCondition>)

Initializes a new instance of the SamlConditions class using the specified timeframe and conditions when the SAML assertion is valid.

Properties

Conditions

Gets the set of conditions that must be taken into consideration when assessing the validity of a SAML assertion.

IsReadOnly

Gets a value that indicates whether the properties of this instance are read-only.

NotBefore

Gets the earliest instant in time when the SAML assertion is valid.

NotOnOrAfter

Gets the instant in time when the SAML assertion expires.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MakeReadOnly()

Causes this instance to be read-only.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ReadXml(XmlDictionaryReader, SamlSerializer, SecurityTokenSerializer, SecurityTokenResolver)

Reads the <saml:Conditions> element from the specified XML reader.

ToString()

Returns a string that represents the current object.

(Inherited from Object)
WriteXml(XmlDictionaryWriter, SamlSerializer, SecurityTokenSerializer)

Writes the <saml:Conditions> element into the specified XML serializer.

Applies to

See also