ProfileSettings.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
屬性值
TimeSpan,指定兩個相同型別事件之間的最短間隔。 預設為 Zero。
- 屬性
範例
下列程式碼範例示範如何使用 MinInterval 屬性。 此程式碼範例是針對 類別提供的較大範例的 HealthMonitoringSection 一部分。
profileSetting.MinInterval = TimeSpan.Parse("00:01:00");
profileSetting.MinInterval = TimeSpan.Parse("00:01:00")
備註
值可以透過將它設定為 MaxValue 來變成無限。 不正確值可能會在儲存組態區段時造成例外狀況。
如果值為 Zero ,則沒有最小間隔。