In This Article

StringFilterOperation Enum

Specifies the operations supported by StringFilterBase.

public enum StringFilterOperation

Fields

Name Description
Contains

The filter includes an item if a source string contains a specified string.

EndsWith

The filter includes an item if a source string ends with a specified string.

Equals

The filter includes an item if a source string equals a specified string.

NotContains

The filter includes an item if a source string does not contain a specified string.

NotEndsWith

The filter includes an item if a source string does not end with a specified string.

NotEquals

The filter includes an item if a source string does not equal a specified string.

NotRegexMatch

The filter includes an item if a source string does not match a specified pattern string.

NotStartsWith

The filter includes an item if a source string does not start with a specified string.

RegexMatch

The filter includes an item if a source string matches a specified pattern string.

StartsWith

The filter includes an item if a source string starts with a specified string.