LocalClientSecuritySettings.ReplayCacheSize 属性

定义

获取或设置用于重播检测的缓存 Nonce 的数目。

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

属性值

Int32

用于重播检测的缓存 Nonce 的数目。 默认值为 900000。

示例

此示例演示如何获取用于重播检测的缓存 Nonce 的数目。

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

注解

nonce 是一个“一次使用的数字”,通常是身份验证协议中使用的随机数,以确保旧通信不能在攻击中使用重播。

如果超过 Nonce 计数,则将拒绝传入的消息并引发 MessageSecurityException。 旧 Nonce 将被及时移除。

适用于