WorkflowResourceManager.GetWorkflows Method
Gets the specified workflows for the manager.
Namespace: Microsoft.Workflow.Client
Assembly: Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)
Syntax
'Declaration
Public Function GetWorkflows ( _
skip As Integer, _
count As Integer, _
metadataFilter As IDictionary(Of String, String) _
) As Collection(Of WorkflowDescription)
'Usage
Dim instance As WorkflowResourceManager
Dim skip As Integer
Dim count As Integer
Dim metadataFilter As IDictionary(Of String, String)
Dim returnValue As Collection(Of WorkflowDescription)
returnValue = instance.GetWorkflows(skip, _
count, metadataFilter)
public Collection<WorkflowDescription> GetWorkflows(
int skip,
int count,
IDictionary<string, string> metadataFilter
)
public:
Collection<WorkflowDescription^>^ GetWorkflows(
int skip,
int count,
IDictionary<String^, String^>^ metadataFilter
)
member GetWorkflows :
skip:int *
count:int *
metadataFilter:IDictionary<string, string> -> Collection<WorkflowDescription>
public function GetWorkflows(
skip : int,
count : int,
metadataFilter : IDictionary<String, String>
) : Collection<WorkflowDescription>
Parameters
- skip
Type: System.Int32
The skip parameter.
- count
Type: System.Int32
The count parameter.
- metadataFilter
Type: System.Collections.Generic.IDictionary<String, String>
The metadata filter.
Return Value
Type: System.Collections.ObjectModel.Collection<WorkflowDescription>
The workflows for the manager.