FunctionDefinitionGetDynamicResultMetadata Method

Gets the dynamic result metadata. This method should always be overridden when the function returns dynamic results, therefore when the number of results depends on the inputs.

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 virtual void GetDynamicResultMetadata(
	IEnumerable<int> numberOfDataParameters,
	IEnumerable functionSettingValues,
	int functionResultIndex,
	out int numberOfResults,
	out Collection<KeyValuePair<string, string>> namesAndDescriptions
)

Parameters

numberOfDataParameters
Type: System.Collections.GenericIEnumerableInt32
The number of data parameters for each data input.
functionSettingValues
Type: System.CollectionsIEnumerable
The function setting values.
functionResultIndex
Type: SystemInt32
Index of the function result.
numberOfResults
Type: SystemInt32
The number of results.
namesAndDescriptions
Type: System.Collections.ObjectModelCollectionKeyValuePairString, String
The names and descriptions.
See Also