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

获取或设置 DtsLocalizableAttribute 的显示名称。

(继承自 DtsLocalizableAttribute)
HelpCollection

获取或设置要从中检索帮助内容的帮助集。

HelpKeyword

获取或设置与此组件相关联的帮助关键字。

IconResource

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

LocalizationType

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

(继承自 DtsLocalizableAttribute)
NoEditor

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

RequiredProductLevel

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

SamplesTag

获取或设置组件的示例标记。

ShapeProgID

获取或设置组件的设计器形状。

SupportsBackPressure

将组件标识为支持多个输入的组件,并且实现用于处理过多占用内存(如果输入以不相等的速率生成数据)的可选方法。

UITypeName

获取或设置实现组件的用户界面的限定程序集的名称。

适用于