WebEventBufferFlushInfo.NotificationSequence 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前告知的訊息序列。
public:
property int NotificationSequence { int get(); };
public int NotificationSequence { get; }
member this.NotificationSequence : int
Public ReadOnly Property NotificationSequence As Integer
屬性值
指示目前告知中訊息序列順序的數字,以零索引起始。
範例
下列程式碼範例示範如何使用 NotificationSequence 屬性。 此程式碼範例是提供給 類別之較大範例的 BufferedWebEventProvider 一部分。
private int GetNotificationSequence(
WebEventBufferFlushInfo flushInfo)
{
return flushInfo.NotificationSequence;
}
Private Function GetNotificationSequence(ByVal flushInfo _
As WebEventBufferFlushInfo) As Integer
Return flushInfo.NotificationSequence
End Function 'GetNotificationSequence