OutputElementSource Constructor (OutputConnector, Guid, String, String, DataType, IEnumerableConnectorElement, Boolean) |
Note: This API is now obsolete.
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax[ObsoleteAttribute("Deprecated. Instead use constructor with similar signature that does not have staticId parameter. See issue 53366 for more details.")]
public OutputElementSource(
OutputConnector connector,
Guid staticId,
string name,
string description,
DataType elementDataType,
IEnumerable<ConnectorElement> inputElements,
bool isRequired
)<ObsoleteAttribute("Deprecated. Instead use constructor with similar signature that does not have staticId parameter. See issue 53366 for more details.")>
Public Sub New (
connector As OutputConnector,
staticId As Guid,
name As String,
description As String,
elementDataType As DataType,
inputElements As IEnumerable(Of ConnectorElement),
isRequired As Boolean
)public:
[ObsoleteAttribute(L"Deprecated. Instead use constructor with similar signature that does not have staticId parameter. See issue 53366 for more details.")]
OutputElementSource(
OutputConnector^ connector,
Guid staticId,
String^ name,
String^ description,
DataType elementDataType,
IEnumerable<ConnectorElement^>^ inputElements,
bool isRequired
)
[<ObsoleteAttribute("Deprecated. Instead use constructor with similar signature that does not have staticId parameter. See issue 53366 for more details.")>]
new :
connector : OutputConnector *
staticId : Guid *
name : string *
description : string *
elementDataType : DataType *
inputElements : IEnumerable<ConnectorElement> *
isRequired : bool -> OutputElementSourceParameters
- connector
- Type: Dundas.BI.Data.TransformsOutputConnector
The parent connector. - staticId
- Type: SystemGuid
The output connector element static ID, when this ID is used within the transform and must be internally maintained by it. - 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| Exception | Condition |
|---|
| ArgumentNullException | connector or inputElements is . |
RemarksUse this constructor when the output result is derived from one or more input elements.
See Also