RuleSettings.MinInstances 属性

定义

获取或设置在事件引发至提供程序之前相同类型事件的最少发生次数。

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 类提供的一个更大示例的一部分。

ruleSetting.MinInstances = 1;
ruleSetting.MinInstances = 1

注解

此属性的值必须大于零。 无效值可能会导致在保存配置节时引发异常。

这表示事件在将事件引发到提供程序之前发生的最小次数。 例如,如果返回值为 5,则在事件的第五个实例发生之前,ASP.NET 不会向提供程序引发事件。

适用于

另请参阅