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

Constructor that uses the SqlDataReader populated from the database and the if the session is available. The session is not available if the tracker cases are entered from a web page (in CRM) as opposed to from the tracker application screen.

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

Syntax

C#
public TrackerCaseInfo(
	SqlDataReader sdr,
	bool isSessionAvailable
)
Visual Basic (Declaration)
Public Sub New ( _
	sdr As SqlDataReader, _
	isSessionAvailable As Boolean _
)
Visual C++
public:
TrackerCaseInfo(
	SqlDataReader^ sdr, 
	bool isSessionAvailable
)

Parameters

sdr
Type: System.Data.SqlClient..::.SqlDataReader
The sql data reader populated from the database.
isSessionAvailable
Type: System..::.Boolean
whether the session is available.

See Also