Click or drag to resize

IWorkflowManagerWorkflows Method


Retrieves the collection of Workflows in a paginated fashion. It can retrieve the entire collection or filter workflows by Workflow Definition.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
IEnumerable<IWorkflow> Workflows(
	out int count,
	IWorkflowDefinition workflowDef = null,
	int pageSize = -1,
	int startIndex = -1
)

Parameters

count  Int32
Outputs total count of entries
workflowDef  IWorkflowDefinition  (Optional)
If provided, returns workflows based on their defintion; otherwise, returns all workflows
pageSize  Int32  (Optional)
Number of entries to return. If not provided, returns all entries.
startIndex  Int32  (Optional)
Starting index of entries. If not provided, starts from the first entry.

Return Value

IEnumerableIWorkflow
Collection of workflows.
See Also