C# Class AdaptiveTriggerLibrary.ConditionModifiers.LogicalModifiers.AndModifier

A modifier where all values must meet the condition.
Inheritance: ModifierBase, ILogicalModifier
Datei anzeigen Open project: Herdo/AdaptiveTriggerLibrary

Public Methods

Method Description
IsConditionMet ( object condition, object value ) : bool

Checks if the value meets the specified condition.

Private Methods

Method Description
IsConditionMet ( bool condition, IEnumerable values ) : bool

Method Details

IsConditionMet() public method

Checks if the value meets the specified condition.
The underlying type of doesn't match expected condition type, /// or the underlying type of doesn't match the expected value type. Either or cannot be casted to the specified underlying type.
public IsConditionMet ( object condition, object value ) : bool
condition object The condition.
value object The actual value.
return bool