Open this page in the API Guide

FunctionDefinition.ValidateParameters 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.4.0.1000)
Syntax
public void ValidateParameters(
	IEnumerable<FunctionInput> dataInputs,
	IEnumerable<ParameterValue> settingValues
)

Parameters

dataInputs
Type: System.Collections.Generic.IEnumerable<FunctionInput>
The data input values.
settingValues
Type: System.Collections.Generic.IEnumerable<ParameterValue>
The function setting values.
Exceptions
ExceptionCondition
InvalidFunctionParameterExceptiondataInputs is null or empty, or it has missing data inputs, while the function requires data inputs or settingValues is null or empty or it has missing setting values, while the function has settings defined.
See Also