InputConnector Constructor |
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic InputConnector(
Transform transform,
Guid id,
string name,
string description,
ConnectorDataFormats dataFormat,
IList<ComponentSetting> transformSettings,
ConnectorElementGroup transformElements,
IList<ComponentSetting> elementSettings,
bool isConnectionRequired,
ErrorHandlingPolicy errorHandling
)
Public Sub New (
transform As Transform,
id As Guid,
name As String,
description As String,
dataFormat As ConnectorDataFormats,
transformSettings As IList(Of ComponentSetting),
transformElements As ConnectorElementGroup,
elementSettings As IList(Of ComponentSetting),
isConnectionRequired As Boolean,
errorHandling As ErrorHandlingPolicy
)
public:
InputConnector(
Transform^ transform,
Guid id,
String^ name,
String^ description,
ConnectorDataFormats dataFormat,
IList<ComponentSetting^>^ transformSettings,
ConnectorElementGroup^ transformElements,
IList<ComponentSetting^>^ elementSettings,
bool isConnectionRequired,
ErrorHandlingPolicy errorHandling
)
new :
transform : Transform *
id : Guid *
name : string *
description : string *
dataFormat : ConnectorDataFormats *
transformSettings : IList<ComponentSetting> *
transformElements : ConnectorElementGroup *
elementSettings : IList<ComponentSetting> *
isConnectionRequired : bool *
errorHandling : ErrorHandlingPolicy -> InputConnectorParameters
- transform
- Type: Dundas.BI.Data.TransformsTransform
The parent transform. - id
- Type: SystemGuid
The component ID. - name
- Type: SystemString
The name of the component. - description
- Type: SystemString
The component description. - dataFormat
- Type: Dundas.BI.Data.TransformsConnectorDataFormats
The data format. - transformSettings
- Type: System.Collections.GenericIListComponentSetting
The transform settings. - transformElements
- Type: Dundas.BI.Data.TransformsConnectorElementGroup
The transform elements. - elementSettings
- Type: System.Collections.GenericIListComponentSetting
The element settings. - isConnectionRequired
- Type: SystemBoolean
A value that specifies if the input must have a valid connection. - errorHandling
- Type: Dundas.BI.Data.TransformsErrorHandlingPolicy
The error handling.
See Also