LocalServiceSecuritySettings.ReplayCacheSize Property

Definition

Gets or sets the size of the nonce cache used for replay detection.

public:
 property int ReplayCacheSize { int get(); void set(int value); };
public int ReplayCacheSize { get; set; }
member this.ReplayCacheSize : int with get, set
Public Property ReplayCacheSize As Integer

Property Value

The size of the nonce cache used for replay detection. The default is 900,000.

Examples

This example shows how to get the value of this property.

int replayCacheSize = settings.ReplayCacheSize;
Dim replayCacheSize = settings.ReplayCacheSize

Remarks

A nonce is a "number used once".

If the nonce count is exceeded, the incoming message is rejected and a MessageSecurityException is thrown. Old nonces are removed in a timely manner.

Applies to