示例#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));
        }
示例#2
0
 public bool Confirms(FlxMap map, string key)
 {
     return(false);
 }
示例#3
0
 public bool Confirms(FlxMap map, string key)
 {
     return(key == _propertyName);
 }