BufferModeSettings.UrgentFlushThreshold Property
.NET Framework (current version)
Gets or sets the number of events that can be buffered before a flush is triggered.
Assembly: System.Web (in System.Web.dll)
[<ConfigurationPropertyAttribute("urgentFlushThreshold", IsRequired = true, DefaultValue = 2147483647)>] [<TypeConverterAttribute(typeof(InfiniteIntConverter))>] [<IntegerValidatorAttribute(MinValue = 1)>] member UrgentFlushThreshold : int with get, set
Property Value
Type: System.Int32The number of events that can be buffered before a flush is triggered.
This property must have a value greater than zero and less than or equal to the value of the MaxBufferSize property. Invalid values may cause an exception when the configuration section is saved.
The default value varies based on the provider. The BufferModeSettings objects in the BufferModes collection are referred to by name by the providers in the Providers collection.
The following code example shows how to use the MaxBufferSize 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: