FunctionDefinitionValidateParameters Method

Validates the parameters and throws if any parameter values are invalid.

Namespace:  Dundas.BI.Data.Functions
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1000)
Syntax
public void ValidateParameters(
	IEnumerable<FunctionInput> dataInputs,
	IEnumerable<ParameterValue> settingValues
)

Parameters

dataInputs
Type: System.Collections.GenericIEnumerableFunctionInput
The data input values.
settingValues
Type: System.Collections.GenericIEnumerableParameterValue
The function setting values.
Exceptions
ExceptionCondition
InvalidFunctionParameterExceptiondataInputs is or empty, or it has missing data inputs, while the function requires data inputs or settingValues is or empty or it has missing setting values, while the function has settings defined.
See Also