Task.GetConnectionName(Connections, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결 이름을 포함하는 String을 가져옵니다.
public:
System::String ^ GetConnectionName(Microsoft::SqlServer::Dts::Runtime::Connections ^ connections, System::String ^ nameOrID);
public string GetConnectionName (Microsoft.SqlServer.Dts.Runtime.Connections connections, string nameOrID);
member this.GetConnectionName : Microsoft.SqlServer.Dts.Runtime.Connections * string -> string
Public Function GetConnectionName (connections As Connections, nameOrID As String) As String
매개 변수
- connections
- Connections
검토할 Connections 컬렉션입니다.
- nameOrID
- String
반환할 연결의 ID입니다.
반환
연결 이름을 포함하는 문자열입니다.
예제
다음 코드 예제에서는 메서드를 사용하여 GetConnectionID 태스크의 사용자 지정 myConnection
속성에 있는 연결의 이름과 ID를 가져오고 설정하는 작업의 예를 보여 있습니다.
public string myConnection
{
get
{return GetConnectionName(m_connections, m_ MyConnectionName);
}
set
{m_MyConnectionName = GetConnectionID(m_connections, value);}
}
Public Property myConnection() As String
Get
Return GetConnectionName(m_connections, m_ MyConnectionName)
End Get
Set (ByVal Value As String)
m_MyConnectionName = GetConnectionID(m_connections, value)
End Set
End Property
설명
이 함수는 사용자 지정 작업을 작성하고 연결 ID와 연결 이름 간에 변환하려는 경우에 유용합니다.