共用方式為


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

適用於