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

Updates a task in the database

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

Syntax

C#
public DBConstants..::.ReturnValue UpdateTask(
	TaskInfo ti,
	bool isRestricted,
	string docIdList,
	string remDocIdList,
	ConfigureInfo session,
	ref DateTime lastUpdatedTime
)
Visual Basic (Declaration)
Public Function UpdateTask ( _
	ti As TaskInfo, _
	isRestricted As Boolean, _
	docIdList As String, _
	remDocIdList As String, _
	session As ConfigureInfo, _
	ByRef lastUpdatedTime As DateTime _
) As DBConstants..::.ReturnValue
Visual C++
public:
DBConstants..::.ReturnValue UpdateTask(
	TaskInfo^ ti, 
	bool isRestricted, 
	String^ docIdList, 
	String^ remDocIdList, 
	ConfigureInfo^ session, 
	DateTime% lastUpdatedTime
)

Parameters

ti
Type: OfficeClip.BusinessLayer.Desktop..::.TaskInfo
The taskinfo structure
isRestricted
Type: System..::.Boolean
if the task is restricted
docIdList
Type: System..::.String
The list of document ids
remDocIdList
Type: System..::.String
The list of document ids to be removed
session
Type: OfficeClip.Utils..::.ConfigureInfo
The user session
lastUpdatedTime
Type: System..::.DateTime%
The time of last modification

Return Value

Negative value if failed 0 if successful

See Also