Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbConnectionStringBuilder::ContainsKey Method (String^)

 

Determines whether the DbConnectionStringBuilder contains a specific key.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
virtual bool ContainsKey(
	String^ keyword
)

Parameters

keyword
Type: System::String^

The key to locate in the DbConnectionStringBuilder.

Return Value

Type: System::Boolean

true if the DbConnectionStringBuilder contains an entry with the specified key; otherwise false.

Exception Condition
ArgumentNullException

keyword is a null reference (Nothing in Visual Basic).

No code example is currently available or this language may not be supported.

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
Return to top
Show:
© 2017 Microsoft