LocalClientSecuritySettings.ReplayWindow 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定訊息 Nonce 有效的最長時間。
public:
property TimeSpan ReplayWindow { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan ReplayWindow { get; set; }
member this.ReplayWindow : TimeSpan with get, set
Public Property ReplayWindow As TimeSpan
屬性值
TimeSpan,表示訊息 Nonce 有效的最長時間。 預設為五分鐘。
例外狀況
這個屬性設定為小於 0 的值。set
範例
這個範例會說明如何取得這個屬性。
TimeSpan replayWindow = settings.ReplayWindow;
Dim replayWindow As TimeSpan = settings.ReplayWindow
備註
Nonce是「使用一次的數位」,通常是驗證通訊協定中使用的亂數字,以確保舊通訊無法使用重新執行來攻擊。