ComponentType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the three types of data flow components.
public enum class ComponentType
public enum ComponentType
type ComponentType =
Public Enum ComponentType
- Inheritance
-
ComponentType
Fields
Name | Value | Description |
---|---|---|
Transform | 0 | Identifies a component as a transformation, which has both one or more IDTSInput100 objects and one or more IDTSOutput100 objects. |
SourceAdapter | 1 | Identifies a component as a source, which has one or more IDTSOutput100 objects and no IDTSInput100 objects. |
DestinationAdapter | 2 | Identifies a component as a destination, which has one or more IDTSInput100 objects and no IDTSOutput100 objects. |
Remarks
This enumeration is used by the DtsPipelineComponentAttribute class and the PipelineComponentInfo class to identify the functionality of a managed data flow component.