WebEventBufferFlushInfo.LastNotificationUtc Property

Definition

Gets the date and the time of the last notification.

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

Property Value

The date and the time of the last notification.

Examples

The following code example shows how to use the LastNotificationUtc property. This code example is part of a larger example provided for the BufferedWebEventProvider class.

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

Applies to