DtsConnectionAttribute 类

定义

提供有关 ConnectionManager 对象的设计时信息。

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

示例

下面的示例演示实现此属性的类。

  [DtsConnection(DisplayName = "MyConnectionManager",  
    Description = "Custom Connection Manager for Testing",  
    IconResource = "MyConnectionManager.MyConnectionMgrIcon.ico",  
    UITypeName = "MyNamespace.MyConnectionManagerClassName," +  
    "MyAssemblyName,Version=1.00.000.00,Culture=neutral,PublicKeyToken=")]  
public class MyConnnectionMgr : ConnectionManagerBase  
{  
}  
<DtsConnection(DisplayName:="MyConnectionManager", _  
  Description:="Custom Connection Manager for Testing", _  
  IconResource:="MyConnectionManager.MyConnectionMgrIcon.ico", _  
  UITypeName:="MyNamespace.MyConnectionManagerClassName,MyAssemblyName," & _  
  "Version=1.00.000.00,Culture=neutral,PublicKeyToken=")> _  
Public Class MyConnnectionMgr  
     Inherits ConnectionManagerBase  
End Class  

注解

此属性应用于派生自 ConnectionManagerBase的托管 Integration Services 连接管理器。 该属性将类标识为托管连接管理器,并通过其属性提供信息,用于控制 SSIS 设计器如何显示和与对象交互。

属性 DisplayName 是必需的 ConnectionType 属性。 该DisplayName列表显示在SQL SERVER DATA TOOLS (SSDT) 的连接管理器列表中。

构造函数

DtsConnectionAttribute()

初始化 DtsConnectionAttribute 类的新实例。

属性

ConnectionContact

获取或设置一个字符串,其中包含连接管理器的联系信息。

ConnectionType

获取或设置连接管理器的类型。 此属性是必需项。

Description

获取或设置 DtsLocalizableAttribute 的说明。

(继承自 DtsLocalizableAttribute)
DisplayName

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

(继承自 DtsLocalizableAttribute)
IconResource

获取或设置与连接管理器对象关联的图标。

LocalizationType

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

(继承自 DtsLocalizableAttribute)
UITypeName

指定实现连接连管理器的用户界面的程序集限定名称。

适用于