DtsConnectionAttribute.ConnectionType 속성

정의

연결 관리자 유형을 가져오거나 설정합니다. 이 속성은 필수입니다.

public:
 property System::String ^ ConnectionType { System::String ^ get(); void set(System::String ^ value); };
public string ConnectionType { get; set; }
member this.ConnectionType : string with get, set
Public Property ConnectionType As String

속성 값

연결 관리자의 형식을 설명하는 문자열입니다.

예제

다음 예제에서는이 특성을 구현 하는 클래스를 보여 줍니다.

  [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  

적용 대상