Gets or sets the "timestamp" property. A null is returned if the property is not set. The DateTime instance returned will represents the local time.

Namespace:  Kaazing.AMQP
Assembly:  Kaazing.AMQP (in Kaazing.AMQP.dll)

Syntax

Visual Basic
Public Property Timestamp As Nullable(Of DateTime)
	Get
	Set
C#
public Nullable<DateTime> Timestamp { get; set; }
Visual C++
public:
property Nullable<DateTime> Timestamp {
	Nullable<DateTime> get ();
	void set (Nullable<DateTime> value);
}

Field Value

The value of the property "timestamp" as DateTime. The DateTime instance will be internally converted to Amqp 0-9-1 spec compliant timestamp. If a null value is passed in, it indicates that the property is not set. null value can be passed to remove the property once it is set.

See Also