DbConnectionStringBuilder::Keys Property
Gets an ICollection that contains the keys in the DbConnectionStringBuilder.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property ICollection^ Keys { virtual ICollection^ get(); }
Property Value
Type: System.Collections::ICollection^An ICollection that contains the keys in the DbConnectionStringBuilder.
Implements
IDictionary::KeysThe order of the values in the ICollection is unspecified, but it is the same order as the associated values in the ICollection returned by the Values property.
The returned ICollection is not a static copy; instead, the ICollection refers back to the keys in the original DbConnectionStringBuilder. Therefore, changes to the DbConnectionStringBuilder are reflected in the ICollection.
The following console application example creates a new DbConnectionStringBuilder, and adds some keys. The code loops through the ICollection returned by the Keys property displaying the key/value pairs, and then adds a new key. Because the Keys property returns a dynamic ICollection, the second loop displays all the key/value pairs, including the newest item.
Available since 10
.NET Framework
Available since 2.0