UITypeName 속성
Specifies the qualified name of the assembly that implements the user interface of the connection manager.
네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)
구문
‘선언
Public Property UITypeName As String
Get
Set
‘사용 방법
Dim instance As DtsConnectionAttribute
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)
속성 값
유형: System. . :: . .String
The type name of the user interface of the connection manager object.
주의
This optional property specifies the user interface that is displayed when the connection manager is edited in Business Intelligence Development Studio.
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 IDtsConnectionManagerUI interface.
예
The following example demonstrates the proper format of this property.
[DtsConnection(DisplayName = "MyConnectionManager",
Description = "Custom Connection Manager for Testing",
IconResource = "MyConnectionManager.MyConnectionMgrIcon.ico",
UITypeName = "MyNamespace.MyConnectionManagerClassName," +
"MyAssemblyName,Version=1.0.0.0,Culture=neutral," +
"PublicKeyToken=<value>")]
<DtsConnection(DisplayName:="MyConnectionManager", _
Description:="Custom Connection Manager for Testing", _
IconResource:="MyConnectionManager.MyConnectionMgrIcon.ico", _
UITypeName:="MyNamespace.MyConnectionManagerClassName,MyAssemblyName," & _
"Version=1.0.0.0,Culture=neutral,PublicKeyToken=<value>")> _
You find the values of the Culture and PublicKeyToken parameters by examining the properties of the user interface assembly in the global assembly cache (GAC).