Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 6
Next »
Queries the MongoDB database for a list of Processes of a specific status.
First Added: GlobalCapture 2.3.0.124
public List<Process> GetProcessesByStatus(ProcessStatus status)
Classes: Database
Returns
List<Process>
List of process objects.
Example
The following example demonstrates getting a list of properties based on a specific process status. The query targets all processes that are currently in validation.
var processes = Database.GetProcessesByStatus(ProcessStatus.Validation);
If the parameters result in zero Processes found, an empty list will be returned.