共用方式為


WebEventBufferFlushInfo.NotificationSequence 屬性

定義

取得目前告知的訊息序列。

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

適用於