Click or drag to resize
StagingTaskInfoProviderSelectTaskList Method
Selects all the tasks with information on the count of the failed attempts and without the task data.

Namespace: CMS.Synchronization
Assembly: CMS.Synchronization (in CMS.Synchronization.dll) Version: 13.0.131
Syntax
C#
public static ObjectQuery<StagingTaskInfo> SelectTaskList(
	int siteId,
	int serverId,
	string where,
	string orderBy,
	int topN = -1,
	string columns = null,
	int offset = 0,
	int maxRecords = 0
)

Parameters

siteId
Type: SystemInt32
Tasks site ID
serverId
Type: SystemInt32
Tasks server ID
where
Type: SystemString
Where condition
orderBy
Type: SystemString
Order by clause
topN (Optional)
Type: SystemInt32
Select top N rows
columns (Optional)
Type: SystemString
Select only specified columns
offset (Optional)
Type: SystemInt32
Index of first record to get
maxRecords (Optional)
Type: SystemInt32
Maximum number of records to get. If maxRecords is zero or less, all records are returned (no paging is used)

Return Value

Type: ObjectQueryStagingTaskInfo
See Also