共用方式為


BufferModeSettings.UrgentFlushThreshold 屬性

定義

取得或設定可在觸發更新前緩衝的事件數目。

public:
 property int UrgentFlushThreshold { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("urgentFlushThreshold", DefaultValue=2147483647, IsRequired=true)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int UrgentFlushThreshold { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))>]
[<System.Configuration.ConfigurationProperty("urgentFlushThreshold", DefaultValue=2147483647, IsRequired=true)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.UrgentFlushThreshold : int with get, set
Public Property UrgentFlushThreshold As Integer

屬性值

Int32

可在觸發更新前緩衝的事件數目。

屬性

範例

下列程式碼範例示範如何使用 MaxBufferSize 屬性。 此程式碼範例是針對 類別提供的較大範例的 HealthMonitoringSection 一部分。

bufferModeSetting.UrgentFlushThreshold = 1;
bufferModeSetting.UrgentFlushThreshold = 1

備註

這個屬性的值必須大於零,且小於或等於 屬性的值 MaxBufferSize 。 儲存組態區段時,不正確值可能會導致例外狀況。

預設值會根據提供者而有所不同。 BufferModeSettings集合中的 BufferModes 物件會依名稱由集合中的 Providers 提供者參考。

適用於

另請參閱