Enum
FindCompareType

The different types of string compares the framework supports.

Definition

Namespace:ArtOfTest.Common

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public enum FindCompareType

Fields

Contains

String a contains the substring b.

Declaration

cs-api-definition
Contains = 1

Field Value

FindCompareType

EndsWith

String a ends with substring b.

Declaration

cs-api-definition
EndsWith = 4

Field Value

FindCompareType

Exact

The strings match exactly.

Declaration

cs-api-definition
Exact = 0

Field Value

FindCompareType

Exists

The string is not null or empty.

Declaration

cs-api-definition
Exists = 7

Field Value

FindCompareType

Missing

The string is null or empty.

Declaration

cs-api-definition
Missing = 6

Field Value

FindCompareType

NotContain

String a does not contain substring b.

Declaration

cs-api-definition
NotContain = 2

Field Value

FindCompareType

RegEx

String a matches the regex string b.

Declaration

cs-api-definition
RegEx = 5

Field Value

FindCompareType

StartsWith

String a starts with substring b.

Declaration

cs-api-definition
StartsWith = 3

Field Value

FindCompareType