RuleSettings.MaxLimit Property

Definition

Gets or sets the maximum number of times events of the same type are raised.

[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("maxLimit", DefaultValue=2147483647)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxLimit { get; set; }

Property Value

The maximum number of times events of the same type are raised. The default value is Int32.MaxValue.

Attributes

Examples

The following code example shows how to use the MaxLimit property. This code example is part of a larger example provided for the HealthMonitoringSection class.

ruleSetting.MaxLimit = Int32.MaxValue;

Remarks

This property must have a value greater than zero. Invalid values may cause an exception to be thrown when the configuration section is saved.

This represents the maximum number of times an event of the same type will be raised. For example, if the value is 10, then the event will be raised 10 times and ignored thereafter.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also