WebEventBufferFlushInfo.LastNotificationUtc Eigenschap

Definitie

Hiermee haalt u de datum en de tijd van de laatste melding op.

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

Waarde van eigenschap

De datum en tijd van de laatste melding.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de LastNotificationUtc eigenschap gebruikt. Dit codevoorbeeld maakt deel uit van een groter voorbeeld voor de BufferedWebEventProvider klasse.

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

Van toepassing op