Gets or sets the date and time the document was created from the application's perspective.

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

Syntax

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

Property Value

The date and time the document was created from the application's perspective. The default is the current date and time.

Remarks

This property can be set to the same value as the CreateDateTime property that resides in the Standard Document Header Module (M78). When this property differs from the Standard Document Header Module’s CreateDateTime property, this property represents the date and time the application generated the message internally and the Standard Document Header Module’s CreateDateTime property represents when the actual CICA document was created and sent to BargeEx.

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 CreateDateTimeSpecified property indicates whether or not this property will be included in the serialized class or generated document. The CreateDateTimeSpecified property is automatically set to true when this property is set.

See Also