SubsetFunctionGetSubsetMetadata Method |
Populates the function metadata by describing the data inputs and the function settings.
Namespace: Dundas.BI.Data.FunctionsAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxprotected 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 Guid
- The main data input ID.
- additionalDataInputs IListInputDescriptor
- The data inputs.
- settings IListComponentSetting
- The function settings.
Return Value
StringThe function symbol to be used in scripts.
See Also