CheckedBoundsValidationRuleTValue Constructor |
Namespace:
Dundas.BI.Configuration
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntaxpublic CheckedBoundsValidationRule(
Nullable<TValue> minValue,
Nullable<TValue> maxValue
)
Public Sub New (
minValue As Nullable(Of TValue),
maxValue As Nullable(Of TValue)
)
public:
CheckedBoundsValidationRule(
Nullable<TValue> minValue,
Nullable<TValue> maxValue
)
new :
minValue : Nullable<'TValue> *
maxValue : Nullable<'TValue> -> CheckedBoundsValidationRuleParameters
- minValue
- Type: SystemNullableTValue
The minimum value, or if there is no minimum. - maxValue
- Type: SystemNullableTValue
The maximum value, or if there is no maximum.
Exceptions| Exception | Condition |
|---|
| ArgumentException | Both minValue and maxValue are . |
| ArgumentOutOfRangeException | The minimum is greater than the maximum. |
See Also