SamlDoNotCacheCondition Class

Definition

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

public ref class SamlDoNotCacheCondition : System::IdentityModel::Tokens::SamlCondition
public class SamlDoNotCacheCondition : System.IdentityModel.Tokens.SamlCondition
type SamlDoNotCacheCondition = class
    inherit SamlCondition
Public Class SamlDoNotCacheCondition
Inherits SamlCondition
Inheritance
SamlDoNotCacheCondition

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 SamlDoNotCacheCondition class represents one of the conditions defined by the SAML specification and it asserts that the SAML assertion must not be cached. To specify this condition for a SAML assertion, add the SamlDoNotCacheCondition class to the collection returned by the Conditions property.

Note

When the SamlDoNotCacheCondition is added as a condition to a SamlSecurityToken security token that is issued by a security token service for the WCF client, a WCF client does cache the security token. Because the client does not inspect the contents of the issued token, the token is cached. The client is token agnostic for issued tokens type and processes it the returned issued token as an opaque XML element. However, WCF security never caches the received issued token on the service side; it only caches the claims that are extracted from it during the token authentication process.

Constructors

SamlDoNotCacheCondition()

Initializes a new instance of the SamlDoNotCacheCondition class.

Properties

IsReadOnly

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

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:DoNotCacheCondition> 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:DoNotCacheCondition> element into the specified XML serializer.

Applies to

See also