WebEventBufferFlushInfo.NotificationSequence Property

Definition

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

Applies to