ProfileSettings.MinInstances 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定在對提供者引發之前,事件最少的發生次數。
public:
property int MinInstances { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("minInstances", DefaultValue=1)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int MinInstances { get; set; }
[<System.Configuration.ConfigurationProperty("minInstances", DefaultValue=1)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.MinInstances : int with get, set
Public Property MinInstances As Integer
屬性值
對提供者引發之前,事件最少的發生次數。 預設為 1
。
- 屬性
範例
下列程式碼範例示範如何使用 MinInstances 屬性。 此程式碼範例是針對 類別提供的較大範例的 HealthMonitoringSection 一部分。
profileSetting.MinInstances = 1;
profileSetting.MinInstances = 1
備註
這個屬性的值必須大於零。 值可以透過將它設定為 MaxValue 來變成無限。 不正確值可能會在儲存組態區段時擲回例外狀況。
這個屬性會指定事件在引發至提供者之前所發生的事件次數下限。 例如,的值 5
表示在發生事件的第五個實例之前,ASP.NET 不會引發事件給提供者。 如果此值為無限 (MaxValue) ,則不會對提供者引發任何事件。