WebEventBufferFlushInfo.LastNotificationUtc 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得上次告知的日期和時間。
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