DtsPipelineComponentAttribute.UITypeName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 요소의 사용자 인터페이스를 구현하는 어셈블리의 정규화된 이름을 가져오거나 설정합니다.
public:
property System::String ^ UITypeName { System::String ^ get(); void set(System::String ^ value); };
public string UITypeName { get; set; }
member this.UITypeName : string with get, set
Public Property UITypeName As String
속성 값
IDtsComponentUI 인터페이스를 구현하는 형식의 정규화된 이름입니다.
예제
다음 예제에서는이 속성을 사용 하 여 편집기를 지정 하는 구성 요소를 보여 집니다.
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
설명
이 선택적 속성은 구성 요소가 SSDT(SQL Server 또는 SQL Server Data Tools)에서 편집될 때 표시되는 사용자 인터페이스를 지정합니다.
속성의 형식은 다음 요소를 포함하는 쉼표로 구분된 문자열입니다.
형식 이름
어셈블리 이름
파일 버전
문화권
공개 키 토큰
이 속성에 지정된 형식 이름은 인터페이스를 IDtsComponentUI 구현합니다. 전역 어셈블리 캐시에서 Culture
사용자 인터페이스 어셈블리의 속성을 검사하여 해당 값과 PublicKeyToken
매개 변수를 찾을 수 있습니다.