LocalClientSecuritySettingsElement.ReplayCacheSize Property

Definition

Gets or sets a value that specifies the number of cached nonces used for replay detection.

public:
 property int ReplayCacheSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("replayCacheSize", DefaultValue=900000)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int ReplayCacheSize { get; set; }
[<System.Configuration.ConfigurationProperty("replayCacheSize", DefaultValue=900000)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.ReplayCacheSize : int with get, set
Public Property ReplayCacheSize As Integer

Property Value

The number of cached nonces used for replay detection. The default value is 500000.

Attributes

Remarks

If this limit is exceeded, the oldest nonce is removed and a new nonce is created for the new message.

Applies to