LocalServiceSecuritySettings.ReplayWindow 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定服務可接受訊息的時間上限。
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,表示服務可接受訊息的時間上限。 預設值是 5 分鐘。
例外狀況
此屬性設定為小於 0 的值。
範例
這個範例將示範如何取得這個屬性的值。
TimeSpan replayWindow = settings.ReplayWindow;
Dim replayWindow As TimeSpan = settings.ReplayWindow
備註
Nonce 是一次使用的數目。
服務會拒絕在過去傳送超過 ReplayWindow 持續時間的所有訊息。 到達 ReplayWindow
內的訊息會檢查其 Nonce,看看是否是唯一的。