WebEventBufferFlushInfo.NotificationSequence Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Recebe a sequência de mensagens na notificação atual.
public:
property int NotificationSequence { int get(); };
public int NotificationSequence { get; }
member this.NotificationSequence : int
Public ReadOnly Property NotificationSequence As Integer
Valor de Propriedade
O número indica a ordem da sequência de mensagens na notificação atual, começando com um índice zero.
Exemplos
O seguinte exemplo de código mostra como usar a NotificationSequence propriedade. Este exemplo de código faz parte de um exemplo maior fornecido para a 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