WorkflowRuntime.GetLoadedWorkflows Methode

Definition

Ruft eine Auflistung ab, die alle Workflowinstanzen enthält, die momentan im Arbeitsspeicher geladen sind.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Workflow::Runtime::WorkflowInstance ^> ^ GetLoadedWorkflows();
public System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.Runtime.WorkflowInstance> GetLoadedWorkflows ();
member this.GetLoadedWorkflows : unit -> System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.Runtime.WorkflowInstance>
Public Function GetLoadedWorkflows () As ReadOnlyCollection(Of WorkflowInstance)

Gibt zurück

ReadOnlyCollection<WorkflowInstance>

Ein WorkflowInstance-Objekt für jede Workflowinstanz enthält, die momentan im Arbeitsspeicher geladen ist.

Ausnahmen

Beispiele

Das folgende Beispiel zeigt, wie Sie eine Auflistung der geladenen Workflows aus einem WorkflowRuntime-Objekt abrufen.

// Create a new workflow runtime
WorkflowRuntime workflowRuntime = new WorkflowRuntime();
// Start the runtime
workflowRuntime.StartRuntime();
// Create a collection of workflow instances
ReadOnlyCollection<WorkflowInstance> workflows;
// Populate the collection of workflow instances
workflows = workflowRuntime.GetLoadedWorkflows();
' Create a new workflow runtime
Dim workflowRuntime As New WorkflowRuntime()
' Start the runtime
workflowRuntime.StartRuntime()
' Create a collection of workflow instances
Dim workflows As ReadOnlyCollection(Of WorkflowInstance)
' Populate the collection of workflow instances
workflows = workflowRuntime.GetLoadedWorkflows()

Hinweise

Beachten Sie, dass diese Methode im Gegensatz zu GetWorkflow keine InvalidOperationException auslöst, wenn die Laufzeit nicht gestartet wird.

Gilt für