This method returns the paginated list of Items that are associated with a workflow

Namespace: DotNetNuke.Entities.Content.Workflow
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
IEnumerable<WorkflowUsageItem> GetWorkflowUsage(
	int workflowId,
	int pageIndex,
	int pageSize
)
Visual Basic
Function GetWorkflowUsage ( 
	workflowId As Integer,
	pageIndex As Integer,
	pageSize As Integer
) As IEnumerable(Of WorkflowUsageItem)

Parameters

workflowId
Type: System..::..Int32
Workflow Id
pageIndex
Type: System..::..Int32
Page index (where 1 is the index of the first page)
pageSize
Type: System..::..Int32
Page size

Return Value

List of Usage Items

See Also