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

Gets the tracker case detail in a String

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

Syntax

C#
public string GetCaseDetailString(
	int userId,
	int groupId,
	int projectId,
	TrackerCaseInfo tci
)
Visual Basic (Declaration)
Public Function GetCaseDetailString ( _
	userId As Integer, _
	groupId As Integer, _
	projectId As Integer, _
	tci As TrackerCaseInfo _
) As String
Visual C++
public:
String^ GetCaseDetailString(
	int userId, 
	int groupId, 
	int projectId, 
	TrackerCaseInfo^ tci
)

Parameters

userId
Type: System..::.Int32
Unique id for the user
groupId
Type: System..::.Int32
Unique id for the organization
projectId
Type: System..::.Int32
The system generated unique identifier for the tracker Project.
tci
Type: OfficeClip.BusinessLayer.Tracker..::.TrackerCaseInfo
The tracker case information structure. This structure contains the detail of a tracker case.

Return Value

A textual representation of the tracker case.

See Also