WebEventBufferFlushInfo.EventsDiscardedSinceLastNotification プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
最後の通知以降に破棄されたイベント数を取得します。
public:
property int EventsDiscardedSinceLastNotification { int get(); };
public int EventsDiscardedSinceLastNotification { get; }
member this.EventsDiscardedSinceLastNotification : int
Public ReadOnly Property EventsDiscardedSinceLastNotification As Integer
プロパティ値
最後の通知以降にバッファリング機構によって破棄されたイベント数。
例
次のコード例は、EventsDiscardedSinceLastNotification プロパティの使用方法を示しています。 このコード例は、BufferedWebEventProvider クラスのために提供されている大規模な例の一部です。
private int GetEventsDiscardedSinceLastNotification(
WebEventBufferFlushInfo flushInfo)
{
return flushInfo.EventsDiscardedSinceLastNotification;
}
Private Function GetEventsDiscardedSinceLastNotification( _
ByVal flushInfo _
As WebEventBufferFlushInfo) As Integer
Return flushInfo.EventsDiscardedSinceLastNotification
End Function 'GetEventsDiscardedSinceLastNotification
注釈
設計上、バッファリング メカニズムでは、受信イベントに合わせていくつかのイベントが削除される可能性があります。 構成セクションの 要素を適切に変更することで、このメカニズムを bufferModes
調整するのはユーザーの healthMonitoring
担当です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET