Enum AuraEvaluatorOperationMode
Defines the operation modes for combining multiple boolean evaluators in an Aura.
Namespace: EyeAuras.Shared.Services
Assembly: EyeAuras.Shared.Metadata.dll
Syntax
public enum AuraEvaluatorOperationMode
Fields
Name | Description |
---|---|
All | All evaluators must be active for the condition to be true. This mode operates as a boolean AND, meaning all specified conditions must be met. For example, if used with evaluators for 'IsWindowFocused' and 'IsFilePresent', the condition is true only if both the window is focused and the file is present. |
Any | At least one of the evaluators must be active for the condition to be true. This mode operates as a boolean OR, meaning the condition is met if any one of the specified conditions is met. For instance, if used with evaluators for 'IsNetworkAvailable' and 'IsUserActive', the condition is true if either the network is available or the user is active. |