FunctionDefinitionValidateDataInputs Method  | 
 
            Validates the data inputs.
            
 
    Namespace: 
   Dundas.BI.Data.Functions
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxprotected virtual bool ValidateDataInputs(
	IEnumerable<FunctionInput> dataInputs,
	out FunctionInput?? invalidInput,
	out string?? errorMessage
)
Protected Overridable Function ValidateDataInputs ( 
	dataInputs As IEnumerable(Of FunctionInput),
	<OutAttribute> ByRef invalidInput As FunctionInput,
	<OutAttribute> ByRef errorMessage As String
) As Boolean
protected:
virtual bool ValidateDataInputs(
	IEnumerable<FunctionInput^>^ dataInputs, 
	[OutAttribute] FunctionInput^% invalidInput, 
	[OutAttribute] String^% errorMessage
)
abstract ValidateDataInputs : 
        dataInputs : IEnumerable<FunctionInput> * 
        invalidInput : FunctionInput byref * 
        errorMessage : string byref -> bool 
override ValidateDataInputs : 
        dataInputs : IEnumerable<FunctionInput> * 
        invalidInput : FunctionInput byref * 
        errorMessage : string byref -> bool Parameters
- dataInputs
 - Type: System.Collections.GenericIEnumerableFunctionInput
The data input values. - invalidInput
 - Type: Dundas.BI.Data.FunctionsFunctionInput
The invalid input, if found. - errorMessage
 - Type: SystemString
The error message. 
Return Value
Type: 
Boolean if all data inputs are valid; otherwise, 
.
See Also