First Added: GlobalCapture 2.3.0.124

Initializes a new instance of the ProcessTypeFilter class with a specified process type.


public PropertyFilter(string propertyName, string propertyValue, PropertyComparator propertyComparator)
CODE

Parameters

ProcessType processType

Type of the process to match.


Example

The following example demonstrates constructing a ProcessTypeFilter that matches GlobalCapture processes.

var processTypeFilter = new ProcessTypeFilter(ProcessType.GlobalCapture);
CODE