DbConnectionStringBuilder.Values Property
Gets an ICollection that contains the values in the DbConnectionStringBuilder.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.Collections.ICollectionAn ICollection that contains the values in the DbConnectionStringBuilder.
Implements
IDictionary.ValuesThe order of the values in the ICollection is unspecified, but it is the same order as the associated keys in the ICollection returned by the Keys method.
The returned ICollection is not a static copy; instead, the ICollection refers back to the values in the original DbConnectionStringBuilder. Therefore, changes to the DbConnectionStringBuilder are reflected in the ICollection.
Note: |
|---|
This example includes a password to demonstrate how DbConnectionStringBuilder 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. |
static void Main() { DbConnectionStringBuilder builder = new DbConnectionStringBuilder(); builder.ConnectionString = "Provider=MSDataShape.1;Persist Security Info=false;" + "Data Provider=MSDAORA;Data Source=orac;" + "user id=username;password=*******"; foreach (string value in builder.Values) Console.WriteLine(value); }
Displays the following output:
MSDataShape.1 false MSDAORA orac username *******
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: