LocalServiceSecuritySettingsElement.ReplayCacheSize Property
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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.