DtsPipelineComponentAttribute 类

定义

包含关于 PipelineComponent 某个对象的设计时信息。

public ref class DtsPipelineComponentAttribute : Microsoft::SqlServer::Dts::Pipeline::Localization::DtsLocalizableAttribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
public class DtsPipelineComponentAttribute : Microsoft.SqlServer.Dts.Pipeline.Localization.DtsLocalizableAttribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=false)>]
type DtsPipelineComponentAttribute = class
    inherit DtsLocalizableAttribute
Public Class DtsPipelineComponentAttribute
Inherits DtsLocalizableAttribute
继承
DtsPipelineComponentAttribute
属性

示例

以下示例展示了实现该属性的受管理数据流组件。

[DtsPipelineComponent(DisplayName="MyComponent", ComponentType=ComponentType.Transform)]  
public class MyComponent: PipelineComponent  
{}  
DtsPipelineComponent(DisplayName="MyComponent", ComponentType=ComponentType.Transform)> _   
Public Class MyComponent   
Inherits PipelineComponent   
End Class  

注解

该属性应用于源自 PipelineComponent的受管理数据流组件。 该属性将类标识为受管理的数据流组件,并通过其属性提供信息,控制 SSIS 设计器如何显示和交互该对象。

构造函数

名称 说明
DtsPipelineComponentAttribute()

初始化 DtsPipelineComponentAttribute 类的新实例。

属性

名称 说明
ComponentType

将组件标识为源、目的或转换。

CurrentVersion

获取或设置组件的版本。

Description

获得或设置了 的描述。DtsLocalizableAttribute

(继承自 DtsLocalizableAttribute)
DisplayName

获取或设置 < a0 /> 的显示名称。

(继承自 DtsLocalizableAttribute)
HelpCollection

获取或设置帮助收集,以便从中提取帮助。

HelpKeyword

获取或设置与组件相关的帮助关键词。

IconResource

获取或设置工具箱中用于表示组件的图标。

LocalizationType

获取或设置提供 的 DtsLocalizableAttribute值的类。

(继承自 DtsLocalizableAttribute)
NoEditor

获取或设置一个值,指示组件是否可以使用高级属性编辑器。

RequiredProductLevel

获取或设置一个值,指示数据流组件所需的 SQL Server 2005 产品级别。

SamplesTag

从组件中获取或设置采样标签。

ShapeProgID

获取或设定组件的设计形状。

SupportsBackPressure

识别该组件支持多个输入,并在输入产生数据速率不均时实现处理过多内存占用的可选方法。

UITypeName

获取或设置实现组件用户界面的装配的限定名称。

适用于