Partager via


WebEventBufferFlushInfo.LastNotificationUtc Propriété

Définition

Obtient la date et l'heure de la dernière notification.

public:
 property DateTime LastNotificationUtc { DateTime get(); };
public DateTime LastNotificationUtc { get; }
member this.LastNotificationUtc : DateTime
Public ReadOnly Property LastNotificationUtc As DateTime

Valeur de propriété

DateTime

Date et heure de la dernière notification.

Exemples

L'exemple de code suivant montre comment utiliser la propriété LastNotificationUtc. Cet exemple de code fait partie d’un exemple plus grand fourni pour la BufferedWebEventProvider classe.

private DateTime GetLastNotificationTime(
    WebEventBufferFlushInfo flushInfo)
{
    return flushInfo.LastNotificationUtc;
}
Private Function GetLastNotificationTime(ByVal flushInfo _
As WebEventBufferFlushInfo) As DateTime
    Return flushInfo.LastNotificationUtc
End Function 'GetLastNotificationTime

S’applique à