Metodo WorkflowInstanceManager.GetInstances (Int32, Int32, String)

Restituisce la raccolta di istanze di flusso di lavoro con il valore skip, il numero e il nome di flusso di lavoro specificati.

Spazio dei nomi  Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Sintassi

'Dichiarazione
Public Function GetInstances ( _
    skip As Integer, _
    count As Integer, _
    workflowName As String _
) As Collection(Of WorkflowInstanceInfo)
'Utilizzo
Dim instance As WorkflowInstanceManager 
Dim skip As Integer 
Dim count As Integer 
Dim workflowName As String 
Dim returnValue As Collection(Of WorkflowInstanceInfo)

returnValue = instance.GetInstances(skip, _
    count, workflowName)
public Collection<WorkflowInstanceInfo> GetInstances(
    int skip,
    int count,
    string workflowName
)
public:
Collection<WorkflowInstanceInfo^>^ GetInstances(
    int skip, 
    int count, 
    String^ workflowName
)
member GetInstances : 
        skip:int * 
        count:int * 
        workflowName:string -> Collection<WorkflowInstanceInfo> 
public function GetInstances(
    skip : int, 
    count : int, 
    workflowName : String
) : Collection<WorkflowInstanceInfo>

Parametri

  • skip
    Tipo: System.Int32
    Numero di istanze di flusso di lavoro da ignorare.
  • count
    Tipo: System.Int32
    Numero di istanze di flusso di lavoro da recuperare.
  • workflowName
    Tipo: System.String
    Nome del flusso di lavoro di cui fanno parte le istanze.

Valore restituito

Tipo: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>
Raccolta di istanze di flusso di lavoro.

Vedere anche

Riferimento

WorkflowInstanceManager Classe

Overload GetInstances

Spazio dei nomi Microsoft.Workflow.Client