Notification.Timestamp Property

 

Gets the time when the notification was sent, expressed as local time on the computer from which it was sent.

Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications
Assembly:  CoreProviders (in CoreProviders.dll)

Syntax

[DataMemberAttribute]
public DateTime Timestamp { get; internal set; }
public:
[DataMemberAttribute]
property DateTime Timestamp {
    DateTime get();
    internal: void set(DateTime value);
}
<DataMemberAttribute>
Public Property Timestamp As Date
    Get
    Friend Set
End Property

Property Value

Type: System.DateTime

An instance of DateTime.

Remarks

Because information is not stored about the timezone of the sending computer, the exact interpretation of this property is ambiguous; this property is informational only.

See Also

Notification Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications Namespace

Return to top