/
PropertyFilter Class

PropertyFilter Class

First Added: GlobalCapture 2.3.0.124

Represents a process filter by property.

public class PropertyFilter : ProcessFilter

Example

The following example demonstrates constructing a PropertyFilter that matches the name "John".

var propertyFilter = new PropertyFilter("Name", "John", PropertyComparator.Equals);

Constructors

Initializes a new instance of the PropertyFilter class with a specified property name, value, and comparator.


Properties

string PropertyName

Name of the property to match.

string PropertyValue

Value of the property to match.

PropertyComparator PropertyComparator

PropertyComparator to use for the property value comparison.

Related content

PropertyFilter(string, string, PropertyComparator) Constructor
PropertyFilter(string, string, PropertyComparator) Constructor
More like this
ProcessTypeFilter(ProcessType) Constructor
ProcessTypeFilter(ProcessType) Constructor
More like this
StatusFilter Class
StatusFilter Class
More like this
ProcessTypeFilter Class
ProcessTypeFilter Class
More like this
PropertyComparator Enum
PropertyComparator Enum
More like this
StatusFilter(ProcessStatus) Constructor
StatusFilter(ProcessStatus) Constructor
More like this