共用方式為


ProfileSettings.MinInterval 屬性

定義

取得或設定兩個相同型別事件之間的最短間隔。

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 ,則沒有最小間隔。

適用於

另請參閱