Microsoft.Web.Administration.IntegerRangeValidator.Validate C# (CSharp) Метод

Validate() публичный Метод

public Validate ( object value ) : void
value object
Результат void
        public override void Validate(object value)
        {
            if (value is uint)
            {
                if (!_initialized)
                {
                    _minUint = uint.Parse(_items[0]);
                    _maxUint = uint.Parse(_items[1]);
                    _initialized = true;
                }

                var data = (uint)value;
                if (_excluded)
                {
                    if (data > _minUint && data < _maxUint)
                    {
                        throw new COMException(string.Format("Integer value must not be between {0} and {1} inclusive\r\n", _minUint, _maxUint));
                    }
                }
                else
                {
                    if (data < _minUint || data > _maxUint)
                    {
                        throw new COMException(string.Format("Integer value must be between {0} and {1} inclusive\r\n", _minUint, _maxUint));
                    }
                }
            }
            else if (value is int)
            {
                if (!_initialized)
                {
                    _minInt = int.Parse(_items[0]);
                    _maxInt = int.Parse(_items[1]);
                    _initialized = true;
                }

                var data = (int)value;
                if (_excluded)
                {
                    if (data > _minInt && data < _maxInt)
                    {
                        throw new COMException(string.Format("Integer value must be between {0} and {1} exclusive\r\n", _minInt, _maxInt));
                    }
                }
                else
                {
                    if (data < _minInt || data > _maxInt)
                    {
                        throw new COMException(string.Format("Integer value must be between {0} and {1} inclusive\r\n", _minInt, _maxInt));
                    }
                }
            }
        }
    }