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

Constructor

Namespace:  OfficeClip.BusinessLayer.Framework.TrackTime
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public TracktimeInfo(
	int tracktimeId,
	int applicationId,
	int primaryId,
	int userId,
	int groupId,
	DateTime trackDate,
	int duration,
	bool isMarked,
	string notes,
	string description,
	DateTime lastUpdatedTimestamp,
	string userName,
	string emailAddress,
	string udf1,
	string udf2
)
Visual Basic (Declaration)
Public Sub New ( _
	tracktimeId As Integer, _
	applicationId As Integer, _
	primaryId As Integer, _
	userId As Integer, _
	groupId As Integer, _
	trackDate As DateTime, _
	duration As Integer, _
	isMarked As Boolean, _
	notes As String, _
	description As String, _
	lastUpdatedTimestamp As DateTime, _
	userName As String, _
	emailAddress As String, _
	udf1 As String, _
	udf2 As String _
)
Visual C++
public:
TracktimeInfo(
	int tracktimeId, 
	int applicationId, 
	int primaryId, 
	int userId, 
	int groupId, 
	DateTime trackDate, 
	int duration, 
	bool isMarked, 
	String^ notes, 
	String^ description, 
	DateTime lastUpdatedTimestamp, 
	String^ userName, 
	String^ emailAddress, 
	String^ udf1, 
	String^ udf2
)

Parameters

tracktimeId
Type: System..::.Int32
The unique id of the track time
applicationId
Type: System..::.Int32
The unique id of the application
primaryId
Type: System..::.Int32
The primary id
userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
The unique id of the group
trackDate
Type: System..::.DateTime
The date when the event is tracked
duration
Type: System..::.Int32
The duration of the track
isMarked
Type: System..::.Boolean
True if it is marked
notes
Type: System..::.String
The tracking notes
description
Type: System..::.String
The tracking description
lastUpdatedTimestamp
Type: System..::.DateTime
The last updated timestamp
userName
Type: System..::.String
The user name
emailAddress
Type: System..::.String
the email address
udf1
Type: System..::.String
The first udf
udf2
Type: System..::.String
the second udf

See Also