DtsConnectionAttribute.ConnectionContact 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결 관리자의 연락처 정보를 포함하는 String을 가져오거나 설정합니다.
public:
property System::String ^ ConnectionContact { System::String ^ get(); void set(System::String ^ value); };
public string ConnectionContact { get; set; }
member this.ConnectionContact : string with get, set
Public Property ConnectionContact 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