WebEventBufferFlushInfo.LastNotificationUtc 属性

定义

获取上一次通知的日期和时间。

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

属性值

上一次通知的日期和时间。

示例

下面的代码示例说明如何使用 LastNotificationUtc 属性。 此代码示例是为 BufferedWebEventProvider 类提供的一个更大示例的一部分。

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

适用于