EnumFindCompareType
Enum
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.
EndsWith
String a ends with substring b.
Exists
The string is not null or empty.
Missing
The string is null or empty.
NotContain
String a does not contain substring b.
RegEx
String a matches the regex string b.
StartsWith
String a starts with substring b.