DataBufferGetElementAggregatedValue Method |
Gets the aggregated value for the specified element. The aggregator setting must be setup before the buffer is used to store data.
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic Object GetElementAggregatedValue(
ConnectorElement connectorElement,
FormulaAggregator aggregator,
bool skipValidation
)
Public Function GetElementAggregatedValue (
connectorElement As ConnectorElement,
aggregator As FormulaAggregator,
skipValidation As Boolean
) As Object
public:
Object^ GetElementAggregatedValue(
ConnectorElement^ connectorElement,
FormulaAggregator aggregator,
bool skipValidation
)
member GetElementAggregatedValue :
connectorElement : ConnectorElement *
aggregator : FormulaAggregator *
skipValidation : bool -> Object
Parameters
- connectorElement
- Type: Dundas.BI.Data.TransformsConnectorElement
The connector element for which the aggregator value is requested. - aggregator
- Type: Dundas.BI.Data.MetadataFormulaAggregator
The aggregator. - skipValidation
- Type: SystemBoolean
If set to , validation is not performed, to increase data retrieval performance.
Return Value
Type:
ObjectThe value.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | connectorElement is . |
| ArgumentException |
There buffer has not been setup to hold values for the specified connectorElement
or
aggregator is not compatible with the specified connector element.
|
See Also