ProfileSettings.MaxLimit Property
.NET Framework (current version)
Gets or sets the maximum number of times events of the same type are raised.
Assembly: System.Web (in System.Web.dll)
[<ConfigurationPropertyAttribute("maxLimit", DefaultValue = 2147483647)>] [<TypeConverterAttribute(typeof(InfiniteIntConverter))>] [<IntegerValidatorAttribute(MinValue = 0)>] member MaxLimit : int with get, set
Property Value
Type: System.Int32The maximum number of times events of the same type are raised. The default is MaxValue.
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.
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: