BufferModeSettings.MaxFlushSize Property

 

Gets or sets the maximum number of events per flush.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

[<ConfigurationPropertyAttribute("maxFlushSize", IsRequired = true,
    DefaultValue = 2147483647)>]
[<TypeConverterAttribute(typeof(InfiniteIntConverter))>]
[<IntegerValidatorAttribute(MinValue = 1)>]
member MaxFlushSize : int with get, set

Property Value

Type: System.Int32

The maximum number of events per flush.

This property must have a value greater than zero. Invalid values may cause an exception to be thrown 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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: