WebEventBufferFlushInfo.NotificationSequence Property      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the message sequence in the current notification.
public:
 property int NotificationSequence { int get(); };
	public int NotificationSequence { get; }
	member this.NotificationSequence : int
	Public ReadOnly Property NotificationSequence As Integer
	Property Value
The number indicating the message sequence order in the current notification, beginning with an index of zero.
Examples
The following code example shows how to use the NotificationSequence property. This code example is part of a larger example provided for the BufferedWebEventProvider class.
private int GetNotificationSequence(
    WebEventBufferFlushInfo flushInfo)
{
    return flushInfo.NotificationSequence;
}
Private Function GetNotificationSequence(ByVal flushInfo _
As WebEventBufferFlushInfo) As Integer
    Return flushInfo.NotificationSequence
End Function 'GetNotificationSequence