WebEventBufferFlushInfo.NotificationSequence Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la séquence de messages dans la notification en cours.
public:
property int NotificationSequence { int get(); };
public int NotificationSequence { get; }
member this.NotificationSequence : int
Public ReadOnly Property NotificationSequence As Integer
Valeur de propriété
Nombre indiquant l'ordre séquentiel des messages dans la notification en cours, en commençant par un index de zéro.
Exemples
L'exemple de code suivant montre comment utiliser la propriété NotificationSequence. Cet exemple de code fait partie d’un exemple plus grand fourni pour 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