DbConnectionStringBuilder.ContainsKey(String) Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Bepaalt of de DbConnectionStringBuilder sleutel een specifieke sleutel bevat.
public:
virtual bool ContainsKey(System::String ^ keyword);
public virtual bool ContainsKey(string keyword);
abstract member ContainsKey : string -> bool
override this.ContainsKey : string -> bool
Public Overridable Function ContainsKey (keyword As String) As Boolean
Parameters
- keyword
- String
De sleutel die moet worden gevonden in de DbConnectionStringBuilder.
Retouren
true als de DbConnectionStringBuilder vermelding een vermelding met de opgegeven sleutel bevat; anders false.
Uitzonderingen
keyword is een null-verwijzing (Nothing in Visual Basic).
Voorbeelden
static void Main()
{
DbConnectionStringBuilder builder = new DbConnectionStringBuilder();
builder.Add("Provider", "Provider=Microsoft.Jet.OLEDB.4.0");
builder.Add("Data Source", "C:\\ThisExcelWorkbook.xls");
builder.Add("Extended Properties", "Excel 8.0;HDR=Yes;IMEX=1");
// Displays the values in the DbConnectionStringBuilder.
Console.WriteLine("Contents of the DbConnectionStringBuilder:");
Console.WriteLine(builder.ConnectionString);
// Searches for a key.
if (builder.ContainsKey("Data Source"))
{
Console.WriteLine("The collection contains the key \"Data Source\".");
}
else
{
Console.WriteLine("The collection does not contain the key \"Data Source\".");
}
Console.ReadLine();
}
Sub Main()
' The following code example searches for an element in a
' DbConnectionStringBuilder.
Dim builder As New DbConnectionStringBuilder
builder.Add("Provider", "Provider=Microsoft.Jet.OLEDB.4.0")
builder.Add("Data Source", "C:\ThisExcelWorkbook.xls")
builder.Add("Extended Properties", "Excel 8.0;HDR=Yes;IMEX=1")
' Displays the values in the DbConnectionStringBuilder.
Console.WriteLine("Contents of the DbConnectionStringBuilder:")
Console.WriteLine(builder.ConnectionString)
' Searches for a key.
If builder.ContainsKey("Data Source") Then
Console.WriteLine("The collection contains the key ""Data Source"".")
Else
Console.WriteLine("The collection does not contain the key ""Data Source"".")
End If
Console.ReadLine()
End Sub
Deze code produceert de volgende uitvoer:
Contents of the DbConnectionStringBuilder:
provider="Provider=Microsoft.Jet.OLEDB.4.0";data
source=C:\MyExcel.xls;extended
properties="Excel 8.0;HDR=Yes;IMEX=1"
The collection contains the key "Data Source".