Task.GetConnectionID(Connections, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결 ID를 포함하는 String을 가져옵니다.
public:
System::String ^ GetConnectionID(Microsoft::SqlServer::Dts::Runtime::Connections ^ connections, System::String ^ nameOrID);
public string GetConnectionID (Microsoft.SqlServer.Dts.Runtime.Connections connections, string nameOrID);
member this.GetConnectionID : Microsoft.SqlServer.Dts.Runtime.Connections * string -> string
Public Function GetConnectionID (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와 연결 이름 간에 변환하려는 경우에 유용합니다.