DbConnectionStringBuilder::ContainsKey Method (String^)
.NET Framework (current version)
Determines whether the DbConnectionStringBuilder contains a specific key.
Assembly: System.Data (in System.Data.dll)
Parameters
- keyword
-
Type:
System::String^
The key to locate in the DbConnectionStringBuilder.
Return Value
Type: System::Booleantrue if the DbConnectionStringBuilder contains an entry with the specified key; otherwise false.
| Exception | Condition |
|---|---|
| ArgumentNullException | keyword is a null reference (Nothing in Visual Basic). |
This code produces the following output:
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".
Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Available since 10
.NET Framework
Available since 2.0
Show: