[This is preliminary documentation and is subject to change.]

The copy constructor

Namespace:  OfficeClip.BusinessLayer.Metabase
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public HistoryInfo(
	BusinessConstants..::.ObjectType oType,
	int primaryKey,
	MetaConstants..::.MetaEntity childEntity,
	MetaConstants..::.MetaHistoryState action,
	string title,
	string desc,
	int userId,
	DateTime timestamp
)
Visual Basic (Declaration)
Public Sub New ( _
	oType As BusinessConstants..::.ObjectType, _
	primaryKey As Integer, _
	childEntity As MetaConstants..::.MetaEntity, _
	action As MetaConstants..::.MetaHistoryState, _
	title As String, _
	desc As String, _
	userId As Integer, _
	timestamp As DateTime _
)
Visual C++
public:
HistoryInfo(
	BusinessConstants..::.ObjectType oType, 
	int primaryKey, 
	MetaConstants..::.MetaEntity childEntity, 
	MetaConstants..::.MetaHistoryState action, 
	String^ title, 
	String^ desc, 
	int userId, 
	DateTime timestamp
)

Parameters

oType
Type: OfficeClip.BusinessLayer..::.BusinessConstants..::.ObjectType
The object type
primaryKey
Type: System..::.Int32
The primary key
childEntity
Type: OfficeClip.BusinessLayer.Metabase..::.MetaConstants..::.MetaEntity
The child entity
action
Type: OfficeClip.BusinessLayer.Metabase..::.MetaConstants..::.MetaHistoryState
The meta history state
title
Type: System..::.String
The title of the history
desc
Type: System..::.String
The history description
userId
Type: System..::.Int32
The unique id of the user
timestamp
Type: System..::.DateTime
The timestamp when the history is recorded

See Also