次の方法で共有


WebEventBufferFlushInfo.NotificationSequence プロパティ

定義

現在の通知のメッセージ シーケンスを取得します。

public:
 property int NotificationSequence { int get(); };
public int NotificationSequence { get; }
member this.NotificationSequence : int
Public ReadOnly Property NotificationSequence As Integer

プロパティ値

現在の通知のメッセージ シーケンスの順序を示す番号。インデックスは 0 から始まります。

次のコード例は、 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

適用対象