WebEventBufferFlushInfo.NotificationSequence プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の通知のメッセージ シーケンスを取得します。
public:
property int NotificationSequence { int get(); };
public int NotificationSequence { get; }
member this.NotificationSequence : int
Public ReadOnly Property NotificationSequence As Integer
プロパティ値
現在の通知のメッセージ シーケンス順を示す番号。インデックスはゼロから始まります。
例
次のコード例は、NotificationSequence プロパティの使用方法を示しています。 このコード例は、BufferedWebEventProvider クラスのために提供されている大規模な例の一部です。
private int GetNotificationSequence(
WebEventBufferFlushInfo flushInfo)
{
return flushInfo.NotificationSequence;
}
Private Function GetNotificationSequence(ByVal flushInfo _
As WebEventBufferFlushInfo) As Integer
Return flushInfo.NotificationSequence
End Function 'GetNotificationSequence