DtsConnectionAttribute.ConnectionType 속성

Gets or sets the type of the connection manager. This property is required.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime
어셈블리:  Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)

구문

‘선언
Public Property ConnectionType As String 
    Get 
    Set
‘사용 방법
Dim instance As DtsConnectionAttribute 
Dim value As String 

value = instance.ConnectionType

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

속성 값

유형: System.String
A String that describes the type of the connection manager.

The following example shows a class that implements this attribute.

  [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=")]
public class MyConnnectionMgr : ConnectionManagerBase
{
}
<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=")> _
Public Class MyConnnectionMgr
     Inherits ConnectionManagerBase
End Class

참고 항목

참조

DtsConnectionAttribute 클래스

Microsoft.SqlServer.Dts.Runtime 네임스페이스