WebEventBufferFlushInfo.NotificationSequence Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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 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