Skip to main content
Skip table of contents

GetProcessesByStatus Method

First Added: GlobalCapture 2.3.0.124


Queries the MongoDB database for a list of Processes of a specific status.

CODE
public List<Process> GetProcessesByStatus(ProcessStatus status)

Classes: Database


Parameters

string status

ProcessStatus of the processes to match.

Returns

List<Process>

List of process objects.


Example

The following example demonstrates getting a list of processes based on a specific process status. The query targets all processes that are currently in validation.

CODE
var processes = Database.GetProcessesByStatus(ProcessStatus.Validation);

Remarks

If the parameters result in zero Processes found, an empty list will be returned.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.