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

Комментарии

Это счетчик, указывающий, сколько экземпляров события было вызвано приложением.

Применяется к