Méthode GetConnectionID
Gets a String containing the ID of the connection.
Espace de noms : Microsoft.SqlServer.Dts.Runtime
Assembly : Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)
Syntaxe
'Déclaration
Public Function GetConnectionID ( _
connections As Connections, _
nameOrID As String _
) As String
'Utilisation
Dim instance As Task
Dim connections As Connections
Dim nameOrID As String
Dim returnValue As String
returnValue = instance.GetConnectionID(connections, _
nameOrID)
public string GetConnectionID(
Connections connections,
string nameOrID
)
public:
String^ GetConnectionID(
Connections^ connections,
String^ nameOrID
)
member GetConnectionID :
connections:Connections *
nameOrID:string -> string
public function GetConnectionID(
connections : Connections,
nameOrID : String
) : String
Paramètres
- connections
Type : Microsoft.SqlServer.Dts.Runtime. . :: . .Connections
The Connections collection to review.
- nameOrID
Type : System. . :: . .String
The name of the connection to return.
Valeur de retour
Type : System. . :: . .String
A String containing the connection's ID.
Notes
This function is useful when if you are writing a custom task, and want to convert between the connection ID and the connection name.
Exemples
The following code example shows an example of a task that uses the GetConnectionID method to get and set the names and ID of the connection in the task's custom myConnection property.
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