Merge pull request #966 from ermshiperete/bug-xamarin-18511
[mono.git] / mcs / class / System.Data / Documentation / en / System.Data.Common / DbConnectionStringBuilder.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DbConnectionStringBuilder" FullName="System.Data.Common.DbConnectionStringBuilder">
3   <TypeSignature Language="C#" Value="public class DbConnectionStringBuilder : System.Collections.IDictionary, System.ComponentModel.ICustomTypeDescriptor" />
4   <AssemblyInfo>
5     <AssemblyName>System.Data</AssemblyName>
6     <AssemblyVersion>2.0.0.0</AssemblyVersion>
7   </AssemblyInfo>
8   <Base>
9     <BaseTypeName>System.Object</BaseTypeName>
10   </Base>
11   <Interfaces>
12     <Interface>
13       <InterfaceName>System.Collections.IDictionary</InterfaceName>
14     </Interface>
15     <Interface>
16       <InterfaceName>System.ComponentModel.ICustomTypeDescriptor</InterfaceName>
17     </Interface>
18   </Interfaces>
19   <Docs>
20     <since version=".NET 2.0" />
21     <remarks>
22       <attribution license="cc4" from="Microsoft" modified="false" />
23       <para>The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class provides the base class from which the strongly typed connection string builders (<see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />, <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" />, and so on) derive. The connection string builders let developers programmatically create syntactically correct connection strings, and parse and rebuild existing connection strings. </para>
24       <para>The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has been defined in a database-agnostic manner. Because of the addition of the <see cref="N:System.Data.Common" /> namespace, developers require a base class against which they can program in order to build connection strings that can work against an arbitrary database. Therefore, the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class lets users assign arbitrary key/value pairs and pass the resulting connection string to a strongly typed provider. All the data providers that are included as part of the .NET Framework provide a strongly typed class that inherits from <see cref="T:System.Data.Common.DbConnectionStringBuilder" />: <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />, <see cref="T:System.Data.OracleClient.OracleConnectionStringBuilder" />, <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" />, and <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" />.</para>
25       <para>The developer can build, assign, and edit connection strings for any arbitrary provider. For providers that support specific key/value pairs, the connection string builder provides strongly typed properties corresponding to the known pairs. In order to support providers that require the ability to support unknown values, developers can also supply arbitrary key/value pairs.</para>
26       <para>The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class implements the <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface. This means that the class works with Visual Studio designers at design time. When developers use the designer to build strongly typed DataSets and strongly typed connections within Visual Studio, the strongly typed connection string builder class will display the properties associated with its type and will also have converters that can map common values for known keys.</para>
27       <para>Developers needing to create connection strings as part of applications can use the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class or one of its strongly typed derivatives to build and modify connection strings. The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class also makes it easy to manage connection strings stored in an application configuration file.</para>
28       <para>Developers can create connection strings using either a strongly typed connection string builder class, or they can use the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class. The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> performs no checks for valid key/value pairs. Therefore, it is possible using this class to create invalid connection strings. The <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> supports only key/value pairs that are supported by SQL Server; trying to add invalid pairs will throw an exception.</para>
29       <para>Both the <see cref="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)" /> method and <see cref="P:System.Data.Common.DbConnectionStringBuilder.Item(System.String)" /> property handle tries to insert malicious entries. For example, the following code correctly escapes the nested key/value pair:</para>
30       <para>[Visual Basic]</para>
31       <code>Dim builder As New System.Data.Common.DbConnectionStringBuilder
32 builder("Data Source") = "(local)"
33 builder("integrated sSecurity") = True
34 builder("Initial Catalog") = "AdventureWorks;NewValue=Bad"</code>
35       <para>[C#]</para>
36       <code>System.Data.Common.DbConnectionStringBuilder builder = 
37     new System.Data.Common.DbConnectionStringBuilder();
38 builder["Data Source"] = "(local)";
39 builder["integrated Security"] = true;
40 builder["Initial Catalog"] = "AdventureWorks;NewValue=Bad";</code>
41       <para>The result is the following connection string that handles the invalid value in a safe manner:</para>
42       <code>data source=(local);integrated security=True;
43 initial catalog="AdventureWorks;NewValue=Bad"</code>
44     </remarks>
45     <summary>
46       <attribution license="cc4" from="Microsoft" modified="false" />
47       <para>Provides a base class for strongly typed connection string builders.</para>
48     </summary>
49   </Docs>
50   <Members>
51     <Member MemberName=".ctor">
52       <MemberSignature Language="C#" Value="public DbConnectionStringBuilder ();" />
53       <MemberType>Constructor</MemberType>
54       <Parameters />
55       <Docs>
56         <remarks>To be added.</remarks>
57         <since version=".NET 2.0" />
58         <summary>
59           <attribution license="cc4" from="Microsoft" modified="false" />
60           <para>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.</para>
61         </summary>
62       </Docs>
63       <AssemblyInfo>
64         <AssemblyVersion>2.0.0.0</AssemblyVersion>
65       </AssemblyInfo>
66     </Member>
67     <Member MemberName=".ctor">
68       <MemberSignature Language="C#" Value="public DbConnectionStringBuilder (bool useOdbcRules);" />
69       <MemberType>Constructor</MemberType>
70       <Parameters>
71         <Parameter Name="useOdbcRules" Type="System.Boolean" />
72       </Parameters>
73       <Docs>
74         <since version=".NET 2.0" />
75         <remarks>
76           <attribution license="cc4" from="Microsoft" modified="false" />
77           <para>If <paramref name="useOdbcRules" /> is true, this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> uses ODBC rules for quoting values (surrounding values with curly braces ({})). If <paramref name="useOdbcRules" /> is false, this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> uses quotation mark character ("") to delimit values.</para>
78         </remarks>
79         <summary>
80           <attribution license="cc4" from="Microsoft" modified="false" />
81           <para>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class, optionally using ODBC rules for quoting values.</para>
82         </summary>
83         <param name="useOdbcRules">
84           <attribution license="cc4" from="Microsoft" modified="false" />true to use {} to delimit fields; false to use quotation marks.</param>
85       </Docs>
86       <AssemblyInfo>
87         <AssemblyVersion>2.0.0.0</AssemblyVersion>
88       </AssemblyInfo>
89     </Member>
90     <Member MemberName="Add">
91       <MemberSignature Language="C#" Value="public void Add (string keyword, object value);" />
92       <MemberType>Method</MemberType>
93       <ReturnValue>
94         <ReturnType>System.Void</ReturnType>
95       </ReturnValue>
96       <Parameters>
97         <Parameter Name="keyword" Type="System.String" />
98         <Parameter Name="value" Type="System.Object" />
99       </Parameters>
100       <Docs>
101         <since version=".NET 2.0" />
102         <remarks>
103           <attribution license="cc4" from="Microsoft" modified="false" />
104           <para>The <see cref="P:System.Data.Common.DbConnectionStringBuilder.Item(System.String)" /> property can also be used to add new elements by setting the value of a key that does not exist in the dictionary. For example: myCollection["myNonexistentKey"] = myValue. </para>
105           <para>Calling the <see cref="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)" /> method by passing a null (Nothing in Visual Basic) key throws an <see cref="T:System.ArgumentNullException" />. However, calling the <see cref="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)" /> method by passing a null value removes the key/value pair. </para>
106         </remarks>
107         <summary>
108           <attribution license="cc4" from="Microsoft" modified="false" />
109           <para>Adds an entry with the specified key and value into the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
110         </summary>
111         <param name="keyword">
112           <attribution license="cc4" from="Microsoft" modified="false" />The key to add to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
113         <param name="value">
114           <attribution license="cc4" from="Microsoft" modified="false" />The value for the specified key.</param>
115       </Docs>
116       <AssemblyInfo>
117         <AssemblyVersion>2.0.0.0</AssemblyVersion>
118       </AssemblyInfo>
119     </Member>
120     <Member MemberName="AppendKeyValuePair">
121       <MemberSignature Language="C#" Value="public static void AppendKeyValuePair (System.Text.StringBuilder builder, string keyword, string value);" />
122       <MemberType>Method</MemberType>
123       <ReturnValue>
124         <ReturnType>System.Void</ReturnType>
125       </ReturnValue>
126       <Parameters>
127         <Parameter Name="builder" Type="System.Text.StringBuilder" />
128         <Parameter Name="keyword" Type="System.String" />
129         <Parameter Name="value" Type="System.String" />
130       </Parameters>
131       <Docs>
132         <since version=".NET 2.0" />
133         <remarks>
134           <attribution license="cc4" from="Microsoft" modified="false" />
135           <para>This method allows developers using a <see cref="T:System.Text.StringBuilder" /> to create a collection of key/value pairs to be able to take advantage of the features included in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class when you add key/value pairs, without having to incur the overhead of creating and maintaining a <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance. The AppendKeyValuePair method formats the key and value correctly and adds the new string to the supplied <see cref="T:System.Text.StringBuilder" />. </para>
136         </remarks>
137         <summary>
138           <attribution license="cc4" from="Microsoft" modified="false" />
139           <para>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</para>
140         </summary>
141         <param name="builder">
142           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
143         <param name="keyword">
144           <attribution license="cc4" from="Microsoft" modified="false" />The key to be added.</param>
145         <param name="value">
146           <attribution license="cc4" from="Microsoft" modified="false" />The value for the supplied key.</param>
147       </Docs>
148       <AssemblyInfo>
149         <AssemblyVersion>2.0.0.0</AssemblyVersion>
150       </AssemblyInfo>
151     </Member>
152     <Member MemberName="AppendKeyValuePair">
153       <MemberSignature Language="C#" Value="public static void AppendKeyValuePair (System.Text.StringBuilder builder, string keyword, string value, bool useOdbcRules);" />
154       <MemberType>Method</MemberType>
155       <ReturnValue>
156         <ReturnType>System.Void</ReturnType>
157       </ReturnValue>
158       <Parameters>
159         <Parameter Name="builder" Type="System.Text.StringBuilder" />
160         <Parameter Name="keyword" Type="System.String" />
161         <Parameter Name="value" Type="System.String" />
162         <Parameter Name="useOdbcRules" Type="System.Boolean" />
163       </Parameters>
164       <Docs>
165         <since version=".NET 2.0" />
166         <remarks>
167           <attribution license="cc4" from="Microsoft" modified="false" />
168           <para>This method allows developers using a <see cref="T:System.Text.StringBuilder" /> to create a collection of key/value pairs to be able to take advantage of the features included in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class when adding key/value pairs, without having to incur the overhead of creating and maintaining a <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance. The AppendKeyValuePair method formats the key and value correctly and adds the new string to the supplied <see cref="T:System.Text.StringBuilder" />.</para>
169           <para>Although most data sources let you delimit fields by using quotation marks, ODBC does not--for ODBC connection strings, you must use curly braces ({}). In order to have the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> use ODBC rules for delimiting fields, set the <paramref name="useOdbcRules" /> parameter to true. </para>
170         </remarks>
171         <summary>
172           <attribution license="cc4" from="Microsoft" modified="false" />
173           <para>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</para>
174         </summary>
175         <param name="builder">
176           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
177         <param name="keyword">
178           <attribution license="cc4" from="Microsoft" modified="false" />The key to be added.</param>
179         <param name="value">
180           <attribution license="cc4" from="Microsoft" modified="false" />The value for the supplied key.</param>
181         <param name="useOdbcRules">
182           <attribution license="cc4" from="Microsoft" modified="false" />true to use {} to delimit fields, false to use quotation marks.</param>
183       </Docs>
184       <AssemblyInfo>
185         <AssemblyVersion>2.0.0.0</AssemblyVersion>
186       </AssemblyInfo>
187     </Member>
188     <Member MemberName="BrowsableConnectionString">
189       <MemberSignature Language="C#" Value="public bool BrowsableConnectionString { set; get; }" />
190       <MemberType>Property</MemberType>
191       <Attributes>
192         <Attribute>
193           <AttributeName>System.ComponentModel.DesignOnly(true)</AttributeName>
194         </Attribute>
195         <Attribute>
196           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
197         </Attribute>
198         <Attribute>
199           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
200         </Attribute>
201         <Attribute>
202           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
203         </Attribute>
204       </Attributes>
205       <ReturnValue>
206         <ReturnType>System.Boolean</ReturnType>
207       </ReturnValue>
208       <Docs>
209         <value>To be added.</value>
210         <since version=".NET 2.0" />
211         <remarks>
212           <attribution license="cc4" from="Microsoft" modified="false" />
213           <para>Developers creating designers that take advantage of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class must be able to make the connection string visible or invisible within the designer's property grid. The <see cref="P:System.Data.Common.DbConnectionStringBuilder.BrowsableConnectionString" /> property lets developers indicate that the property should be invisible by setting the property to false. </para>
214         </remarks>
215         <summary>
216           <attribution license="cc4" from="Microsoft" modified="false" />
217           <para>Gets or sets a value that indicates whether the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property is visible in Visual Studio designers.</para>
218         </summary>
219       </Docs>
220       <AssemblyInfo>
221         <AssemblyVersion>2.0.0.0</AssemblyVersion>
222       </AssemblyInfo>
223     </Member>
224     <Member MemberName="Clear">
225       <MemberSignature Language="C#" Value="public virtual void Clear ();" />
226       <MemberType>Method</MemberType>
227       <ReturnValue>
228         <ReturnType>System.Void</ReturnType>
229       </ReturnValue>
230       <Parameters />
231       <Docs>
232         <since version=".NET 2.0" />
233         <remarks>
234           <attribution license="cc4" from="Microsoft" modified="false" />
235           <para>The <see cref="M:System.Data.Common.DbConnectionStringBuilder.Clear" /> method removes all key/value pairs from the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> and resets all corresponding properties. This includes setting the <see cref="P:System.Data.Common.DbConnectionStringBuilder.Count" /> property to 0 and the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property to an empty string.</para>
236         </remarks>
237         <summary>
238           <attribution license="cc4" from="Microsoft" modified="false" />
239           <para>Clears the contents of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</para>
240         </summary>
241       </Docs>
242       <AssemblyInfo>
243         <AssemblyVersion>2.0.0.0</AssemblyVersion>
244       </AssemblyInfo>
245     </Member>
246     <Member MemberName="ClearPropertyDescriptors">
247       <MemberSignature Language="C#" Value="protected void ClearPropertyDescriptors ();" />
248       <MemberType>Method</MemberType>
249       <AssemblyInfo>
250         <AssemblyVersion>2.0.0.0</AssemblyVersion>
251       </AssemblyInfo>
252       <ReturnValue>
253         <ReturnType>System.Void</ReturnType>
254       </ReturnValue>
255       <Parameters />
256       <Docs>
257         <remarks>
258           <attribution license="cc4" from="Microsoft" modified="false" />
259           <para>This method is used by designers to clear all associated property descriptors on the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
260         </remarks>
261         <summary>
262           <attribution license="cc4" from="Microsoft" modified="false" />
263           <para>Clears the collection of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects on the associated <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
264         </summary>
265       </Docs>
266     </Member>
267     <Member MemberName="ConnectionString">
268       <MemberSignature Language="C#" Value="public string ConnectionString { set; get; }" />
269       <MemberType>Property</MemberType>
270       <Attributes>
271         <Attribute>
272           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
273         </Attribute>
274       </Attributes>
275       <ReturnValue>
276         <ReturnType>System.String</ReturnType>
277       </ReturnValue>
278       <Docs>
279         <value>To be added.</value>
280         <since version=".NET 2.0" />
281         <remarks>
282           <attribution license="cc4" from="Microsoft" modified="false" />
283           <para>This property returns a semicolon-delimited list of key/value pairs stored within the collection maintained by the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />. Each pair contains the key and value, separated by an equal sign. The following example illustrates a typical connection string.</para>
284           <code>"Persist Security Info=False;Integrated Security=SSPI;Initial Catalog=AdventureWorks;Data Source=(local)"</code>
285           <para>Data providers may expect specific keys and values for each connection string property. , These values are documented individually. The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class does not validate the key/value pairs associated with its connection string, although classes that inherit from it can.</para>
286           <para>The <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class acts generally as a mechanism for creating and parsing semicolon-delimited lists of key/value pairs separated with equal signs. It provides no validation or other support specific to connection strings. If you add items to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> collection, the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property will reflect the changes. If you assign a value to the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property, the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> will try to parse the value, using the semicolon and equal-sign delimiters.</para>
287         </remarks>
288         <summary>
289           <attribution license="cc4" from="Microsoft" modified="false" />
290           <para>Gets or sets the connection string associated with the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
291         </summary>
292       </Docs>
293       <AssemblyInfo>
294         <AssemblyVersion>2.0.0.0</AssemblyVersion>
295       </AssemblyInfo>
296     </Member>
297     <Member MemberName="ContainsKey">
298       <MemberSignature Language="C#" Value="public virtual bool ContainsKey (string keyword);" />
299       <MemberType>Method</MemberType>
300       <ReturnValue>
301         <ReturnType>System.Boolean</ReturnType>
302       </ReturnValue>
303       <Parameters>
304         <Parameter Name="keyword" Type="System.String" />
305       </Parameters>
306       <Docs>
307         <returns>To be added.</returns>
308         <remarks>To be added.</remarks>
309         <since version=".NET 2.0" />
310         <summary>
311           <attribution license="cc4" from="Microsoft" modified="false" />
312           <para>Determines whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains a specific key.</para>
313         </summary>
314         <param name="keyword">
315           <attribution license="cc4" from="Microsoft" modified="false" />The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
316       </Docs>
317       <AssemblyInfo>
318         <AssemblyVersion>2.0.0.0</AssemblyVersion>
319       </AssemblyInfo>
320     </Member>
321     <Member MemberName="Count">
322       <MemberSignature Language="C#" Value="public virtual int Count { get; }" />
323       <MemberType>Property</MemberType>
324       <Attributes>
325         <Attribute>
326           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
327         </Attribute>
328       </Attributes>
329       <ReturnValue>
330         <ReturnType>System.Int32</ReturnType>
331       </ReturnValue>
332       <Docs>
333         <value>To be added.</value>
334         <remarks>To be added.</remarks>
335         <since version=".NET 2.0" />
336         <summary>
337           <attribution license="cc4" from="Microsoft" modified="false" />
338           <para>Gets the current number of keys that are contained within the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property.</para>
339         </summary>
340       </Docs>
341       <AssemblyInfo>
342         <AssemblyVersion>2.0.0.0</AssemblyVersion>
343       </AssemblyInfo>
344     </Member>
345     <Member MemberName="EquivalentTo">
346       <MemberSignature Language="C#" Value="public virtual bool EquivalentTo (System.Data.Common.DbConnectionStringBuilder connectionStringBuilder);" />
347       <MemberType>Method</MemberType>
348       <ReturnValue>
349         <ReturnType>System.Boolean</ReturnType>
350       </ReturnValue>
351       <Parameters>
352         <Parameter Name="connectionStringBuilder" Type="System.Data.Common.DbConnectionStringBuilder" />
353       </Parameters>
354       <Docs>
355         <returns>To be added.</returns>
356         <since version=".NET 2.0" />
357         <remarks>
358           <attribution license="cc4" from="Microsoft" modified="false" />
359           <para>Comparisons on key names are case insensitive; value comparisons are case sensitive.</para>
360           <para>The <see cref="M:System.Data.Common.DbConnectionStringBuilder.EquivalentTo(System.Data.Common.DbConnectionStringBuilder)" /> method returns true if the key/value pairs are equal, regardless of their order. The connection behavior of the two connection strings are equivalent, because order is never significant within connection strings. However, different order may affect connection pooling behavior of connections based on these connection strings.</para>
361         </remarks>
362         <summary>
363           <attribution license="cc4" from="Microsoft" modified="false" />
364           <para>Compares the connection information in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object with the connection information in the supplied object.</para>
365         </summary>
366         <param name="connectionStringBuilder">
367           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> to be compared with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object.</param>
368       </Docs>
369       <AssemblyInfo>
370         <AssemblyVersion>2.0.0.0</AssemblyVersion>
371       </AssemblyInfo>
372     </Member>
373     <Member MemberName="GetProperties">
374       <MemberSignature Language="C#" Value="protected virtual void GetProperties (System.Collections.Hashtable propertyDescriptors);" />
375       <MemberType>Method</MemberType>
376       <ReturnValue>
377         <ReturnType>System.Void</ReturnType>
378       </ReturnValue>
379       <Parameters>
380         <Parameter Name="propertyDescriptors" Type="System.Collections.Hashtable" />
381       </Parameters>
382       <Docs>
383         <remarks>To be added.</remarks>
384         <since version=".NET 2.0" />
385         <summary>
386           <attribution license="cc4" from="Microsoft" modified="false" />
387           <para>Fills a supplied <see cref="T:System.Collections.Hashtable" /> with information about all the properties of this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
388         </summary>
389         <param name="propertyDescriptors">
390           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Collections.Hashtable" /> to be filled with information about this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
391       </Docs>
392       <AssemblyInfo>
393         <AssemblyVersion>2.0.0.0</AssemblyVersion>
394       </AssemblyInfo>
395     </Member>
396     <Member MemberName="IsFixedSize">
397       <MemberSignature Language="C#" Value="public virtual bool IsFixedSize { get; }" />
398       <MemberType>Property</MemberType>
399       <Attributes>
400         <Attribute>
401           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
402         </Attribute>
403       </Attributes>
404       <ReturnValue>
405         <ReturnType>System.Boolean</ReturnType>
406       </ReturnValue>
407       <Docs>
408         <value>To be added.</value>
409         <since version=".NET 2.0" />
410         <remarks>
411           <attribution license="cc4" from="Microsoft" modified="false" />
412           <para>A fixed-size collection does not allow adding or removing elements after the collection is created, but it does allow modifying existing elements.</para>
413           <para>A fixed-size collection is just a collection with a wrapper that prevents adding and removing elements; therefore, if changes are made to the underlying collection, including adding or removing elements, the fixed-size collection reflects those changes.</para>
414         </remarks>
415         <summary>
416           <attribution license="cc4" from="Microsoft" modified="false" />
417           <para>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</para>
418         </summary>
419       </Docs>
420       <AssemblyInfo>
421         <AssemblyVersion>2.0.0.0</AssemblyVersion>
422       </AssemblyInfo>
423     </Member>
424     <Member MemberName="IsReadOnly">
425       <MemberSignature Language="C#" Value="public bool IsReadOnly { get; }" />
426       <MemberType>Property</MemberType>
427       <Attributes>
428         <Attribute>
429           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
430         </Attribute>
431       </Attributes>
432       <ReturnValue>
433         <ReturnType>System.Boolean</ReturnType>
434       </ReturnValue>
435       <Docs>
436         <value>To be added.</value>
437         <since version=".NET 2.0" />
438         <remarks>
439           <attribution license="cc4" from="Microsoft" modified="false" />
440           <para>A read-only collection does not allow adding, removing, or modifying elements after the collection is created.</para>
441           <para>A read-only collection is just a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.</para>
442         </remarks>
443         <summary>
444           <attribution license="cc4" from="Microsoft" modified="false" />
445           <para>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.</para>
446         </summary>
447       </Docs>
448       <AssemblyInfo>
449         <AssemblyVersion>2.0.0.0</AssemblyVersion>
450       </AssemblyInfo>
451     </Member>
452     <Member MemberName="Item">
453       <MemberSignature Language="C#" Value="public virtual object this[string keyword] { set; get; }" />
454       <MemberType>Property</MemberType>
455       <Attributes>
456         <Attribute>
457           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
458         </Attribute>
459       </Attributes>
460       <ReturnValue>
461         <ReturnType>System.Object</ReturnType>
462       </ReturnValue>
463       <Parameters>
464         <Parameter Name="keyword" Type="System.String" />
465       </Parameters>
466       <Docs>
467         <param name="keyword">To be added.</param>
468         <summary>To be added.</summary>
469         <value>To be added.</value>
470         <remarks>To be added.</remarks>
471         <since version=".NET 2.0" />
472       </Docs>
473       <AssemblyInfo>
474         <AssemblyVersion>2.0.0.0</AssemblyVersion>
475       </AssemblyInfo>
476     </Member>
477     <Member MemberName="Keys">
478       <MemberSignature Language="C#" Value="public virtual System.Collections.ICollection Keys { get; }" />
479       <MemberType>Property</MemberType>
480       <Attributes>
481         <Attribute>
482           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
483         </Attribute>
484       </Attributes>
485       <ReturnValue>
486         <ReturnType>System.Collections.ICollection</ReturnType>
487       </ReturnValue>
488       <Docs>
489         <value>To be added.</value>
490         <since version=".NET 2.0" />
491         <remarks>
492           <attribution license="cc4" from="Microsoft" modified="false" />
493           <para>The order of the values in the <see cref="T:System.Collections.ICollection" /> is unspecified, but it is the same order as the associated values in the <see cref="T:System.Collections.ICollection" /> returned by the <see cref="P:System.Data.Common.DbConnectionStringBuilder.Values" /> property.</para>
494           <para>The returned <see cref="T:System.Collections.ICollection" /> is not a static copy; instead, the <see cref="T:System.Collections.ICollection" /> refers back to the keys in the original <see cref="T:System.Data.Common.DbConnectionStringBuilder" />. Therefore, changes to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> are reflected in the <see cref="T:System.Collections.ICollection" />.</para>
495         </remarks>
496         <summary>
497           <attribution license="cc4" from="Microsoft" modified="false" />
498           <para>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
499         </summary>
500       </Docs>
501       <AssemblyInfo>
502         <AssemblyVersion>2.0.0.0</AssemblyVersion>
503       </AssemblyInfo>
504     </Member>
505     <Member MemberName="Remove">
506       <MemberSignature Language="C#" Value="public virtual bool Remove (string keyword);" />
507       <MemberType>Method</MemberType>
508       <ReturnValue>
509         <ReturnType>System.Boolean</ReturnType>
510       </ReturnValue>
511       <Parameters>
512         <Parameter Name="keyword" Type="System.String" />
513       </Parameters>
514       <Docs>
515         <returns>To be added.</returns>
516         <since version=".NET 2.0" />
517         <remarks>
518           <attribution license="cc4" from="Microsoft" modified="false" />
519           <para>Because the <see cref="M:System.Data.Common.DbConnectionStringBuilder.Remove(System.String)" /> method returns a value that indicates its success, it is not required to look for the key before trying to remove the key/value pair from the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</para>
520         </remarks>
521         <summary>
522           <attribution license="cc4" from="Microsoft" modified="false" />
523           <para>Removes the entry with the specified key from the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</para>
524         </summary>
525         <param name="keyword">
526           <attribution license="cc4" from="Microsoft" modified="false" />The key of the key/value pair to be removed from the connection string in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
527       </Docs>
528       <AssemblyInfo>
529         <AssemblyVersion>2.0.0.0</AssemblyVersion>
530       </AssemblyInfo>
531     </Member>
532     <Member MemberName="ShouldSerialize">
533       <MemberSignature Language="C#" Value="public virtual bool ShouldSerialize (string keyword);" />
534       <MemberType>Method</MemberType>
535       <ReturnValue>
536         <ReturnType>System.Boolean</ReturnType>
537       </ReturnValue>
538       <Parameters>
539         <Parameter Name="keyword" Type="System.String" />
540       </Parameters>
541       <Docs>
542         <returns>To be added.</returns>
543         <since version=".NET 2.0" />
544         <remarks>
545           <attribution license="cc4" from="Microsoft" modified="false" />
546           <para>This method behaves identically to the <see cref="M:System.Data.Common.DbConnectionStringBuilder.ContainsKey(System.String)" /> method.</para>
547         </remarks>
548         <summary>
549           <attribution license="cc4" from="Microsoft" modified="false" />
550           <para>Indicates whether the specified key exists in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</para>
551         </summary>
552         <param name="keyword">
553           <attribution license="cc4" from="Microsoft" modified="false" />The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
554       </Docs>
555       <AssemblyInfo>
556         <AssemblyVersion>2.0.0.0</AssemblyVersion>
557       </AssemblyInfo>
558     </Member>
559     <Member MemberName="System.Collections.ICollection.CopyTo">
560       <MemberSignature Language="C#" Value="void ICollection.CopyTo (Array array, int index);" />
561       <MemberType>Method</MemberType>
562       <AssemblyInfo>
563         <AssemblyVersion>2.0.0.0</AssemblyVersion>
564       </AssemblyInfo>
565       <ReturnValue>
566         <ReturnType>System.Void</ReturnType>
567       </ReturnValue>
568       <Parameters>
569         <Parameter Name="array" Type="System.Array" />
570         <Parameter Name="index" Type="System.Int32" />
571       </Parameters>
572       <Docs>
573         <remarks>
574           <attribution license="cc4" from="Microsoft" modified="false" />
575           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.ICollection" /> interface.</para>
576           <para>For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</para>
577         </remarks>
578         <summary>
579           <attribution license="cc4" from="Microsoft" modified="false" />
580           <para>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</para>
581         </summary>
582         <param name="array">
583           <attribution license="cc4" from="Microsoft" modified="false" />The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
584         <param name="index">
585           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index in <paramref name="array" /> at which copying begins.</param>
586       </Docs>
587     </Member>
588     <Member MemberName="System.Collections.ICollection.IsSynchronized">
589       <MemberSignature Language="C#" Value="bool System.Collections.ICollection.IsSynchronized { get; }" />
590       <MemberType>Property</MemberType>
591       <AssemblyInfo>
592         <AssemblyVersion>2.0.0.0</AssemblyVersion>
593       </AssemblyInfo>
594       <ReturnValue>
595         <ReturnType>System.Boolean</ReturnType>
596       </ReturnValue>
597       <Docs>
598         <value>To be added.</value>
599         <remarks>
600           <attribution license="cc4" from="Microsoft" modified="false" />
601           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.ICollection" /> interface.</para>
602           <para>For more information, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</para>
603         </remarks>
604         <summary>
605           <attribution license="cc4" from="Microsoft" modified="false" />
606           <para>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</para>
607         </summary>
608       </Docs>
609     </Member>
610     <Member MemberName="System.Collections.ICollection.SyncRoot">
611       <MemberSignature Language="C#" Value="object System.Collections.ICollection.SyncRoot { get; }" />
612       <MemberType>Property</MemberType>
613       <AssemblyInfo>
614         <AssemblyVersion>2.0.0.0</AssemblyVersion>
615       </AssemblyInfo>
616       <ReturnValue>
617         <ReturnType>System.Object</ReturnType>
618       </ReturnValue>
619       <Docs>
620         <value>To be added.</value>
621         <remarks>
622           <attribution license="cc4" from="Microsoft" modified="false" />
623           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.ICollection" /> interface.</para>
624           <para>For more information, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</para>
625         </remarks>
626         <summary>
627           <attribution license="cc4" from="Microsoft" modified="false" />
628           <para>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</para>
629         </summary>
630       </Docs>
631     </Member>
632     <Member MemberName="System.Collections.IDictionary.Add">
633       <MemberSignature Language="C#" Value="void IDictionary.Add (object keyword, object value);" />
634       <MemberType>Method</MemberType>
635       <AssemblyInfo>
636         <AssemblyVersion>2.0.0.0</AssemblyVersion>
637       </AssemblyInfo>
638       <ReturnValue>
639         <ReturnType>System.Void</ReturnType>
640       </ReturnValue>
641       <Parameters>
642         <Parameter Name="keyword" Type="System.Object" />
643         <Parameter Name="value" Type="System.Object" />
644       </Parameters>
645       <Docs>
646         <remarks>
647           <attribution license="cc4" from="Microsoft" modified="false" />
648           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.IDictionary" /> interface.</para>
649           <para>For a description of this member, see <see cref="M:System.Collections.IDictionary.Add(System.Object,System.Object)" />.</para>
650         </remarks>
651         <summary>
652           <attribution license="cc4" from="Microsoft" modified="false" />
653           <para>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" /> object.</para>
654         </summary>
655         <param name="keyword">
656           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Object" /> to use as the key of the element to add.</param>
657         <param name="value">
658           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Object" /> to use as the value of the element to add.</param>
659       </Docs>
660     </Member>
661     <Member MemberName="System.Collections.IDictionary.Contains">
662       <MemberSignature Language="C#" Value="bool IDictionary.Contains (object keyword);" />
663       <MemberType>Method</MemberType>
664       <AssemblyInfo>
665         <AssemblyVersion>2.0.0.0</AssemblyVersion>
666       </AssemblyInfo>
667       <ReturnValue>
668         <ReturnType>System.Boolean</ReturnType>
669       </ReturnValue>
670       <Parameters>
671         <Parameter Name="keyword" Type="System.Object" />
672       </Parameters>
673       <Docs>
674         <returns>To be added.</returns>
675         <remarks>
676           <attribution license="cc4" from="Microsoft" modified="false" />
677           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.IDictionary" /> interface.</para>
678           <para>For more information, see <see cref="M:System.Collections.IDictionary.Contains(System.Object)" />.</para>
679         </remarks>
680         <summary>
681           <attribution license="cc4" from="Microsoft" modified="false" />
682           <para>Determines whether the <see cref="T:System.Collections.IDictionary" /> object contains an element with the specified key.</para>
683         </summary>
684         <param name="keyword">
685           <attribution license="cc4" from="Microsoft" modified="false" />The key to locate in the <see cref="T:System.Collections.IDictionary" /> object.</param>
686       </Docs>
687     </Member>
688     <Member MemberName="System.Collections.IDictionary.GetEnumerator">
689       <MemberSignature Language="C#" Value="System.Collections.IDictionaryEnumerator IDictionary.GetEnumerator ();" />
690       <MemberType>Method</MemberType>
691       <AssemblyInfo>
692         <AssemblyVersion>2.0.0.0</AssemblyVersion>
693       </AssemblyInfo>
694       <ReturnValue>
695         <ReturnType>System.Collections.IDictionaryEnumerator</ReturnType>
696       </ReturnValue>
697       <Parameters />
698       <Docs>
699         <returns>To be added.</returns>
700         <remarks>
701           <attribution license="cc4" from="Microsoft" modified="false" />
702           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.IDictionary" /> interface.</para>
703           <para>For a description of this member, see <see cref="M:System.Collections.IDictionary.GetEnumerator" />.</para>
704         </remarks>
705         <summary>
706           <attribution license="cc4" from="Microsoft" modified="false" />
707           <para>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object.</para>
708         </summary>
709       </Docs>
710     </Member>
711     <Member MemberName="System.Collections.IDictionary.Item">
712       <MemberSignature Language="C#" Value="object System.Collections.IDictionary.Item[object keyword] { set; get; }" />
713       <MemberType>Property</MemberType>
714       <AssemblyInfo>
715         <AssemblyVersion>2.0.0.0</AssemblyVersion>
716       </AssemblyInfo>
717       <ReturnValue>
718         <ReturnType>System.Object</ReturnType>
719       </ReturnValue>
720       <Parameters>
721         <Parameter Name="keyword" Type="System.Object" />
722       </Parameters>
723       <Docs>
724         <param name="keyword">To be added.</param>
725         <summary>To be added.</summary>
726         <value>To be added.</value>
727         <remarks>To be added.</remarks>
728       </Docs>
729     </Member>
730     <Member MemberName="System.Collections.IDictionary.Remove">
731       <MemberSignature Language="C#" Value="void IDictionary.Remove (object keyword);" />
732       <MemberType>Method</MemberType>
733       <AssemblyInfo>
734         <AssemblyVersion>2.0.0.0</AssemblyVersion>
735       </AssemblyInfo>
736       <ReturnValue>
737         <ReturnType>System.Void</ReturnType>
738       </ReturnValue>
739       <Parameters>
740         <Parameter Name="keyword" Type="System.Object" />
741       </Parameters>
742       <Docs>
743         <remarks>
744           <attribution license="cc4" from="Microsoft" modified="false" />
745           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.IDictionary" /> interface.</para>
746           <para>For a description of this member, see <see cref="M:System.Collections.IDictionary.Remove(System.Object)" />.</para>
747         </remarks>
748         <summary>
749           <attribution license="cc4" from="Microsoft" modified="false" />
750           <para>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" /> object.</para>
751         </summary>
752         <param name="keyword">
753           <attribution license="cc4" from="Microsoft" modified="false" />The key of the element to remove.</param>
754       </Docs>
755     </Member>
756     <Member MemberName="System.Collections.IEnumerable.GetEnumerator">
757       <MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
758       <MemberType>Method</MemberType>
759       <AssemblyInfo>
760         <AssemblyVersion>2.0.0.0</AssemblyVersion>
761       </AssemblyInfo>
762       <ReturnValue>
763         <ReturnType>System.Collections.IEnumerator</ReturnType>
764       </ReturnValue>
765       <Parameters />
766       <Docs>
767         <returns>To be added.</returns>
768         <remarks>
769           <attribution license="cc4" from="Microsoft" modified="false" />
770           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.Collections.IEnumerable" /> interface.</para>
771           <para>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</para>
772         </remarks>
773         <summary>
774           <attribution license="cc4" from="Microsoft" modified="false" />
775           <para>Returns an enumerator that iterates through a collection.</para>
776         </summary>
777       </Docs>
778     </Member>
779     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetAttributes">
780       <MemberSignature Language="C#" Value="System.ComponentModel.AttributeCollection ICustomTypeDescriptor.GetAttributes ();" />
781       <MemberType>Method</MemberType>
782       <AssemblyInfo>
783         <AssemblyVersion>2.0.0.0</AssemblyVersion>
784       </AssemblyInfo>
785       <ReturnValue>
786         <ReturnType>System.ComponentModel.AttributeCollection</ReturnType>
787       </ReturnValue>
788       <Parameters />
789       <Docs>
790         <returns>To be added.</returns>
791         <remarks>
792           <attribution license="cc4" from="Microsoft" modified="false" />
793           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
794           <para>For a description of this member, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetAttributes" />.</para>
795         </remarks>
796         <summary>
797           <attribution license="cc4" from="Microsoft" modified="false" />
798           <para>Returns a collection of custom attributes for this instance of a component.</para>
799         </summary>
800       </Docs>
801     </Member>
802     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetClassName">
803       <MemberSignature Language="C#" Value="string ICustomTypeDescriptor.GetClassName ();" />
804       <MemberType>Method</MemberType>
805       <AssemblyInfo>
806         <AssemblyVersion>2.0.0.0</AssemblyVersion>
807       </AssemblyInfo>
808       <ReturnValue>
809         <ReturnType>System.String</ReturnType>
810       </ReturnValue>
811       <Parameters />
812       <Docs>
813         <returns>To be added.</returns>
814         <remarks>
815           <attribution license="cc4" from="Microsoft" modified="false" />
816           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
817           <para>For a description of this member, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetClassName" />.</para>
818         </remarks>
819         <summary>
820           <attribution license="cc4" from="Microsoft" modified="false" />
821           <para>Returns the class name of this instance of a component.</para>
822         </summary>
823       </Docs>
824     </Member>
825     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetComponentName">
826       <MemberSignature Language="C#" Value="string ICustomTypeDescriptor.GetComponentName ();" />
827       <MemberType>Method</MemberType>
828       <AssemblyInfo>
829         <AssemblyVersion>2.0.0.0</AssemblyVersion>
830       </AssemblyInfo>
831       <ReturnValue>
832         <ReturnType>System.String</ReturnType>
833       </ReturnValue>
834       <Parameters />
835       <Docs>
836         <returns>To be added.</returns>
837         <remarks>
838           <attribution license="cc4" from="Microsoft" modified="false" />
839           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
840           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetComponentName" />.</para>
841         </remarks>
842         <summary>
843           <attribution license="cc4" from="Microsoft" modified="false" />
844           <para>Returns the name of this instance of a component.</para>
845         </summary>
846       </Docs>
847     </Member>
848     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetConverter">
849       <MemberSignature Language="C#" Value="System.ComponentModel.TypeConverter ICustomTypeDescriptor.GetConverter ();" />
850       <MemberType>Method</MemberType>
851       <AssemblyInfo>
852         <AssemblyVersion>2.0.0.0</AssemblyVersion>
853       </AssemblyInfo>
854       <ReturnValue>
855         <ReturnType>System.ComponentModel.TypeConverter</ReturnType>
856       </ReturnValue>
857       <Parameters />
858       <Docs>
859         <returns>To be added.</returns>
860         <remarks>
861           <attribution license="cc4" from="Microsoft" modified="false" />
862           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
863           <para>For a description of this member, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetConverter" />.</para>
864         </remarks>
865         <summary>
866           <attribution license="cc4" from="Microsoft" modified="false" />
867           <para>Returns a type converter for this instance of a component.</para>
868         </summary>
869       </Docs>
870     </Member>
871     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent">
872       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptor ICustomTypeDescriptor.GetDefaultEvent ();" />
873       <MemberType>Method</MemberType>
874       <AssemblyInfo>
875         <AssemblyVersion>2.0.0.0</AssemblyVersion>
876       </AssemblyInfo>
877       <ReturnValue>
878         <ReturnType>System.ComponentModel.EventDescriptor</ReturnType>
879       </ReturnValue>
880       <Parameters />
881       <Docs>
882         <returns>To be added.</returns>
883         <remarks>
884           <attribution license="cc4" from="Microsoft" modified="false" />
885           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
886           <para>For a description of this member, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent" />.</para>
887         </remarks>
888         <summary>
889           <attribution license="cc4" from="Microsoft" modified="false" />
890           <para>Returns the default event for this instance of a component.</para>
891         </summary>
892       </Docs>
893     </Member>
894     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty">
895       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty ();" />
896       <MemberType>Method</MemberType>
897       <AssemblyInfo>
898         <AssemblyVersion>2.0.0.0</AssemblyVersion>
899       </AssemblyInfo>
900       <ReturnValue>
901         <ReturnType>System.ComponentModel.PropertyDescriptor</ReturnType>
902       </ReturnValue>
903       <Parameters />
904       <Docs>
905         <returns>To be added.</returns>
906         <remarks>
907           <attribution license="cc4" from="Microsoft" modified="false" />
908           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
909           <para>For a description of this member, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty" />.</para>
910         </remarks>
911         <summary>
912           <attribution license="cc4" from="Microsoft" modified="false" />
913           <para>Returns the default property for this instance of a component.</para>
914         </summary>
915       </Docs>
916     </Member>
917     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEditor">
918       <MemberSignature Language="C#" Value="object ICustomTypeDescriptor.GetEditor (Type editorBaseType);" />
919       <MemberType>Method</MemberType>
920       <AssemblyInfo>
921         <AssemblyVersion>2.0.0.0</AssemblyVersion>
922       </AssemblyInfo>
923       <ReturnValue>
924         <ReturnType>System.Object</ReturnType>
925       </ReturnValue>
926       <Parameters>
927         <Parameter Name="editorBaseType" Type="System.Type" />
928       </Parameters>
929       <Docs>
930         <returns>To be added.</returns>
931         <remarks>
932           <attribution license="cc4" from="Microsoft" modified="false" />
933           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
934           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type)" />.</para>
935         </remarks>
936         <summary>
937           <attribution license="cc4" from="Microsoft" modified="false" />
938           <para>Returns an editor of the specified type for this instance of a component.</para>
939         </summary>
940         <param name="editorBaseType">
941           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Type" /> that represents the editor for this object.</param>
942       </Docs>
943     </Member>
944     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEvents">
945       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptorCollection ICustomTypeDescriptor.GetEvents ();" />
946       <MemberType>Method</MemberType>
947       <AssemblyInfo>
948         <AssemblyVersion>2.0.0.0</AssemblyVersion>
949       </AssemblyInfo>
950       <ReturnValue>
951         <ReturnType>System.ComponentModel.EventDescriptorCollection</ReturnType>
952       </ReturnValue>
953       <Parameters />
954       <Docs>
955         <returns>To be added.</returns>
956         <remarks>
957           <attribution license="cc4" from="Microsoft" modified="false" />
958           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
959           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetEvents" />.</para>
960         </remarks>
961         <summary>
962           <attribution license="cc4" from="Microsoft" modified="false" />
963           <para>Returns the events for this instance of a component.</para>
964         </summary>
965       </Docs>
966     </Member>
967     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEvents">
968       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptorCollection ICustomTypeDescriptor.GetEvents (Attribute[] attributes);" />
969       <MemberType>Method</MemberType>
970       <AssemblyInfo>
971         <AssemblyVersion>2.0.0.0</AssemblyVersion>
972       </AssemblyInfo>
973       <ReturnValue>
974         <ReturnType>System.ComponentModel.EventDescriptorCollection</ReturnType>
975       </ReturnValue>
976       <Parameters>
977         <Parameter Name="attributes" Type="System.Attribute[]" />
978       </Parameters>
979       <Docs>
980         <returns>To be added.</returns>
981         <remarks>
982           <attribution license="cc4" from="Microsoft" modified="false" />
983           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
984           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[])" />.</para>
985         </remarks>
986         <summary>
987           <attribution license="cc4" from="Microsoft" modified="false" />
988           <para>Returns the events for this instance of a component using the specified attribute array as a filter.</para>
989         </summary>
990         <param name="attributes">
991           <attribution license="cc4" from="Microsoft" modified="false" />An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
992       </Docs>
993     </Member>
994     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetProperties">
995       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties ();" />
996       <MemberType>Method</MemberType>
997       <AssemblyInfo>
998         <AssemblyVersion>2.0.0.0</AssemblyVersion>
999       </AssemblyInfo>
1000       <ReturnValue>
1001         <ReturnType>System.ComponentModel.PropertyDescriptorCollection</ReturnType>
1002       </ReturnValue>
1003       <Parameters />
1004       <Docs>
1005         <returns>To be added.</returns>
1006         <remarks>
1007           <attribution license="cc4" from="Microsoft" modified="false" />
1008           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
1009           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetProperties" />.</para>
1010         </remarks>
1011         <summary>
1012           <attribution license="cc4" from="Microsoft" modified="false" />
1013           <para>Returns the properties for this instance of a component.</para>
1014         </summary>
1015       </Docs>
1016     </Member>
1017     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetProperties">
1018       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties (Attribute[] attributes);" />
1019       <MemberType>Method</MemberType>
1020       <AssemblyInfo>
1021         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1022       </AssemblyInfo>
1023       <ReturnValue>
1024         <ReturnType>System.ComponentModel.PropertyDescriptorCollection</ReturnType>
1025       </ReturnValue>
1026       <Parameters>
1027         <Parameter Name="attributes" Type="System.Attribute[]" />
1028       </Parameters>
1029       <Docs>
1030         <returns>To be added.</returns>
1031         <remarks>
1032           <attribution license="cc4" from="Microsoft" modified="false" />
1033           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
1034           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[])" />.</para>
1035         </remarks>
1036         <summary>
1037           <attribution license="cc4" from="Microsoft" modified="false" />
1038           <para>Returns the properties for this instance of a component using the attribute array as a filter.</para>
1039         </summary>
1040         <param name="attributes">
1041           <attribution license="cc4" from="Microsoft" modified="false" />An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
1042       </Docs>
1043     </Member>
1044     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner">
1045       <MemberSignature Language="C#" Value="object ICustomTypeDescriptor.GetPropertyOwner (System.ComponentModel.PropertyDescriptor pd);" />
1046       <MemberType>Method</MemberType>
1047       <AssemblyInfo>
1048         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1049       </AssemblyInfo>
1050       <ReturnValue>
1051         <ReturnType>System.Object</ReturnType>
1052       </ReturnValue>
1053       <Parameters>
1054         <Parameter Name="pd" Type="System.ComponentModel.PropertyDescriptor" />
1055       </Parameters>
1056       <Docs>
1057         <returns>To be added.</returns>
1058         <remarks>
1059           <attribution license="cc4" from="Microsoft" modified="false" />
1060           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance is cast to an <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface.</para>
1061           <para>For more information, see <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor)" />.</para>
1062         </remarks>
1063         <summary>
1064           <attribution license="cc4" from="Microsoft" modified="false" />
1065           <para>Returns an object that contains the property described by the specified property descriptor.</para>
1066         </summary>
1067         <param name="pd">
1068           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
1069       </Docs>
1070     </Member>
1071     <Member MemberName="ToString">
1072       <MemberSignature Language="C#" Value="public override string ToString ();" />
1073       <MemberType>Method</MemberType>
1074       <ReturnValue>
1075         <ReturnType>System.String</ReturnType>
1076       </ReturnValue>
1077       <Parameters />
1078       <Docs>
1079         <returns>To be added.</returns>
1080         <remarks>To be added.</remarks>
1081         <since version=".NET 2.0" />
1082         <summary>
1083           <attribution license="cc4" from="Microsoft" modified="false" />
1084           <para>Returns the connection string associated with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
1085         </summary>
1086       </Docs>
1087       <AssemblyInfo>
1088         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1089       </AssemblyInfo>
1090     </Member>
1091     <Member MemberName="TryGetValue">
1092       <MemberSignature Language="C#" Value="public virtual bool TryGetValue (string keyword, out object value);" />
1093       <MemberType>Method</MemberType>
1094       <ReturnValue>
1095         <ReturnType>System.Boolean</ReturnType>
1096       </ReturnValue>
1097       <Parameters>
1098         <Parameter Name="keyword" Type="System.String" />
1099         <Parameter Name="value" Type="System.Object&amp;" RefType="out" />
1100       </Parameters>
1101       <Docs>
1102         <param name="keyword">To be added.</param>
1103         <param name="value">To be added.</param>
1104         <summary>To be added.</summary>
1105         <returns>To be added.</returns>
1106         <remarks>To be added.</remarks>
1107         <since version=".NET 2.0" />
1108       </Docs>
1109       <AssemblyInfo>
1110         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1111       </AssemblyInfo>
1112     </Member>
1113     <Member MemberName="Values">
1114       <MemberSignature Language="C#" Value="public virtual System.Collections.ICollection Values { get; }" />
1115       <MemberType>Property</MemberType>
1116       <Attributes>
1117         <Attribute>
1118           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1119         </Attribute>
1120       </Attributes>
1121       <ReturnValue>
1122         <ReturnType>System.Collections.ICollection</ReturnType>
1123       </ReturnValue>
1124       <Docs>
1125         <value>To be added.</value>
1126         <since version=".NET 2.0" />
1127         <remarks>
1128           <attribution license="cc4" from="Microsoft" modified="false" />
1129           <para>The order of the values in the <see cref="T:System.Collections.ICollection" /> is unspecified, but it is the same order as the associated keys in the <see cref="T:System.Collections.ICollection" /> returned by the <see cref="P:System.Data.Common.DbConnectionStringBuilder.Keys" /> method.</para>
1130           <para>The returned <see cref="T:System.Collections.ICollection" /> is not a static copy; instead, the <see cref="T:System.Collections.ICollection" /> refers back to the values in the original <see cref="T:System.Data.Common.DbConnectionStringBuilder" />. Therefore, changes to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> are reflected in the <see cref="T:System.Collections.ICollection" />.</para>
1131         </remarks>
1132         <summary>
1133           <attribution license="cc4" from="Microsoft" modified="false" />
1134           <para>Gets an <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</para>
1135         </summary>
1136       </Docs>
1137       <AssemblyInfo>
1138         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1139       </AssemblyInfo>
1140     </Member>
1141   </Members>
1142 </Type>