Open this page in the API Guide

FunctionDefinition.GetDynamicResultMetadata 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 (25.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.Generic.IEnumerable<Int32>
The number of data parameters for each data input.
functionSettingValues
Type: System.Collections.IEnumerable
The function setting values.
functionResultIndex
Type: System.Int32
Index of the function result.
numberOfResults
Type: System.Int32
The number of results.
namesAndDescriptions
Type: System.Collections.ObjectModel.Collection<KeyValuePair<String, String>>
The names and descriptions.
See Also