WebBaseEvent.EventSequence Propriedade

Definição

Obtém o número de vezes que o evento foi levantado pela aplicação.

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

Valor de Propriedade

O número de vezes que o evento foi mencionado.

Exemplos

O seguinte exemplo de código mostra como obter o EventSequence valor.

// 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

Observações

Este é um contador que indica quantas instâncias do evento foram levantadas pela aplicação.

Aplica-se a