DtsConnectionAttribute.UITypeName Property
Specifies the qualified name of the assembly that implements the user interface of the connection manager.
Espace de noms: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Syntaxe
'Déclaration
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)
Valeur de propriété
The type name of the user interface of the connection manager object.
Notes
Exemple de code mis à jour :15 septembre 2007
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.
Exemple
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.00.000.00,Culture=neutral,PublicKeyToken=")]
<DtsConnection(DisplayName:="MyConnectionManager", _
Description:="Custom Connection Manager for Testing", _
IconResource:="MyConnectionManager.MyConnectionMgrIcon.ico", _
UITypeName:="MyNamespace.MyConnectionManagerClassName,MyAssemblyName," & _
"Version=1.00.000.00,Culture=neutral,PublicKeyToken=")> _
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).
Sécurité des threads
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
DtsConnectionAttribute Class
DtsConnectionAttribute Members
Microsoft.SqlServer.Dts.Runtime Namespace