Exemplo n.º 1
0
        public bool Confirms(FlxMap value, string key)
        {
            var flxValue = value[key];

            if (IsNumber(flxValue) == false)
            {
                return(true);
            }

            var number = flxValue.AsDouble;

            return(IsInRange(number));
        }
Exemplo n.º 2
0
 public bool Confirms(FlxMap map, string key)
 {
     return(false);
 }
Exemplo n.º 3
0
 public bool Confirms(FlxMap map, string key)
 {
     return(key == _propertyName);
 }