Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
First Added: GlobalCapture 2.3.0.124


Excerpt

Represents a process filter by property.


Code Block
public class PropertyFilter : ProcessFilter

Example

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

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

Constructors

Insert excerpt
PropertyFilter(string, string, PropertyComparator) Constructor
PropertyFilter(string, string, PropertyComparator) Constructor
nopaneltrue

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.