Freigeben über


InstanceManager.Get-Methode

 

Ruft Informationen zu Workflowinstanzen ab.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Überladungsliste

Name Beschreibung
System_CAPS_pubmethod Get()

Ruft Informationen zu allen Workflowinstanzen im aktuellen Bereich ab.

System_CAPS_pubmethod Get(Int32, Int32)

Ruft Informationen zu Workflowinstanzen im aktuellen Bereich mithilfe von Paging ab.

System_CAPS_pubmethod Get(Int32, Int32, String)

Ruft Informationen zu Workflowinstanzen eines bestimmten Workflows im aktuellen Bereich mithilfe von Paging ab.

System_CAPS_pubmethod Get(Int32, Int32, String, WorkflowInstanceStatus)

Ruft Informationen zu Workflowinstanzen eines angegebenen Workflows und im angegebenen Status ab.

System_CAPS_pubmethod Get(Int32, Int32, String, WorkflowInstanceStatus, IDictionary<String, String>)

Ruft Informationen zu Workflowinstanzen, die bestimmte Kriterien erfüllen, mithilfe von Paging ab.

System_CAPS_pubmethod Get(Int32, Int32, WorkflowInstanceStatus, IDictionary<String, String>)

Ruft Informationen zu Workflowinstanzen, die bestimmte Kriterien erfüllen, mithilfe von Paging ab.

System_CAPS_pubmethod Get(String, String)

Ruft Informationen zu einer bestimmten Workflowinstanz ab.

Siehe auch

InstanceManager-Klasse
Microsoft.Workflow.Client-Namespace

Zurück zum Anfang

InstanceManager.Get-Methode ()

Ruft Informationen zu allen Workflowinstanzen im aktuellen Bereich ab.

Syntax

public Collection<WorkflowInstanceInfo> Get()
public:
Collection<WorkflowInstanceInfo^>^ Get()
member Get : unit -> Collection<WorkflowInstanceInfo>
Public Function Get As Collection(Of WorkflowInstanceInfo)

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Zurück zum Anfang

InstanceManager.Get-Methode (Int32, Int32)

Ruft Informationen zu Workflowinstanzen im aktuellen Bereich mithilfe von Paging ab.

Syntax

public Collection<WorkflowInstanceInfo> Get(
    int skip,
    int count
)
public:
Collection<WorkflowInstanceInfo^>^ Get(
    int skip,
    int count
)
member Get : 
        skip:int *
        count:int -> Collection<WorkflowInstanceInfo>
Public Function Get (
    skip As Integer,
    count As Integer
) As Collection(Of WorkflowInstanceInfo)

Parameter

  • skip
    Type: System.Int32

    Die Anzahl der zu überspringenden Workflowinstanzen.

  • count
    Type: System.Int32

    Die Anzahl der abzurufenden Workflowinstanzen.

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Zurück zum Anfang

InstanceManager.Get-Methode (Int32, Int32, String)

Ruft Informationen zu Workflowinstanzen eines bestimmten Workflows im aktuellen Bereich mithilfe von Paging ab.

Syntax

public Collection<WorkflowInstanceInfo> Get(
    int skip,
    int count,
    string workflowName
)
public:
Collection<WorkflowInstanceInfo^>^ Get(
    int skip,
    int count,
    String^ workflowName
)
member Get : 
        skip:int *
        count:int *
        workflowName:string -> Collection<WorkflowInstanceInfo>
Public Function Get (
    skip As Integer,
    count As Integer,
    workflowName As String
) As Collection(Of WorkflowInstanceInfo)

Parameter

  • skip
    Type: System.Int32

    Die Anzahl der zu überspringenden Workflowinstanzen.

  • count
    Type: System.Int32

    Die Anzahl der abzurufenden Workflowinstanzen.

  • workflowName
    Type: System.String

    Der Name des Workflows, zu dem die Instanzen gehören.

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Zurück zum Anfang

InstanceManager.Get-Methode (Int32, Int32, String, WorkflowInstanceStatus)

Ruft Informationen zu Workflowinstanzen eines angegebenen Workflows und im angegebenen Status ab.

Syntax

public Collection<WorkflowInstanceInfo> Get(
    int skip,
    int count,
    string workflowName,
    WorkflowInstanceStatus workflowStatus
)
public:
Collection<WorkflowInstanceInfo^>^ Get(
    int skip,
    int count,
    String^ workflowName,
    WorkflowInstanceStatus workflowStatus
)
member Get : 
        skip:int *
        count:int *
        workflowName:string *
        workflowStatus:WorkflowInstanceStatus -> Collection<WorkflowInstanceInfo>
Public Function Get (
    skip As Integer,
    count As Integer,
    workflowName As String,
    workflowStatus As WorkflowInstanceStatus
) As Collection(Of WorkflowInstanceInfo)

