ConnectionInfos.Contains(Object) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt einen booleschen Wert zurück, der angibt, ob auf die ConnectionInfo Elemente in der ConnectionInfos Auflistung mit dem Namen, dem Index, der ID oder dem Identitätsparameter als Index zugegriffen werden kann.
public:
bool Contains(System::Object ^ index);
public bool Contains (object index);
member this.Contains : obj -> bool
Public Function Contains (index As Object) As Boolean
Parameter
- index
- Object
Der Name oder Index bzw. die Identität oder ID des abzugleichenden Objekts in der Auflistung.
Gibt zurück
true gibt an, dass Sie das Element mithilfe der Syntax ConnectionInfos[index]abrufen können; false gibt an, dass die Indizierung nicht zum Abrufen von Elementen aus der ConnectionInfos Auflistung verwendet werden kann.
Beispiele
Das folgende Beispiel zeigt eine Suche der Auflistung für die Verbindung "DTS Verbindungs-Manager für Dateien". Der name, der in der Suche verwendet wird, ist der name, der in der Name Eigenschaft zurückgegeben wird.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace ConnInfosTest
{
class Program
{
static void Main(string[] args)
{
Application dtsApplication = new Application();
ConnectionInfos connectionInfos = dtsApplication.ConnectionInfos;
// Search for the File connection in the collection
if (connectionInfos.Contains("DTS Connection Manager for Files"))
Console.WriteLine("The collection contains the FILE connection");
else
Console.WriteLine("The collection does not contain the FILE connection");
Console.WriteLine();
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace ConnInfosTest
Class Program
Shared Sub Main(ByVal args() As String)
Dim dtsApplication As Application = New Application()
Dim connectionInfos As ConnectionInfos = dtsApplication.ConnectionInfos
' Search for the File connection in the collection
If connectionInfos.Contains("DTS Connection Manager for Files") Then
Console.WriteLine("The collection contains the FILE connection")
Else
Console.WriteLine("The collection does not contain the FILE connection")
End If
Console.WriteLine()
End Sub
End Class
End Namespace
Beispielausgabe:
The collection contains the FILE connection