Gets or sets the date and time the event occurred or ended.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
public virtual DateTime EndDateTime { get; set; }
Visual Basic (Declaration)
Public Overridable Property EndDateTime As DateTime
Visual C++
public:
virtual property DateTime EndDateTime {
	DateTime get ();
	void set (DateTime value);
}

Property Value

The date and time the event occurred or ended.

Remarks

If the StartDateTime property is set, this property contains the date and time the event ended. Otherwise this property contains the data and time the event occurred.

This property always returns the date and time in local time. This property can be set using local time or Coordinated Universal Time (UTC). If the Kind property of the new date and time Value is set to Unspecified, the Value is assumed to be in local time.

The EndDateTimeSpecified property indicates whether or not this property will be included in the serialized class or generated document. The EndDateTimeSpecified property is automatically set to true when this property is set.

See Also