WebEventBufferFlushInfo.LastNotificationUtc Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Son bildirimin tarihini ve saatini alır.
public:
property DateTime LastNotificationUtc { DateTime get(); };
public DateTime LastNotificationUtc { get; }
member this.LastNotificationUtc : DateTime
Public ReadOnly Property LastNotificationUtc As DateTime
Özellik Değeri
Son bildirimin tarihi ve saati.
Örnekler
Aşağıdaki kod örneği özelliğinin LastNotificationUtc nasıl kullanılacağını gösterir. Bu kod örneği, sınıfı için BufferedWebEventProvider sağlanan daha büyük bir örneğin parçasıdır.
private DateTime GetLastNotificationTime(
WebEventBufferFlushInfo flushInfo)
{
return flushInfo.LastNotificationUtc;
}
Private Function GetLastNotificationTime(ByVal flushInfo _
As WebEventBufferFlushInfo) As DateTime
Return flushInfo.LastNotificationUtc
End Function 'GetLastNotificationTime