ProfileSettings.MaxLimit Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the maximum number of times events of the same type are raised.
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
Property Value
The maximum number of times events of the same type are raised. The default 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.
profileSetting.MaxLimit = Int32.MaxValue;
profileSetting.MaxLimit = Int32.MaxValue
Remarks
This property must have a value greater than zero. The value can be made infinite by setting it to MaxValue. Invalid values may cause an exception to be thrown when the configuration section is saved.
This property specifies the maximum number of times an event of the same type will be raised. For example if the value is 10
, the event will be raised 10 times and ignored thereafter.