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

Gets the internal case id from the Project id and the case number.

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

Syntax

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

Parameters

caseNum
Type: System..::.String
The case number as shown in the tracker case list screen.
projectId
Type: System..::.Int32
The internal id of the Project.

Return Value

The internal id of the case or -1 if the case is not found.

See Also