DtsPipelineComponentAttribute.UITypeName Property

Definition

Gets or sets the qualified name of the assembly implementing the user interface of the component.

C#
public string UITypeName { get; set; }

Property Value

The fully qualified name of the type implementing the IDtsComponentUI interface.

Examples

The following example shows a component that specifies an editor using this property.

C#
using System;  
using Microsoft.SqlServer.Dts.Pipeline.Design;  
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;  
namespace DtsDocumentation  
{  
   [DtsPipelineComponent(DisplayName="MyComponent",UITypeName="MyNamespace.MyComponentUIClassName,MyAssemblyName,Version=1.0.0.0,Culture=neutral,PublicKeyToken=")]  
   public class MyComponent : PipelineComponent  
   {  
   }  
}  

Remarks

This optional property specifies the user interface that is displayed when the component is edited in SQL Server or SQL Server Data Tools (SSDT).

The format of the property is a comma-delimited string that contains the following elements:

  • Type name

  • Assembly name

  • File version

  • Culture

  • Public key token

The type name specified in this property implements the IDtsComponentUI interface. The values of the Culture and PublicKeyToken parameters can be found by examining the properties of the user interface assembly in the global assembly cache.

Applies to

Product Versions
SQL Server .NET SDK 2016, 2017, 2019