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à

Int32

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

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà NotificationSequence. Questo esempio di codice fa parte di un esempio più grande 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