次の方法で共有


RuleSettings.MaxLimit プロパティ

定義

同じ型のイベントが発生できる最大回数を取得または設定します。

public:
 property int MaxLimit { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("maxLimit", DefaultValue=2147483647)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxLimit { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))>]
[<System.Configuration.ConfigurationProperty("maxLimit", DefaultValue=2147483647)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxLimit : int with get, set
Public Property MaxLimit As Integer

プロパティ値

同じ型のイベントが発生できる最大回数。 既定値は Int32.MaxValue です

属性

次のコード例は、MaxLimit プロパティの使用方法を示しています。 このコード例は、HealthMonitoringSection クラスのために提供されている大規模な例の一部です。

ruleSetting.MaxLimit = Int32.MaxValue;
ruleSetting.MaxLimit = Int32.MaxValue

注釈

このプロパティには、0 より大きい値が必要です。 無効な値を指定すると、構成セクションの保存時に例外がスローされる可能性があります。

これは、同じ型のイベントが発生する最大回数を表します。 たとえば、値が の場合、イベントは 1010 回発生し、その後は無視されます。

適用対象

こちらもご覧ください