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.

OdbcConnectionStringBuilder::Keys Property

 

Gets an ICollection that contains the keys in the OdbcConnectionStringBuilder.

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

public:
property ICollection^ Keys {
	virtual ICollection^ get() override;
}

Property Value

Type: System.Collections::ICollection^

An ICollection that contains the keys in the OdbcConnectionStringBuilder.

The order of the values in the ICollection is the same order as the associated values in the ICollection returned by the Values property.

The following console application example creates a new OdbcConnectionStringBuilder. The code loops through the ICollection returned by the Keys property displaying the key/value pairs.

System_CAPS_noteNote

This example includes a password to demonstrate how OdbcConnectionStringBuilder works with connection strings. In your applications, we recommend that you use Windows Authentication. If you must use a password, do not include a hard-coded password in your application.

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

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