Condividi tramite


WebEventBufferFlushInfo.NotificationSequence Proprietà

Definizione

Ottiene la sequenza di messaggi nella notifica corrente.

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

Valore della proprietà

Numero che indica l'ordine della sequenza di messaggi nella notifica corrente, a partire da un indice pari a zero.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la NotificationSequence proprietà . Questo esempio di codice fa parte di un esempio più ampio fornito per la BufferedWebEventProvider classe .

private int GetNotificationSequence(
    WebEventBufferFlushInfo flushInfo)
{
    return flushInfo.NotificationSequence;
}
Private Function GetNotificationSequence(ByVal flushInfo _
As WebEventBufferFlushInfo) As Integer
    Return flushInfo.NotificationSequence
End Function 'GetNotificationSequence

Si applica a