Edit

Share via


CCM_Policy_Operator Client WMI Class

In Configuration Manager, the CCM_Policy_Operator class is a client Windows Management Instrumentation (WMI) class that stores a compound expression that evaluates to either true or false.

The following syntax is simplified from Managed Object Format (MOF) code and includes all inherited properties.

Syntax

class CCM_Policy_Operator : CCM_Policy_Config  
{  
      String OperatorType;  
   Object Operands[];  
};  

Properties

OperatorType
Data type: String

Access type: Read-only

Qualifier: [Not_Null:ToInstance]

The type of operator. Possible values are:

Value Description
AND A logical AND operator. The result of the compound expression is only true if all of its operands evaluate to true.
OR A logical OR operator. The result of the compound expression is true if any one of its operands evaluates to true.
NOT A logical NOT operator. This operator can only have a single operand. The result of the expression is true only if the operand evaluates to false.

Operands
Data type: Object

Access type: Read-only

Qualifier: [Not_Null:ToInstance]

Operands for the compound expression. Each operand can be a CCM_Policy_Expression Client WMI Class object or a CCM_Policy_Operator object if further nesting is required.

Requirements

Runtime Requirements

For more information, see Configuration Manager Client Runtime Requirements.

Development Requirements

For more information, see Configuration Manager Client Development Requirements.

See Also

Policy Agent Client WMI Classes
CCM_Policy_Expression Client WMI Class