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