OutputElementSource Constructor (OutputConnector, String, String, DataType, IEnumerableConnectorElement, Boolean, ConnectorElementUsage) |
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic OutputElementSource(
OutputConnector connector,
string name,
string description,
DataType elementDataType,
IEnumerable<ConnectorElement> inputElements,
bool isRequired,
ConnectorElementUsage usage
)
Public Sub New (
connector As OutputConnector,
name As String,
description As String,
elementDataType As DataType,
inputElements As IEnumerable(Of ConnectorElement),
isRequired As Boolean,
usage As ConnectorElementUsage
)
public:
OutputElementSource(
OutputConnector^ connector,
String^ name,
String^ description,
DataType elementDataType,
IEnumerable<ConnectorElement^>^ inputElements,
bool isRequired,
ConnectorElementUsage usage
)
new :
connector : OutputConnector *
name : string *
description : string *
elementDataType : DataType *
inputElements : IEnumerable<ConnectorElement> *
isRequired : bool *
usage : ConnectorElementUsage -> OutputElementSourceParameters
- 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. - usage
- Type: Dundas.BI.Data.TransformsConnectorElementUsage
The connector element usage for this output source.
Exceptions
RemarksUse this constructor when the output result is derived from one or more input elements, but you want to specify the usage.
See Also