次の方法で共有


WebEventBufferFlushInfo.NotificationSequence プロパティ

定義

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

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

プロパティ値

Int32

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

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

適用対象