WebEventBufferFlushInfo.LastNotificationUtc Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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é
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