次の方法で共有


WebBaseEvent.EventSequence プロパティ

定義

アプリケーションによるイベントの発生回数を取得します。

public:
 property long EventSequence { long get(); };
public long EventSequence { get; }
member this.EventSequence : int64
Public ReadOnly Property EventSequence As Long

プロパティ値

Int64

イベントの発生回数。

次のコード例は、値を取得する方法を EventSequence 示しています。

// Gets the event sequence.
public long GetEventSequence()
{
    // Get the event sequence.
    long eventSequence = EventSequence;
    return eventSequence;
}
' Gets the event sequence.
Public Function GetEventSequence() As Long
    ' Get the event sequence.
    Dim eventSequence As Long = eventSequence
    Return eventSequence

End Function 'GetEventSequence

注釈

これは、アプリケーションによって発生したイベントのインスタンスの数を示すカウンターです。

適用対象