DtsConnectionAttribute Class
SQL Server 2008
Supplies design time information about a ConnectionManager object.
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
This attribute is applied to managed Integration Services connection managers that are derived from ConnectionManagerBase. The attribute identifies a class as a managed connection manager and provides information through its properties that control how the SSIS Designer displays and interacts with the object.
The DisplayName and ConnectionType properties are required properties. The DisplayName is displayed in the list of connection managers in Business Intelligence Development Studio.
The following example shows a class that implements this attribute.
[DtsConnection(DisplayName = "MyConnectionManager", Description = "Custom Connection Manager for Testing", IconResource = "MyConnectionManager.MyConnectionMgrIcon.ico", UITypeName = "MyNamespace.MyConnectionManagerClassName," + "MyAssemblyName,Version=1.0.0.0,Culture=neutral," + "PublicKeyToken=<value>")] public class MyConnnectionMgr : ConnectionManagerBase { }
System.Object
System.Attribute
Microsoft.SqlServer.Dts.Runtime.Localization.DtsLocalizableAttribute
Microsoft.SqlServer.Dts.Runtime.DtsConnectionAttribute
System.Attribute
Microsoft.SqlServer.Dts.Runtime.Localization.DtsLocalizableAttribute
Microsoft.SqlServer.Dts.Runtime.DtsConnectionAttribute
