Click or drag to resize

GlobalListsfetchList Method (String, String, String, String, String, String, String, Boolean)

Get list's items from its name. Doesn't apply the filter or sort or throw an exception if you pass an invalid parameter.

Namespace:  WorkflowGen.My.Integration
Assembly:  WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.2.0.0 (4.2.0.0)
Syntax
public DataTable fetchList(
	string listname,
	string columns,
	string language,
	string filterColumnName,
	string filterComparison,
	string filterValue1,
	string filterValue2,
	bool convertAllColumnsToString
)

Parameters

listname
Type: SystemString
List's name
columns
Type: SystemString
CSV of the columns you want to get.
language
Type: SystemString
Language in which you want to get the items.
filterColumnName
Type: SystemString
The name of a column of the list
filterComparison
Type: SystemString
A comparaison to apply to the filter
filterValue1
Type: SystemString
A first value to apply to the filter
filterValue2
Type: SystemString
A second value to apply to the filter
convertAllColumnsToString
Type: SystemBoolean

Return Value

Type: DataTable
A DataTable of items from the list
See Also