Enum LogicalOperation
Defines comparison type between two values.
Namespace: Nevatech.Vsb.Repository.Security
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum LogicalOperation
  Fields
| Name | Description | 
|---|---|
| Equal | Two values are equal.  | 
      
| Exists | Value exists in a particular set.  | 
      
| GreaterThan | First value is greater than second one.  | 
      
| GreaterThanOrEqual | First value is greater than second one or both values are equal.  | 
      
| LessThan | First value is less than second one.  | 
      
| LessThanOrEqual | First value is less than second one or both values are equal.  | 
      
| NotEqual | Two values are not equal.  | 
      
| RegularExpression | Value match is defined by a regular expression.  | 
      
| XPath | Value match is defined by an XPath expression. Value must be of XML string type.  |