Back to Devexpress

StringComparisonType Enum

expressappframework-devexpress-dot-persistent-dot-validation-c4ade0a2.md

latest2.0 KB
Original Source

StringComparisonType Enum

Contains values which specify operator types to be used when comparing string values via the RuleStringComparisonAttribute.

Namespace : DevExpress.Persistent.Validation

Assembly : DevExpress.Persistent.Base.v25.2.dll

NuGet Package : DevExpress.Persistent.Base

Declaration

csharp
public enum StringComparisonType
vb
Public Enum StringComparisonType

Members

NameDescription
Contains

Specifies that the target string property’s value must contain a particular substring.

| | EndsWith |

Specifies that the target string property’s value must end with a particular substring.

| | Equals |

Specifies that the target string property’s value must equal a particular string.

| | NotEquals |

Specifies that the target string property’s value must not equal a particular string.

| | StartsWith |

Specifies that the target string property’s value must start with a particular substring.

|

The following properties accept/return StringComparisonType values:

Remarks

These values are used to set the operatorType parameter of the RuleStringComparison attribute’s RuleStringComparisonAttribute constructor.

See Also

DevExpress.Persistent.Validation Namespace