BufferModeSettings 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定事件提供者的 ASP.NET 事件緩衝設定。 此類別無法獲得繼承。
public ref class BufferModeSettings sealed : System::Configuration::ConfigurationElement
public sealed class BufferModeSettings : System.Configuration.ConfigurationElement
type BufferModeSettings = class
inherit ConfigurationElement
Public NotInheritable Class BufferModeSettings
Inherits ConfigurationElement
- 繼承
範例
下列組態檔摘錄示範如何宣告方式指定類別數個 BufferModeSettings 屬性的值。
<healthMonitoring>
<bufferModes>
<add name="Critical Notification"
maxBufferSize="100"
maxFlushSize="20"
urgentFlushThreshold="1"
regularFlushInterval="Infinite"
urgentFlushInterval="00:01:00"
maxBufferThreads="1"
/>
<add name="Notification"
maxBufferSize="300"
maxFlushSize="20"
urgentFlushThreshold="1"
regularFlushInterval="Infinite"
urgentFlushInterval="00:01:00"
maxBufferThreads="1"
/>
<add name="Analysis"
maxBufferSize="1000"
maxFlushSize="100"
urgentFlushThreshold="100"
regularFlushInterval="00:05:00"
urgentFlushInterval="00:01:00"
maxBufferThreads="1"
/>
<add name="Logging"
maxBufferSize="1000"
maxFlushSize="200"
urgentFlushThreshold="800"
regularFlushInterval="00:30:00"
urgentFlushInterval="00:05:00"
maxBufferThreads="1"
/>
</bufferModes>
</healthMonitoring>
備註
類別 BufferModeSettings 可用來定義事件提供者的角色,例如重要、通知、分析和記錄。 每個角色會根據該角色的適用,以不同的方式緩衝事件。 例如,重要角色會讓 、 MaxFlushSize 和 UrgentFlushInterval 屬性保持 MaxBufferSize 較小,而分析角色會將這些屬性設定為較高的值。
這個類別會對應至 bufferModes
組態檔專案。
建構函式
BufferModeSettings(String, Int32, Int32, Int32, TimeSpan, TimeSpan, Int32) |
使用指定的設定,初始化 BufferModeSettings 類別的新執行個體。 |