Udostępnij za pośrednictwem


Właściwość DtsPipelineComponentAttribute.UITypeName

Pobiera lub ustawia kwalifikowana nazwa wirtualny plik dziennika wykonawczych składnika interfejs użytkownika.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Pipeline
Zestaw:  Microsoft.SqlServer.PipelineHost (w Microsoft.SqlServer.PipelineHost.dll)

Składnia

'Deklaracja
Public Property UITypeName As String
    Get
    Set
'Użycie
Dim instance As DtsPipelineComponentAttribute
Dim value As String

value = instance.UITypeName

instance.UITypeName = value
public string UITypeName { get; set; }
public:
property String^ UITypeName {
    String^ get ();
    void set (String^ value);
}
member UITypeName : string with get, set
function get UITypeName () : String
function set UITypeName (value : String)

Wartość właściwości

Typ: System.String
W pełni kwalifikowana nazwa typu wykonawczych IDtsComponentUI interfejs.

Uwagi

Opcjonalne właściwość ta określa interfejs użytkownika, który jest wyświetlany, gdy składnik jest edytowany w SQL Server lub Business Intelligence Development Studio.

Format właściwość jest rozdzielany przecinkami ciąg znaków zawierający następujące elementy:

  • Wpisz nazwę

  • Nazwa zestawu

  • Wersja pliku

  • Kultura

  • Token klucz publicznego

Wpisz nazwę określoną w tej właściwość implementuje IDtsComponentUI interfejs.Wartości Culture i PublicKeyToken Parametry można znaleźć poprzez badanie właściwości wirtualny plik dziennika interfejs użytkownika w Global Assembly Cache.

Przykłady

Poniższy przykład pokazuje składnik, który określa Edytor za pomocą tej właściwość.

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
   {
   }
}
[Visual Basic]
Imports System 
Imports Microsoft.SqlServer.Dts.Pipeline.Design 
Imports 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 
 Inherits PipelineComponent 
 End Class 
End Namespace