BufferModesCollection.Add(BufferModeSettings) Method
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.
Adds a BufferModeSettings object to the collection.
public:
void Add(System::Web::Configuration::BufferModeSettings ^ bufferModeSettings);
public void Add (System.Web.Configuration.BufferModeSettings bufferModeSettings);
member this.Add : System.Web.Configuration.BufferModeSettings -> unit
Public Sub Add (bufferModeSettings As BufferModeSettings)
Parameters
- bufferModeSettings
- BufferModeSettings
A BufferModeSettings object to add to the collection.
Exceptions
The BufferModeSettings object to add already exists in the collection, or the collection is read-only.
Examples
The following code example shows how to use the Add method. This code example is part of a larger example provided for the HealthMonitoringSection class.
// Add a BufferModeSettings object to the BufferModes collection property.
BufferModeSettings bufferModeSetting = new BufferModeSettings("Error Log",
1024, 256, 512, new TimeSpan(0, 30, 0), new TimeSpan(0, 5, 0), 2);
bufferModeSetting.Name = "Operations Notification";
bufferModeSetting.MaxBufferSize = 128;
bufferModeSetting.MaxBufferThreads = 1;
bufferModeSetting.MaxFlushSize = 24;
bufferModeSetting.RegularFlushInterval = TimeSpan.MaxValue;
bufferModeSetting.UrgentFlushInterval = TimeSpan.Parse("00:01:00");
bufferModeSetting.UrgentFlushThreshold = 1;
healthMonitoringSection.BufferModes.Add(bufferModeSetting);
' Add a BufferModeSettings object to the BufferModes collection property.
Dim bufferModeSetting As BufferModeSettings = new BufferModeSettings("Error Log", _
1024, 256, 512, new TimeSpan(0, 30, 0), new TimeSpan(0, 5, 0), 2)
bufferModeSetting.Name = "Operations Notification"
bufferModeSetting.MaxBufferSize = 128
bufferModeSetting.MaxBufferThreads = 1
bufferModeSetting.MaxFlushSize = 24
bufferModeSetting.RegularFlushInterval = TimeSpan.MaxValue
bufferModeSetting.UrgentFlushInterval = TimeSpan.Parse("00:01:00")
bufferModeSetting.UrgentFlushThreshold = 1
healthMonitoringSection.BufferModes.Add(bufferModeSetting)
Remarks
The collection must not already contain a BufferModeSettings object with the same name.