IntegerValidator Class
Provides validation of an Int32 value.
System.Configuration::ConfigurationValidatorBase
System.Configuration::IntegerValidator
Assembly: System.Configuration (in System.Configuration.dll)
The IntegerValidator type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | IntegerValidator(Int32, Int32) | Initializes a new instance of the IntegerValidator class. |
![]() | IntegerValidator(Int32, Int32, Boolean) | Initializes a new instance of the IntegerValidator class. |
![]() | IntegerValidator(Int32, Int32, Boolean, Int32) | Initializes a new instance of the IntegerValidator class. |
| Name | Description | |
|---|---|---|
![]() | CanValidate | Determines whether the type of the object can be validated. (Overrides ConfigurationValidatorBase::CanValidate(Type).) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Validate | Determines whether the value of an object is valid. (Overrides ConfigurationValidatorBase::Validate(Object).) |
The IntegerValidator class is used to ensure that an integer meets specific criteria. The criteria for validation are established when an instance of the IntegerValidator class is created. The IntegerValidator constructor with two parameters ensures that the integer being verified adheres to both a minimum and a maximum value. The IntegerValidator constructor with three parameters checks both the minimum and maximum Int32 values, as well as whether the value to be validated is within the specified range. The IntegerValidator constructor with four parameters checks the previous three parameters and also checks whether the Int32 value is equal to a specific resolution.
The CanValidate method determines whether the object type being validated matches the expected type. The object being validated is passed as a parameter of the Validate method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
