DtsPipelineComponentAttribute.UITypeName Property
コンポーネントのユーザー インターフェイスを実装するアセンブリの修飾名を取得します。値の設定も可能です。
名前空間: Microsoft.SqlServer.Dts.Pipeline
アセンブリ: Microsoft.SqlServer.PipelineHost (microsoft.sqlserver.pipelinehost.dll 内)
構文
'宣言
Public Property UITypeName As String
public string UITypeName { get; set; }
public:
property String^ UITypeName {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_UITypeName ()
/** @property */
public void set_UITypeName (String value)
public function get UITypeName () : String
public function set UITypeName (value : String)
プロパティ値
IDtsComponentUI インターフェイスを実装している種類の完全修飾名です。
解説
このオプションのプロパティでは、SQL Server または Business Intelligence Development Studio でコンポーネントを編集する際に表示されるユーザー インターフェイスを指定します。
このプロパティの形式は、次の要素を含むコンマ区切りの文字列です。
種類名
アセンブリ名
ファイル バージョン
カルチャ
公開キー トークン
このプロパティで指定した種類名は、IDtsComponentUI インターフェイスを実装します。グローバル アセンブリ キャッシュ内のユーザー インターフェイス アセンブリのプロパティを調べると見つけられる、Culture パラメータと PublicKeyToken パラメータの値です。
使用例
次の例は、このプロパティを使用してエディタを指定するコンポーネントを示します。
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
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
DtsPipelineComponentAttribute Class
DtsPipelineComponentAttribute Members
Microsoft.SqlServer.Dts.Pipeline Namespace