RuleSettings.MinInterval 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定兩個相同型別事件之間的最短時間間隔。
public:
property TimeSpan MinInterval { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("minInterval", DefaultValue="00:00:00")]
public TimeSpan MinInterval { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("minInterval", DefaultValue="00:00:00")>]
member this.MinInterval : TimeSpan with get, set
Public Property MinInterval As TimeSpan
屬性值
兩個相同型別事件之間的最短間隔。 預設值為 0 刻度。
- 屬性
範例
下列程式碼範例示範如何使用 MinInterval 屬性。 此程式碼範例是提供給 類別之較大範例的 HealthMonitoringSection 一部分。
ruleSetting.MinInterval = TimeSpan.Parse("00:00:30");
ruleSetting.MinInterval = TimeSpan.Parse("00:00:30")
備註
您可以將此值設定為 MaxValue ,以無限方式設定此值。 不正確值可能會導致儲存組態區段時擲回例外狀況。
如果值為零,則沒有最小間隔。