Initializes a new instance of the DocumentHeader class with the specified create date and time and instance identifier.

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

Syntax

C#
public DocumentHeader(
	DateTime createDateTime,
	string instanceIdentifier
)
Visual Basic (Declaration)
Public Sub New ( _
	createDateTime As DateTime, _
	instanceIdentifier As String _
)
Visual C++
public:
DocumentHeader(
	DateTime createDateTime, 
	String^ instanceIdentifier
)

Parameters

createDateTime
Type: System..::.DateTime
The date and time this document was created.
instanceIdentifier
Type: System..::.String
The unique instance identifier for this document.

Remarks

The constructor initializes a DocumentHeader object with the CreateDateTime property set to createDateTime and the InstanceIdentifier property set to instanceIdentifier.

See Also