SubsetFunctionGetSubsetMetadata Method |
Populates the function metadata by describing the data inputs and the function settings.
Namespace:
Dundas.BI.Data.Functions
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax protected abstract string GetSubsetMetadata(
out Guid mainDataInputId,
out IList<InputDescriptor> additionalDataInputs,
out IList<ComponentSetting> settings
)
Protected MustOverride Function GetSubsetMetadata (
<OutAttribute> ByRef mainDataInputId As Guid,
<OutAttribute> ByRef additionalDataInputs As IList(Of InputDescriptor),
<OutAttribute> ByRef settings As IList(Of ComponentSetting)
) As String
protected:
virtual String^ GetSubsetMetadata(
[OutAttribute] Guid% mainDataInputId,
[OutAttribute] IList<InputDescriptor^>^% additionalDataInputs,
[OutAttribute] IList<ComponentSetting^>^% settings
) abstract
abstract GetSubsetMetadata :
mainDataInputId : Guid byref *
additionalDataInputs : IList<InputDescriptor> byref *
settings : IList<ComponentSetting> byref -> string
Parameters
- mainDataInputId
- Type: SystemGuid
The main data input ID. - additionalDataInputs
- Type: System.Collections.GenericIListInputDescriptor
The data inputs. - settings
- Type: System.Collections.GenericIListComponentSetting
The function settings.
Return Value
Type:
StringThe function symbol to be used in scripts.
See Also