SamlConditions Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
WriteXml(XmlDictionaryWriter, SamlSerializer, SecurityTokenSerializer) |
Writes the |