IdentityModelCachesElement::TokenReplayCache Property

.NET Framework (current version)
 

Gets or sets the Type of the token replay cache.

Namespace:   System.IdentityModel.Configuration
Assembly:  System.IdentityModel (in System.IdentityModel.dll)

public:
[ConfigurationPropertyAttribute("tokenReplayCache", IsRequired = false)]
property CustomTypeElement^ TokenReplayCache {
	CustomTypeElement^ get();
	void set(CustomTypeElement^ value);
}

Property Value

Type: System.IdentityModel.Configuration::CustomTypeElement^

The type of the token replay cache. The type must derive from System.IdentityModel.Tokens.TokenReplayCache.

This property is optional. It corresponds to an <tokenReplayCache> element specified under the <caches> element. It specifies the type of the cache to use to detect replayed tokens. All replay caches must derive from TokenReplayCache

Replay detection is enabled with the <tokenReplayDetection> element. This element is represented by the TokenReplayDetectionElement class.

.NET Framework
Available since 4.5
Return to top
Show: