ConnectionManager.Description Property
Gets or sets the description of the ConnectionManager object.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Property Value
Type: System.StringA String that contains the description given to the connection manager.
Implements
IDTSName.DescriptionThe following code example creates a new FILE connection manager and sets several properties, including the Description.
using System; using System.Collections.Generic; using System.Text; using Microsoft.SqlServer.Dts.Runtime; using Microsoft.SqlServer.Dts.Tasks.FileSystemTask; namespace FileSystemTask_API { class Program { static void Main(string[] args) { String sourceDir = @"C:\TestFolder"; Package pkg = new Package(); // Create a File connection manager. ConnectionManager cm = pkg.Connections.Add("FILE"); cm.Name = "The FILE connection manager"; cm.Description = "My FILE connection manager"; cm.ConnectionString = sourceDir; cm.Properties["FileUsageType"].SetValue(cm, DTSFileConnectionUsageType.FolderExists); } } }