Overload | Description |
---|---|
ValidateInteger(Int32,Int32,Int32) | Validates an integer value to make sure it is valid and is within the specified min/max range limit. |
ValidateInteger(Int32) | Validates an integer value to make sure it is valid and is within the specified usual default RDL min/max range limit (0, int.maxvalue). |
ValidateInteger(Nullable<Int32>,Int32,Int32) | Validates a nullable integer value to make sure it is valid and is within the specified min/max range limit. |
ValidateInteger(Nullable<Int32>) | Validates a nullable integer value to make sure it is valid and is within the specified usual default RDL min/max range limit (0, int.maxvalue). |
ValidateInteger(ExpressionInfo,Int32,Int32) | Valiates an expression value to make sure it is valid integer value and is within the specified min/max values. |