Share via


2.3.63 LogicalOperator

Target namespace: http://schemas.microsoft.com/office/mailappversionoverrides/1.1

Referenced by: RuleCollection

Defines logical operators that allow combining multiple rules into a rule collection.

Value

Meaning

And

The binary logical operator that returns true if both operands are true, and returns false otherwise.

Or

The binary logical operator that returns true if one or both operands are true, and returns false otherwise.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xs:simpleType name="LogicalOperator">
   <xs:restriction base="xs:string">
     <xs:enumeration value="And"/>
     <xs:enumeration value="Or"/>
   </xs:restriction>
 </xs:simpleType>

See section 5.5 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).