Open this page in the API Guide

CheckedBoundsValidationRule<TValue> Constructor

Namespace:  Dundas.BI.Configuration
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
public CheckedBoundsValidationRule(
	TValue? minValue,
	TValue? maxValue
)

Parameters

minValue
Type: System.Nullable<TValue>
The minimum value, or null if there is no minimum.
maxValue
Type: System.Nullable<TValue>
The maximum value, or null if there is no maximum.
Exceptions
ExceptionCondition
ArgumentExceptionBoth minValue and maxValue are null.
ArgumentOutOfRangeExceptionThe minimum is greater than the maximum.
See Also