Parameter

  • skip
    Type: System.Int32

    Die Anzahl der zu überspringenden Workflowinstanzen.

  • count
    Type: System.Int32

    Die Anzahl der abzurufenden Workflowinstanzen.

  • workflowName
    Type: System.String

    Der Name des Workflows, zu dem die Instanzen gehören.

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Zurück zum Anfang

InstanceManager.Get-Methode (Int32, Int32, String, WorkflowInstanceStatus, IDictionary<String, String>)

Ruft Informationen zu Workflowinstanzen, die bestimmte Kriterien erfüllen, mithilfe von Paging ab.

Syntax

public Collection<WorkflowInstanceInfo> Get(
    int skip,
    int count,
    string workflowName,
    WorkflowInstanceStatus workflowStatus,
    IDictionary<string, string> activationMetadataFilter
)
public:
Collection<WorkflowInstanceInfo^>^ Get(
    int skip,
    int count,
    String^ workflowName,
    WorkflowInstanceStatus workflowStatus,
    IDictionary<String^, String^>^ activationMetadataFilter
)
member Get : 
        skip:int *
        count:int *
        workflowName:string *
        workflowStatus:WorkflowInstanceStatus *
        activationMetadataFilter:IDictionary<string, string> -> Collection<WorkflowInstanceInfo>
Public Function Get (
    skip As Integer,
    count As Integer,
    workflowName As String,
    workflowStatus As WorkflowInstanceStatus,
    activationMetadataFilter As IDictionary(Of String, String)
) As Collection(Of WorkflowInstanceInfo)

Parameter

  • skip
    Type: System.Int32

    Die Anzahl der zu überspringenden Workflowinstanzen.

  • count
    Type: System.Int32

    Die Anzahl der abzurufenden Workflowinstanzen.

  • workflowName
    Type: System.String

    Der Name des Workflows, zu dem die Instanzen gehören.

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Hinweise

Wenn activationMetadataFilter ungleich NULL und nicht leer ist, werden nur Workflowinstanzen abgerufen, die vollständig übereinstimmende Aktivierungsmetadaten aufweisen.

Zurück zum Anfang

InstanceManager.Get-Methode (Int32, Int32, WorkflowInstanceStatus, IDictionary<String, String>)

Ruft Informationen zu Workflowinstanzen, die bestimmte Kriterien erfüllen, mithilfe von Paging ab.

Syntax

public Collection<WorkflowInstanceInfo> Get(
    int skip,
    int count,
    WorkflowInstanceStatus workflowStatus,
    IDictionary<string, string> activationMetadataFilter
)
public:
Collection<WorkflowInstanceInfo^>^ Get(
    int skip,
    int count,
    WorkflowInstanceStatus workflowStatus,
    IDictionary<String^, String^>^ activationMetadataFilter
)
member Get : 
        skip:int *
        count:int *
        workflowStatus:WorkflowInstanceStatus *
        activationMetadataFilter:IDictionary<string, string> -> Collection<WorkflowInstanceInfo>
Public Function Get (
    skip As Integer,
    count As Integer,
    workflowStatus As WorkflowInstanceStatus,
    activationMetadataFilter As IDictionary(Of String, String)
) As Collection(Of WorkflowInstanceInfo)

Parameter

  • skip
    Type: System.Int32

    Die Anzahl der zu überspringenden Workflowinstanzen.

  • count
    Type: System.Int32

    Die Anzahl der abzurufenden Workflowinstanzen.

Rückgabewert

Type: System.Collections.ObjectModel.Collection<WorkflowInstanceInfo>

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Hinweise

Wenn activationMetadataFilter ungleich NULL und nicht leer ist, werden nur Workflowinstanzen abgerufen, die vollständig übereinstimmende Aktivierungsmetadaten aufweisen.

Zurück zum Anfang

InstanceManager.Get-Methode (String, String)

Ruft Informationen zu einer bestimmten Workflowinstanz ab.

Syntax

public WorkflowInstanceInfo Get(
    string workflowName,
    string instanceName
)
public:
WorkflowInstanceInfo^ Get(
    String^ workflowName,
    String^ instanceName
)
member Get : 
        workflowName:string *
        instanceName:string -> WorkflowInstanceInfo
Public Function Get (
    workflowName As String,
    instanceName As String
) As WorkflowInstanceInfo

Parameter

  • workflowName
    Type: System.String

    Der Name des Workflows, zu dem die Instanz gehört.

  • instanceName
    Type: System.String

    Der Name der abzurufenden Workflowinstanz.

Rückgabewert

Type: Microsoft.Workflow.Client.WorkflowInstanceInfo

Eine Auflistung von WorkflowInstanceInfo-Objekten, die die abgerufenen Workflowinstanzen darstellen.

Zurück zum Anfang