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

Gets the extension parameters of the case. The extension parameters are Description, Resolution and Comments.

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

Syntax

C#
public DataSet GetCaseListExt(
	int projectId,
	string searchStr
)
Visual Basic (Declaration)
Public Function GetCaseListExt ( _
	projectId As Integer, _
	searchStr As String _
) As DataSet
Visual C++
public:
DataSet^ GetCaseListExt(
	int projectId, 
	String^ searchStr
)

Parameters

projectId
Type: System..::.Int32
The unique id of the Project.
searchStr
Type: System..::.String
The string to be searched in all the output field, if this string is specified, the rows that are returned will have this string in one of its columns. Default is empty string.

Return Value

The dataset having a datatable with the following values
  • cidThe case id
  • DescriptionThe Description of the case
  • ResolutionThe Resolution of the case
  • CommentsThe Comments of the case

See Also