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

Get list of TrackTime from the database

Namespace:  OfficeClip.DBLayer.Framework
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public TracktimeInfo[] GetTracktimeReport(
	int isMarked,
	int applicationId,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Function GetTracktimeReport ( _
	isMarked As Integer, _
	applicationId As Integer, _
	userId As Integer, _
	groupId As Integer _
) As TracktimeInfo()
Visual C++
public:
array<TracktimeInfo^>^ GetTracktimeReport(
	int isMarked, 
	int applicationId, 
	int userId, 
	int groupId
)

Parameters

isMarked
Type: System..::.Int32
-1 if mark is not interpreted, 0 if false, 1 if true
applicationId
Type: System..::.Int32
The unique id of the application
userId
Type: System..::.Int32
The unique id of the user
groupId
Type: System..::.Int32
The unique id of the group

Return Value

An array of TracktimeInfo information structure, empty array if the TrackTime is not found

See Also