Skip to main content
Skip table of contents

ProcessType Enum

Specifies the process type.


CODE
public enum ProcessType

Fields

GlobalCapture

0

GlobalCapture process.

GlobalAction

1

GlobalAction process.


Example

The following example demonstrates performing logic on processes conditionally by their process types.

CODE
var processes = Database.GetProcessesByProperty("Name", "John", PropertyComparator.Equals);
foreach (var process in processes) 
{
	if (process.ProcessType == ProcessType.GlobalCapture)
	{
		// perform an action on a GlobalCapture process
	}
}
JavaScript errors detected

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

If this problem persists, please contact our support.