BufferModeSettings.UrgentFlushInterval Property

Definition

Gets or sets the minimum amount of time that can pass between buffer flushes.

C#
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("urgentFlushInterval", DefaultValue="00:00:00", IsRequired=true)]
public TimeSpan UrgentFlushInterval { get; set; }

Property Value

The minimum amount of time that can pass between buffer flushes.

Attributes

Examples

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.

C#
bufferModeSetting.UrgentFlushInterval = TimeSpan.Parse("00:01:00");

Remarks

This property must have a value greater than zero and less than or equal to the value of the RegularFlushInterval property. 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.

Applies to

Tuote Versiot
.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