LogicalApplicabilityRules Schema

 

Applies To: Windows Server Update Services

Types

The LogicalApplicabilityRules Schema defines the following types in the https://schemas.microsoft.com/msus/2002/12/LogicalApplicabilityRules target namespace. It references types from the BaseTypes Schema and the CSAPI Update Schema.

True

Evaluates to true, by definition.

<element name="True" substitutionGroup="upd:ApplicabilityRuleElement">  
    <complexType/>  
</element>  

False

Evaluates to false, by definition.

<element name="False" substitutionGroup="upd:ApplicabilityRuleElement">  
    <complexType/>  
</element>  

And

Evaluates to the logical AND of the rules it contains.

<element name="And" substitutionGroup="upd:ApplicabilityRuleElement">  
    <complexType>  
      <sequence>  
        <element ref="upd:ApplicabilityRuleElement" maxOccurs="unbounded"/>  
      </sequence>  
    </complexType>  
</element>  

Or

Evaluates to the logical OR of the rules it contains.

<element name="Or" substitutionGroup="upd:ApplicabilityRuleElement">  
    <complexType>  
      <sequence>  
        <element ref="upd:ApplicabilityRuleElement" maxOccurs="unbounded"/>  
      </sequence>  
    </complexType>  
</element>  
  

Not

Evaluates to the logical NOT of the rule it contains.

<element name="Not" substitutionGroup="upd:ApplicabilityRuleElement">  
    <complexType>  
      <sequence>  
        <element ref="upd:ApplicabilityRuleElement"/>  
      </sequence>  
    </complexType>  
  </element>