OutputElementSource Constructor (OutputConnector, String, String, DataType, IEnumerableConnectorElement, Boolean)

Initializes a new instance of the OutputElementSource class.

Namespace:  Dundas.BI.Data.Transforms
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
public OutputElementSource(
	OutputConnector connector,
	string name,
	string description,
	DataType elementDataType,
	IEnumerable<ConnectorElement> inputElements,
	bool isRequired
)

Parameters

connector
Type: Dundas.BI.Data.TransformsOutputConnector
The parent connector.
name
Type: SystemString
The name of the output element.
description
Type: SystemString
The output element description.
elementDataType
Type: Dundas.BI.Data.MetadataDataType
Type of the element data.
inputElements
Type: System.Collections.GenericIEnumerableConnectorElement
All the input elements used to generate the current instance values.
isRequired
Type: SystemBoolean
Use only when the current instance or its dependencies is mandatory for the transform, irrespective of optimizations.
Exceptions
ExceptionCondition
ArgumentNullExceptionconnector or inputElements is .
Remarks
Use this constructor when the output result is derived from one or more input elements.
See Also