2.2.4.3 t:RulePredicateSizeRangeType Complex Type

The RulePredicateSizeRangeType complex type specifies the size range in the RulePredicatesType complex type. This complex type represents the minimum and maximum size of a message in the rule (2) predicate, in kilobytes.

 <xs:complexType name="RulePredicateSizeRangeType">
   <xs:sequence>
     <xs:element name="MinimumSize"
       type="xs:int"
       minOccurs="0"
       maxOccurs="1"
      />
     <xs:element name="MaximumSize"
       type="xs:int"
       minOccurs="0"
       maxOccurs="1"
      />
   </xs:sequence>
 </xs:complexType>
  

The following table lists the child elements of the RulePredicateSizeRangeType complex type.

Element name

Type

Description

MinimumSize

xs:int ([XMLSCHEMA2])

The minimum size of a message for the conditions or exception to apply.

MaximumSize

xs:int

The maximum size of a message for the conditions or exception to apply.

This complex type can contain a MinimumSize and a MaximumSize element.

The value of the MinimumSize element MUST NOT be greater than value of the MaximumSize element.  The values of the MinimumSize and MaximumSize elements MUST NOT be negative.

To disable this predicate, set both the MinimumSize and the MaximumSize element to null.