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

Version 1 Current »

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.

  • No labels