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.

OleDbConnectionStringBuilder::ContainsKey Method (String^)

 

Determines whether the OleDbConnectionStringBuilder contains a specific key.

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

public:
virtual bool ContainsKey(
	String^ keyword
) override

Parameters

keyword
Type: System::String^

The key to locate in the OleDbConnectionStringBuilder.

Return Value

Type: System::Boolean

true if the OleDbConnectionStringBuilder contains an element that has the specified key; otherwise false.

Exception Condition
ArgumentNullException

keyword is null (Nothing in Visual Basic).

Although setting the Provider property may implicitly fill in appropriate key/value pairs for the provider, the ContainsKey method does not return true for implicitly provided keys. This method returns true only for explicitly provided keys.

The following example creates an OleDbConnectionStringBuilder instance, sets some of its properties, and then tries to determine whether various keys exist within the object by calling the ContainsKey method.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft