Merge pull request #966 from ermshiperete/bug-xamarin-18511
[mono.git] / mcs / class / System.Data / Documentation / en / System.Data / DataTable.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DataTable" FullName="System.Data.DataTable">
3   <TypeSignature Language="C#" Maintainer="auto" Value="public class DataTable : System.ComponentModel.MarshalByValueComponent, System.ComponentModel.IListSource, System.ComponentModel.ISupportInitializeNotification, System.Runtime.Serialization.ISerializable, System.Xml.Serialization.IXmlSerializable" />
4   <AssemblyInfo>
5     <AssemblyName>System.Data</AssemblyName>
6     <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey>
7     <AssemblyVersion>1.0.3300.0</AssemblyVersion>
8     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
9     <AssemblyVersion>2.0.0.0</AssemblyVersion>
10   </AssemblyInfo>
11   <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement>
12   <Base>
13     <BaseTypeName>System.ComponentModel.MarshalByValueComponent</BaseTypeName>
14   </Base>
15   <Interfaces>
16     <Interface>
17       <InterfaceName>System.ComponentModel.IListSource</InterfaceName>
18     </Interface>
19     <Interface>
20       <InterfaceName>System.ComponentModel.ISupportInitializeNotification</InterfaceName>
21     </Interface>
22     <Interface>
23       <InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName>
24     </Interface>
25     <Interface>
26       <InterfaceName>System.Xml.Serialization.IXmlSerializable</InterfaceName>
27     </Interface>
28   </Interfaces>
29   <Attributes>
30     <Attribute>
31       <AttributeName>System.Xml.Serialization.XmlSchemaProvider("GetDataTableSchema")</AttributeName>
32     </Attribute>
33     <Attribute>
34       <AttributeName>System.ComponentModel.Editor("Microsoft.VSDesigner.Data.Design.DataTableEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
35     </Attribute>
36     <Attribute>
37       <AttributeName>System.ComponentModel.DesignTimeVisible(false)</AttributeName>
38     </Attribute>
39     <Attribute>
40       <AttributeName>System.ComponentModel.DefaultProperty("TableName")</AttributeName>
41     </Attribute>
42     <Attribute>
43       <AttributeName>System.ComponentModel.DefaultEvent("RowChanging")</AttributeName>
44     </Attribute>
45     <Attribute>
46       <AttributeName>System.ComponentModel.ToolboxItem(false)</AttributeName>
47     </Attribute>
48   </Attributes>
49   <Docs>
50     <remarks>
51       <attribution license="cc4" from="Microsoft" modified="false" />
52       <para>The <see cref="T:System.Data.DataTable" /> is a central object in the ADO.NET library. Other objects that use the <see cref="T:System.Data.DataTable" /> include the <see cref="T:System.Data.DataSet" /> and the <see cref="T:System.Data.DataView" />.</para>
53       <para>When accessing <see cref="T:System.Data.DataTable" /> objects, note that they are conditionally case sensitive. For example, if one <see cref="T:System.Data.DataTable" /> is named "mydatatable" and another is named "Mydatatable", a string used to search for one of the tables is regarded as case sensitive. However, if "mydatatable" exists and "Mydatatable" does not, the search string is regarded as case insensitive. A <see cref="T:System.Data.DataSet" /> can contain two <see cref="T:System.Data.DataTable" /> objects that have the same <see cref="P:System.Data.DataTable.TableName" /> property value but different <see cref="P:System.Data.DataTable.Namespace" /> property values. For more information about working with <see cref="T:System.Data.DataTable" /> objects, see <format type="text/html"><a href="eecf9d78-60e3-4fdc-8de0-e56c13a89414">Creating a DataTable</a></format>.</para>
54       <para>If you are creating a <see cref="T:System.Data.DataTable" /> programmatically, you must first define its schema by adding <see cref="T:System.Data.DataColumn" /> objects to the <see cref="T:System.Data.DataColumnCollection" /> (accessed through the <see cref="P:System.Data.DataTable.Columns" /> property). For more information about adding <see cref="T:System.Data.DataColumn" /> objects, see <format type="text/html"><a href="e85c4a0e-4f3f-458c-b58b-0ddbc06bf974">Adding Columns to a Table</a></format>.</para>
55       <para>To add rows to a <see cref="T:System.Data.DataTable" />, you must first use the <see cref="M:System.Data.DataTable.NewRow" /> method to return a new <see cref="T:System.Data.DataRow" /> object. The <see cref="M:System.Data.DataTable.NewRow" /> method returns a row with the schema of the <see cref="T:System.Data.DataTable" />, as it is defined by the table's <see cref="T:System.Data.DataColumnCollection" />. The maximum number of rows that a <see cref="T:System.Data.DataTable" /> can store is 16,777,216. For more information, see <format type="text/html"><a href="d6aa8474-7bde-48f7-949d-20dc38a1625b">Adding Data to a Table</a></format>.</para>
56       <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.Constraint" /> objects that can be used to ensure the integrity of the data. For more information, see <format type="text/html"><a href="27c9f2fd-f64d-4b4e-bbf6-1d24f47067cb">Adding Constraints to a Table</a></format>.</para>
57       <para>There are many <see cref="T:System.Data.DataTable" /> events that can be used to determine when changes are made to a table. These include <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="E:System.Data.DataTable.RowDeleting" />, and <see cref="E:System.Data.DataTable.RowDeleted" />. For more information about the events that can be used with a <see cref="T:System.Data.DataTable" />, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
58       <para>When an instance of <see cref="T:System.Data.DataTable" /> is created, some of the read/write properties are set to initial values. For a list of these values, see the <see cref="M:System.Data.DataTable.#ctor" /> constructor topic.</para>
59       <block subset="none" type="note">
60         <para>The <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> objects inherit from <see cref="T:System.ComponentModel.MarshalByValueComponent" />, and support the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface for .NET Framework remoting. These are the only ADO.NET objects that you can use for .NET Framework remoting.</para>
61       </block>
62     </remarks>
63     <summary>
64       <attribution license="cc4" from="Microsoft" modified="false" />
65       <para>Represents one table of in-memory data.</para>
66     </summary>
67   </Docs>
68   <Members>
69     <Member MemberName=".ctor">
70       <MemberSignature Language="C#" Value="public DataTable ();" />
71       <MemberType>Constructor</MemberType>
72       <ReturnValue />
73       <Parameters />
74       <Docs>
75         <remarks>
76           <attribution license="cc4" from="Microsoft" modified="false" />
77           <para>The constructor sets initial values for all properties of the <see cref="T:System.Data.DataTable" /> object. The following table shows the properties and their default values. When an instance of <see cref="T:System.Data.DataTable" /> is created, the following read/write properties are set to initial values.</para>
78           <list type="table">
79             <listheader>
80               <item>
81                 <term>
82                   <para>Property </para>
83                 </term>
84                 <description>
85                   <para>Default value </para>
86                 </description>
87               </item>
88             </listheader>
89             <item>
90               <term>
91                 <para>CaseSensitive </para>
92               </term>
93               <description>
94                 <para>Same as the parent <see cref="T:System.Data.DataSet" />, if it belongs to one. Otherwise, false. </para>
95               </description>
96             </item>
97             <item>
98               <term>
99                 <para>DisplayExpression </para>
100               </term>
101               <description>
102                 <para>Empty string ("") </para>
103               </description>
104             </item>
105             <item>
106               <term>
107                 <para>Locale </para>
108               </term>
109               <description>
110                 <para>Same as the parent <see cref="T:System.Data.DataSet" /> object's <see cref="T:System.Globalization.CultureInfo" /> (returned by the <see cref="P:System.Data.DataSet.Locale" /> property); if no parent exists, the default is the current system <see cref="T:System.Globalization.CultureInfo" />. </para>
111               </description>
112             </item>
113             <item>
114               <term>
115                 <para>MinimumCapacity </para>
116               </term>
117               <description>
118                 <para>50 rows.</para>
119               </description>
120             </item>
121           </list>
122           <para>You can change the value for any of these properties through a separate call to the property.</para>
123         </remarks>
124         <summary>
125           <attribution license="cc4" from="Microsoft" modified="false" />
126           <para>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with no arguments.</para>
127         </summary>
128       </Docs>
129       <AssemblyInfo>
130         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
131         <AssemblyVersion>2.0.0.0</AssemblyVersion>
132       </AssemblyInfo>
133     </Member>
134     <Member MemberName=".ctor">
135       <MemberSignature Language="C#" Value="public DataTable (string tableName);" />
136       <MemberType>Constructor</MemberType>
137       <ReturnValue />
138       <Parameters>
139         <Parameter Name="tableName" Type="System.String" />
140       </Parameters>
141       <Docs>
142         <remarks>To be added</remarks>
143         <summary>
144           <attribution license="cc4" from="Microsoft" modified="false" />
145           <para>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with the specified table name.</para>
146         </summary>
147         <param name="tableName">
148           <attribution license="cc4" from="Microsoft" modified="false" />The name to give the table. If <paramref name="tableName" /> is null or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />. </param>
149       </Docs>
150       <AssemblyInfo>
151         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
152         <AssemblyVersion>2.0.0.0</AssemblyVersion>
153       </AssemblyInfo>
154     </Member>
155     <Member MemberName=".ctor">
156       <MemberSignature Language="C#" Value="protected DataTable (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
157       <MemberType>Constructor</MemberType>
158       <ReturnValue />
159       <Parameters>
160         <Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
161         <Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
162       </Parameters>
163       <Docs>
164         <remarks>
165           <attribution license="cc4" from="Microsoft" modified="false" />
166           <para>This implementation of the <see cref="T:System.Data.DataTable" /> constructor is required for <see cref="T:System.Runtime.Serialization.ISerializable" />.</para>
167         </remarks>
168         <summary>
169           <attribution license="cc4" from="Microsoft" modified="false" />
170           <para>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</para>
171         </summary>
172         <param name="info">
173           <attribution license="cc4" from="Microsoft" modified="false" />The data needed to serialize or deserialize an object.</param>
174         <param name="context">
175           <attribution license="cc4" from="Microsoft" modified="false" />The source and destination of a given serialized stream. </param>
176       </Docs>
177       <AssemblyInfo>
178         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
179         <AssemblyVersion>2.0.0.0</AssemblyVersion>
180       </AssemblyInfo>
181     </Member>
182     <Member MemberName=".ctor">
183       <MemberSignature Language="C#" Value="public DataTable (string tableName, string tbNamespace);" />
184       <MemberType>Constructor</MemberType>
185       <AssemblyInfo>
186         <AssemblyVersion>2.0.0.0</AssemblyVersion>
187       </AssemblyInfo>
188       <Parameters>
189         <Parameter Name="tableName" Type="System.String" />
190         <Parameter Name="tbNamespace" Type="System.String" />
191       </Parameters>
192       <Docs>
193         <param name="tbNamespace">To be added.</param>
194         <remarks>To be added.</remarks>
195         <summary>
196           <attribution license="cc4" from="Microsoft" modified="false" />
197           <para>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class using the specified table name and namespace.</para>
198         </summary>
199         <param name="tableName">
200           <attribution license="cc4" from="Microsoft" modified="false" />The name to give the table. If <paramref name="tableName" /> is null or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />. </param>
201       </Docs>
202     </Member>
203     <Member MemberName="AcceptChanges">
204       <MemberSignature Language="C#" Value="public void AcceptChanges ();" />
205       <MemberType>Method</MemberType>
206       <ReturnValue>
207         <ReturnType>System.Void</ReturnType>
208       </ReturnValue>
209       <Parameters />
210       <Docs>
211         <remarks>
212           <attribution license="cc4" from="Microsoft" modified="false" />
213           <para>When <see cref="M:System.Data.DataTable.AcceptChanges" /> is called, any <see cref="T:System.Data.DataRow" /> object still in edit mode successfully ends its edits. The <see cref="T:System.Data.DataRowState" /> also changes: all Added and Modified rows become Unchanged, and Deleted rows are removed.</para>
214           <para>The <see cref="M:System.Data.DataTable.AcceptChanges" /> method is generally called on a <see cref="T:System.Data.DataTable" /> after you attempt to update the <see cref="T:System.Data.DataSet" /> using the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> method.</para>
215         </remarks>
216         <summary>
217           <attribution license="cc4" from="Microsoft" modified="false" />
218           <para>Commits all the changes made to this table since the last time <see cref="M:System.Data.DataTable.AcceptChanges" /> was called.</para>
219         </summary>
220       </Docs>
221       <AssemblyInfo>
222         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
223         <AssemblyVersion>2.0.0.0</AssemblyVersion>
224       </AssemblyInfo>
225     </Member>
226     <Member MemberName="BeginInit">
227       <MemberSignature Language="C#" Value="public virtual void BeginInit ();" />
228       <MemberType>Method</MemberType>
229       <ReturnValue>
230         <ReturnType>System.Void</ReturnType>
231       </ReturnValue>
232       <Parameters />
233       <Docs>
234         <remarks>
235           <attribution license="cc4" from="Microsoft" modified="false" />
236           <para>The Visual Studio .NET design environment uses this method to start the initialization of a component that is used on a form or used by another component. The <see cref="M:System.Data.DataTable.EndInit" /> method ends the initialization. Using the <see cref="M:System.Data.DataTable.BeginInit" /> and <see cref="M:System.Data.DataTable.EndInit" /> methods prevents the control from being used before it is fully initialized.</para>
237         </remarks>
238         <summary>
239           <attribution license="cc4" from="Microsoft" modified="false" />
240           <para>Begins the initialization of a <see cref="T:System.Data.DataTable" /> that is used on a form or used by another component. The initialization occurs at run time. </para>
241         </summary>
242       </Docs>
243       <AssemblyInfo>
244         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
245         <AssemblyVersion>2.0.0.0</AssemblyVersion>
246       </AssemblyInfo>
247     </Member>
248     <Member MemberName="BeginLoadData">
249       <MemberSignature Language="C#" Value="public void BeginLoadData ();" />
250       <MemberType>Method</MemberType>
251       <ReturnValue>
252         <ReturnType>System.Void</ReturnType>
253       </ReturnValue>
254       <Parameters />
255       <Docs>
256         <remarks>
257           <attribution license="cc4" from="Microsoft" modified="false" />
258           <para>Use <see cref="M:System.Data.DataTable.BeginLoadData" /> in conjunction with <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> and <see cref="M:System.Data.DataTable.EndLoadData" />.</para>
259         </remarks>
260         <summary>
261           <attribution license="cc4" from="Microsoft" modified="false" />
262           <para>Turns off notifications, index maintenance, and constraints while loading data.</para>
263         </summary>
264       </Docs>
265       <AssemblyInfo>
266         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
267         <AssemblyVersion>2.0.0.0</AssemblyVersion>
268       </AssemblyInfo>
269     </Member>
270     <Member MemberName="CaseSensitive">
271       <MemberSignature Language="C#" Value="public bool CaseSensitive { set; get; }" />
272       <MemberType>Property</MemberType>
273       <ReturnValue>
274         <ReturnType>System.Boolean</ReturnType>
275       </ReturnValue>
276       <Parameters>
277       </Parameters>
278       <Docs>
279         <value>To be added: an object of type 'bool'</value>
280         <remarks>
281           <attribution license="cc4" from="Microsoft" modified="false" />
282           <para>The <see cref="P:System.Data.DataTable.CaseSensitive" /> property affects string comparisons in sorting, searching, and filtering.</para>
283         </remarks>
284         <summary>
285           <attribution license="cc4" from="Microsoft" modified="false" />
286           <para>Indicates whether string comparisons within the table are case-sensitive.</para>
287         </summary>
288       </Docs>
289       <AssemblyInfo>
290         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
291         <AssemblyVersion>2.0.0.0</AssemblyVersion>
292       </AssemblyInfo>
293     </Member>
294     <Member MemberName="ChildRelations">
295       <MemberSignature Language="C#" Value="public System.Data.DataRelationCollection ChildRelations { get; }" />
296       <MemberType>Property</MemberType>
297       <ReturnValue>
298         <ReturnType>System.Data.DataRelationCollection</ReturnType>
299       </ReturnValue>
300       <Docs>
301         <value>To be added: an object of type 'DataRelationCollection'</value>
302         <remarks>
303           <attribution license="cc4" from="Microsoft" modified="false" />
304           <para>A <see cref="T:System.Data.DataRelation" /> defines the relationship between two tables. Typically, two tables are linked through a single field that contains the same data. For example, a table which contains address data may have a single field containing codes that represent countries/regions. A second table that contains country/region data will have a single field that contains the code that identifies the country/region, and it is this code which is inserted into the corresponding field in the first table. A <see cref="T:System.Data.DataRelation" />, then, contains at least four pieces of information: (1) the name of the first table, (2) the column name in the first table, (3) the name of the second table, and (4) the column name in the second table.</para>
305         </remarks>
306         <summary>
307           <attribution license="cc4" from="Microsoft" modified="false" />
308           <para>Gets the collection of child relations for this <see cref="T:System.Data.DataTable" />.</para>
309         </summary>
310       </Docs>
311       <AssemblyInfo>
312         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
314       </AssemblyInfo>
315       <Attributes>
316         <Attribute>
317           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
318         </Attribute>
319         <Attribute>
320           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
321         </Attribute>
322       </Attributes>
323     </Member>
324     <Member MemberName="Clear">
325       <MemberSignature Language="C#" Value="public void Clear ();" />
326       <MemberType>Method</MemberType>
327       <ReturnValue>
328         <ReturnType>System.Void</ReturnType>
329       </ReturnValue>
330       <Parameters />
331       <Docs>
332         <remarks>
333           <attribution license="cc4" from="Microsoft" modified="false" />
334           <para>All rows in all tables are removed. An exception is generated if the table has any enforced child relations that would cause child rows to be orphaned.</para>
335           <para>If the <see cref="T:System.Data.DataSet" /> is bound to an <see cref="T:System.Xml.XmlDataDocument" />, calling <see cref="M:System.Data.DataSet.Clear" /> or <see cref="M:System.Data.DataTable.Clear" /> raises the <see cref="T:System.NotSupportedException" />. To avoid this situation, traverse each table, removing each row one at a time. When you use <see cref="M:System.Data.DataTable.NewRow" /> to create new rows, the rows must be processed before you call <see cref="M:System.Data.DataTable.Clear" />.</para>
336         </remarks>
337         <summary>
338           <attribution license="cc4" from="Microsoft" modified="false" />
339           <para>Clears the <see cref="T:System.Data.DataTable" /> of all data.</para>
340         </summary>
341       </Docs>
342       <AssemblyInfo>
343         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
344         <AssemblyVersion>2.0.0.0</AssemblyVersion>
345       </AssemblyInfo>
346     </Member>
347     <Member MemberName="Clone">
348       <MemberSignature Language="C#" Value="public virtual System.Data.DataTable Clone ();" />
349       <MemberType>Method</MemberType>
350       <ReturnValue>
351         <ReturnType>System.Data.DataTable</ReturnType>
352       </ReturnValue>
353       <Parameters />
354       <Docs>
355         <returns>
356           <para>An empty copy of the DataTable. The new DataTable duplicates the Schema and constraints, but does not contain any of the Data from the old DataTable.
357 </para>
358           <block subset="none" type="note">
359             <para>The clone will consist of the same derived classes, if any, as the original DataTable.
360   </para>
361           </block>
362         </returns>
363         <remarks>
364           <attribution license="cc4" from="Microsoft" modified="false" />
365           <para>If these classes have been derived, the clone will also be of the same derived classes.</para>
366           <para>Clone creates a new <see cref="T:System.Data.DataTable" /> with the same structure as the original <see cref="T:System.Data.DataTable" />, but does not copy any data (the new <see cref="T:System.Data.DataTable" /> will not contain any DataRows). To copy both the structure and data into a new <see cref="T:System.Data.DataTable" />, use <see cref="M:System.Data.DataTable.Copy" />.</para>
367         </remarks>
368         <summary>
369           <attribution license="cc4" from="Microsoft" modified="false" />
370           <para>Clones the structure of the <see cref="T:System.Data.DataTable" />, including all <see cref="T:System.Data.DataTable" /> schemas and constraints.</para>
371         </summary>
372       </Docs>
373       <AssemblyInfo>
374         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
375         <AssemblyVersion>2.0.0.0</AssemblyVersion>
376       </AssemblyInfo>
377     </Member>
378     <Member MemberName="ColumnChanged">
379       <MemberSignature Language="C#" Value="public event System.Data.DataColumnChangeEventHandler ColumnChanged;" />
380       <MemberType>Event</MemberType>
381       <ReturnValue>
382         <ReturnType>System.Data.DataColumnChangeEventHandler</ReturnType>
383       </ReturnValue>
384       <Parameters />
385       <Docs>
386         <remarks>
387           <attribution license="cc4" from="Microsoft" modified="false" />
388           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
389         </remarks>
390         <summary>
391           <attribution license="cc4" from="Microsoft" modified="false" />
392           <para>Occurs after a value has been changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</para>
393         </summary>
394       </Docs>
395       <AssemblyInfo>
396         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
397         <AssemblyVersion>2.0.0.0</AssemblyVersion>
398       </AssemblyInfo>
399     </Member>
400     <Member MemberName="ColumnChanging">
401       <MemberSignature Language="C#" Value="public event System.Data.DataColumnChangeEventHandler ColumnChanging;" />
402       <MemberType>Event</MemberType>
403       <ReturnValue>
404         <ReturnType>System.Data.DataColumnChangeEventHandler</ReturnType>
405       </ReturnValue>
406       <Parameters />
407       <Docs>
408         <remarks>
409           <attribution license="cc4" from="Microsoft" modified="false" />
410           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
411         </remarks>
412         <summary>
413           <attribution license="cc4" from="Microsoft" modified="false" />
414           <para>Occurs when a value is being changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</para>
415         </summary>
416       </Docs>
417       <AssemblyInfo>
418         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
419         <AssemblyVersion>2.0.0.0</AssemblyVersion>
420       </AssemblyInfo>
421     </Member>
422     <Member MemberName="Columns">
423       <MemberSignature Language="C#" Value="public System.Data.DataColumnCollection Columns { get; }" />
424       <MemberType>Property</MemberType>
425       <ReturnValue>
426         <ReturnType>System.Data.DataColumnCollection</ReturnType>
427       </ReturnValue>
428       <Docs>
429         <value>To be added: an object of type 'DataColumnCollection'</value>
430         <remarks>
431           <attribution license="cc4" from="Microsoft" modified="false" />
432           <para>The <see cref="T:System.Data.DataColumnCollection" /> determines the schema of a table by defining the data type of each column.</para>
433         </remarks>
434         <summary>
435           <attribution license="cc4" from="Microsoft" modified="false" />
436           <para>Gets the collection of columns that belong to this table.</para>
437         </summary>
438       </Docs>
439       <AssemblyInfo>
440         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
441         <AssemblyVersion>2.0.0.0</AssemblyVersion>
442       </AssemblyInfo>
443       <Attributes>
444         <Attribute>
445           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
446         </Attribute>
447       </Attributes>
448     </Member>
449     <Member MemberName="Compute">
450       <MemberSignature Language="C#" Value="public object Compute (string expression, string filter);" />
451       <MemberType>Method</MemberType>
452       <ReturnValue>
453         <ReturnType>System.Object</ReturnType>
454       </ReturnValue>
455       <Parameters>
456         <Parameter Name="expression" Type="System.String" />
457         <Parameter Name="filter" Type="System.String" />
458       </Parameters>
459       <Docs>
460         <returns>To be added: an object of type 'object'</returns>
461         <remarks>
462           <attribution license="cc4" from="Microsoft" modified="false" />
463           <para>The <paramref name="expression" /> parameter requires an aggregate function. For example, the following is a legal expression:</para>
464           <para>Count(Quantity)</para>
465           <para>But this expression is not:</para>
466           <para>Sum (Quantity * UnitPrice)</para>
467           <para>If you must perform an operation on two or more columns, you should create a <see cref="T:System.Data.DataColumn" />, set its <see cref="P:System.Data.DataColumn.Expression" /> property to an appropriate expression, and use an aggregate expression on the resulting column. In that case, given a <see cref="T:System.Data.DataColumn" /> with the name "total", and the <see cref="P:System.Data.DataColumn.Expression" /> property set to this:</para>
468           <para>"Quantity * UnitPrice"</para>
469           <para>The expression argument for the <see cref="M:System.Data.DataTable.Compute(System.String,System.String)" /> method would then be this:</para>
470           <para>Sum(total)</para>
471           <para>The second parameter, <paramref name="filter" />, determines which rows are used in the expression. For example, if the table contains a date column named "colDate", you could limit the rows with the following expression:</para>
472           <para>colDate &gt; 1/1/99 AND colDate &lt; 17/1/99</para>
473           <para>For rules on creating expressions for both parameters, see the <see cref="P:System.Data.DataColumn.Expression" /> property.</para>
474         </remarks>
475         <summary>
476           <attribution license="cc4" from="Microsoft" modified="false" />
477           <para>Computes the given expression on the current rows that pass the filter criteria.</para>
478         </summary>
479         <param name="expression">
480           <attribution license="cc4" from="Microsoft" modified="false" />The expression to compute. </param>
481         <param name="filter">
482           <attribution license="cc4" from="Microsoft" modified="false" />The filter to limit the rows that evaluate in the expression. </param>
483       </Docs>
484       <AssemblyInfo>
485         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
486         <AssemblyVersion>2.0.0.0</AssemblyVersion>
487       </AssemblyInfo>
488     </Member>
489     <Member MemberName="Constraints">
490       <MemberSignature Language="C#" Value="public System.Data.ConstraintCollection Constraints { get; }" />
491       <MemberType>Property</MemberType>
492       <ReturnValue>
493         <ReturnType>System.Data.ConstraintCollection</ReturnType>
494       </ReturnValue>
495       <Docs>
496         <value>To be added: an object of type 'ConstraintCollection'</value>
497         <remarks>
498           <attribution license="cc4" from="Microsoft" modified="false" />
499           <para>A <see cref="T:System.Data.ForeignKeyConstraint" /> restricts the action performed when a value in a column (or columns) is either deleted or updated. Such a constraint is intended to be used with primary key columns. In a parent/child relationship between two tables, deleting a value from the parent table can affect the child rows in one of the following ways.</para>
500           <list type="bullet">
501             <item>
502               <para>The child rows can also be deleted (a cascading action).</para>
503             </item>
504             <item>
505               <para>The values in the child column (or columns) can be set to null values.</para>
506             </item>
507             <item>
508               <para>The values in the child column (or columns) can be set to default values.</para>
509             </item>
510             <item>
511               <para>An exception can be generated.</para>
512             </item>
513           </list>
514           <para>A <see cref="T:System.Data.UniqueConstraint" /> becomes active when attempting to set a value in a primary key to a non-unique value.</para>
515         </remarks>
516         <summary>
517           <attribution license="cc4" from="Microsoft" modified="false" />
518           <para>Gets the collection of constraints maintained by this table.</para>
519         </summary>
520       </Docs>
521       <AssemblyInfo>
522         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
523         <AssemblyVersion>2.0.0.0</AssemblyVersion>
524       </AssemblyInfo>
525       <Attributes>
526         <Attribute>
527           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
528         </Attribute>
529       </Attributes>
530     </Member>
531     <Member MemberName="Copy">
532       <MemberSignature Language="C#" Value="public System.Data.DataTable Copy ();" />
533       <MemberType>Method</MemberType>
534       <ReturnValue>
535         <ReturnType>System.Data.DataTable</ReturnType>
536       </ReturnValue>
537       <Parameters />
538       <Docs>
539         <returns>
540           <para>A duplicate of the original DataTable including the Schema, the constraints and the Data.
541 </para>
542           <block subset="none" type="note">
543             <para>The duplicate will be an exact copy of the original DataTable and will consist of the same derived classes, if any.
544   </para>
545           </block>
546         </returns>
547         <remarks>To be added</remarks>
548         <summary>
549           <attribution license="cc4" from="Microsoft" modified="false" />
550           <para>Copies both the structure and data for this <see cref="T:System.Data.DataTable" />.</para>
551         </summary>
552       </Docs>
553       <AssemblyInfo>
554         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
555         <AssemblyVersion>2.0.0.0</AssemblyVersion>
556       </AssemblyInfo>
557     </Member>
558     <Member MemberName="CreateDataReader">
559       <MemberSignature Language="C#" Value="public System.Data.DataTableReader CreateDataReader ();" />
560       <MemberType>Method</MemberType>
561       <AssemblyInfo>
562         <AssemblyVersion>2.0.0.0</AssemblyVersion>
563       </AssemblyInfo>
564       <ReturnValue>
565         <ReturnType>System.Data.DataTableReader</ReturnType>
566       </ReturnValue>
567       <Parameters />
568       <Docs>
569         <returns>To be added.</returns>
570         <remarks>To be added.</remarks>
571         <summary>
572           <attribution license="cc4" from="Microsoft" modified="false" />
573           <para>Returns a <see cref="T:System.Data.DataTableReader" /> corresponding to the data within this <see cref="T:System.Data.DataTable" />.</para>
574         </summary>
575       </Docs>
576     </Member>
577     <Member MemberName="CreateInstance">
578       <MemberSignature Language="C#" Value="protected virtual System.Data.DataTable CreateInstance ();" />
579       <MemberType>Method</MemberType>
580       <ReturnValue>
581         <ReturnType>System.Data.DataTable</ReturnType>
582       </ReturnValue>
583       <Parameters />
584       <Docs>
585         <returns>To be added: an object of type 'DataTable'</returns>
586         <remarks>To be added</remarks>
587         <summary>
588           <attribution license="cc4" from="Microsoft" modified="false" />
589           <para>Creates a new instance of <see cref="T:System.Data.DataTable" />.</para>
590         </summary>
591       </Docs>
592       <AssemblyInfo>
593         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
594         <AssemblyVersion>2.0.0.0</AssemblyVersion>
595       </AssemblyInfo>
596     </Member>
597     <Member MemberName="DataSet">
598       <MemberSignature Language="C#" Value="public System.Data.DataSet DataSet { get; }" />
599       <MemberType>Property</MemberType>
600       <ReturnValue>
601         <ReturnType>System.Data.DataSet</ReturnType>
602       </ReturnValue>
603       <Docs>
604         <value>To be added: an object of type 'DataSet'</value>
605         <remarks>
606           <attribution license="cc4" from="Microsoft" modified="false" />
607           <para>If a control is data bound to a <see cref="T:System.Data.DataTable" />, and the table belongs to a <see cref="T:System.Data.DataSet" />, you can get to the <see cref="T:System.Data.DataSet" /> through this property.</para>
608         </remarks>
609         <summary>
610           <attribution license="cc4" from="Microsoft" modified="false" />
611           <para>Gets the <see cref="T:System.Data.DataSet" /> to which this table belongs.</para>
612         </summary>
613       </Docs>
614       <AssemblyInfo>
615         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
616         <AssemblyVersion>2.0.0.0</AssemblyVersion>
617       </AssemblyInfo>
618       <Attributes>
619         <Attribute>
620           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
621         </Attribute>
622         <Attribute>
623           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
624         </Attribute>
625       </Attributes>
626     </Member>
627     <Member MemberName="DefaultView">
628       <MemberSignature Language="C#" Value="public System.Data.DataView DefaultView { get; }" />
629       <MemberType>Property</MemberType>
630       <ReturnValue>
631         <ReturnType>System.Data.DataView</ReturnType>
632       </ReturnValue>
633       <Docs>
634         <value>To be added: an object of type 'DataView'</value>
635         <remarks>
636           <attribution license="cc4" from="Microsoft" modified="false" />
637           <para>The <see cref="P:System.Data.DataTable.DefaultView" /> property returns a <see cref="T:System.Data.DataView" /> you can use to sort, filter, and search a <see cref="T:System.Data.DataTable" />.</para>
638         </remarks>
639         <summary>
640           <attribution license="cc4" from="Microsoft" modified="false" />
641           <para>Gets a customized view of the table that may include a filtered view, or a cursor position.</para>
642         </summary>
643       </Docs>
644       <AssemblyInfo>
645         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
646         <AssemblyVersion>2.0.0.0</AssemblyVersion>
647       </AssemblyInfo>
648       <Attributes>
649         <Attribute>
650           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
651         </Attribute>
652       </Attributes>
653     </Member>
654     <Member MemberName="DisplayExpression">
655       <MemberSignature Language="C#" Value="public string DisplayExpression { set; get; }" />
656       <MemberType>Property</MemberType>
657       <ReturnValue>
658         <ReturnType>System.String</ReturnType>
659       </ReturnValue>
660       <Parameters>
661       </Parameters>
662       <Docs>
663         <value>To be added: an object of type 'string'</value>
664         <remarks>To be added</remarks>
665         <summary>
666           <attribution license="cc4" from="Microsoft" modified="false" />
667           <para>Gets or sets the expression that returns a value used to represent this table in the user interface. The DisplayExpression property lets you display the name of this table in a user interface.</para>
668         </summary>
669       </Docs>
670       <AssemblyInfo>
671         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
672         <AssemblyVersion>2.0.0.0</AssemblyVersion>
673       </AssemblyInfo>
674       <Attributes>
675         <Attribute>
676           <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
677         </Attribute>
678       </Attributes>
679     </Member>
680     <Member MemberName="EndInit">
681       <MemberSignature Language="C#" Value="public virtual void EndInit ();" />
682       <MemberType>Method</MemberType>
683       <ReturnValue>
684         <ReturnType>System.Void</ReturnType>
685       </ReturnValue>
686       <Parameters />
687       <Docs>
688         <remarks>
689           <attribution license="cc4" from="Microsoft" modified="false" />
690           <para>The Visual Studio .NET design environment uses this method to end the initialization of a component that is used on a form or used by another component. The <see cref="M:System.Data.DataTable.BeginInit" /> method starts the initialization. Using the <see cref="M:System.Data.DataTable.BeginInit" /> and <see cref="M:System.Data.DataTable.EndInit" /> methods prevents the control from being used before it is fully initialized.</para>
691         </remarks>
692         <summary>
693           <attribution license="cc4" from="Microsoft" modified="false" />
694           <para>Ends the initialization of a <see cref="T:System.Data.DataTable" /> that is used on a form or used by another component. The initialization occurs at run time.</para>
695         </summary>
696       </Docs>
697       <AssemblyInfo>
698         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
699         <AssemblyVersion>2.0.0.0</AssemblyVersion>
700       </AssemblyInfo>
701     </Member>
702     <Member MemberName="EndLoadData">
703       <MemberSignature Language="C#" Value="public void EndLoadData ();" />
704       <MemberType>Method</MemberType>
705       <ReturnValue>
706         <ReturnType>System.Void</ReturnType>
707       </ReturnValue>
708       <Parameters />
709       <Docs>
710         <remarks>
711           <attribution license="cc4" from="Microsoft" modified="false" />
712           <para>Use <see cref="M:System.Data.DataTable.EndLoadData" /> in conjunction with <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> and <see cref="M:System.Data.DataTable.BeginLoadData" />.</para>
713         </remarks>
714         <summary>
715           <attribution license="cc4" from="Microsoft" modified="false" />
716           <para>Turns on notifications, index maintenance, and constraints after loading data.</para>
717         </summary>
718       </Docs>
719       <AssemblyInfo>
720         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
721         <AssemblyVersion>2.0.0.0</AssemblyVersion>
722       </AssemblyInfo>
723     </Member>
724     <Member MemberName="ExtendedProperties">
725       <MemberSignature Language="C#" Value="public System.Data.PropertyCollection ExtendedProperties { get; }" />
726       <MemberType>Property</MemberType>
727       <ReturnValue>
728         <ReturnType>System.Data.PropertyCollection</ReturnType>
729       </ReturnValue>
730       <Docs>
731         <value>To be added: an object of type 'PropertyCollection'</value>
732         <remarks>
733           <attribution license="cc4" from="Microsoft" modified="false" />
734           <para>Use the <see cref="P:System.Data.DataTable.ExtendedProperties" /> to add custom information to a <see cref="T:System.Data.DataTable" />. Add information with the Add method. Retrieve information with the Item method.</para>
735           <para>Extended properties must be of type <see cref="T:System.String" />. Properties that are not of type String are not persisted when the <see cref="T:System.Data.DataTable" /> is written as XML.</para>
736         </remarks>
737         <summary>
738           <attribution license="cc4" from="Microsoft" modified="false" />
739           <para>Gets the collection of customized user information.</para>
740         </summary>
741       </Docs>
742       <AssemblyInfo>
743         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
744         <AssemblyVersion>2.0.0.0</AssemblyVersion>
745       </AssemblyInfo>
746       <Attributes>
747         <Attribute>
748           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
749         </Attribute>
750       </Attributes>
751     </Member>
752     <Member MemberName="fInitInProgress">
753       <MemberSignature Language="C#" Value="protected bool fInitInProgress;" />
754       <MemberType>Field</MemberType>
755       <AssemblyInfo>
756         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
757         <AssemblyVersion>2.0.0.0</AssemblyVersion>
758       </AssemblyInfo>
759       <ReturnValue>
760         <ReturnType>System.Boolean</ReturnType>
761       </ReturnValue>
762       <Docs>
763         <remarks>To be added.</remarks>
764         <summary>
765           <attribution license="cc4" from="Microsoft" modified="false" />
766           <para>Checks whether initialization is in progress. The initialization occurs at run time.</para>
767         </summary>
768       </Docs>
769     </Member>
770     <Member MemberName="GetChanges">
771       <MemberSignature Language="C#" Value="public System.Data.DataTable GetChanges ();" />
772       <MemberType>Method</MemberType>
773       <ReturnValue>
774         <ReturnType>System.Data.DataTable</ReturnType>
775       </ReturnValue>
776       <Parameters />
777       <Docs>
778         <returns>To be added: an object of type 'DataTable'</returns>
779         <remarks>
780           <attribution license="cc4" from="Microsoft" modified="false" />
781           <para>Creates a new <see cref="T:System.Data.DataSet" /> containing a copy of all rows in the original <see cref="T:System.Data.DataSet" /> that have pending changes. Relationship constraints can cause additional unchanged rows to be added to the new <see cref="T:System.Data.DataSet" /> if the unchanged rows contain primary keys corresponding to foreign keys in the changed rows. The method returns null (Nothing in Visual Basic) if there are no rows in the original <see cref="T:System.Data.DataSet" /> with pending changes.</para>
782         </remarks>
783         <summary>
784           <attribution license="cc4" from="Microsoft" modified="false" />
785           <para>Gets a copy of the <see cref="T:System.Data.DataTable" /> that contains all changes made to it since it was loaded or <see cref="M:System.Data.DataTable.AcceptChanges" /> was last called.</para>
786         </summary>
787       </Docs>
788       <AssemblyInfo>
789         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
790         <AssemblyVersion>2.0.0.0</AssemblyVersion>
791       </AssemblyInfo>
792     </Member>
793     <Member MemberName="GetChanges">
794       <MemberSignature Language="C#" Value="public System.Data.DataTable GetChanges (System.Data.DataRowState rowStates);" />
795       <MemberType>Method</MemberType>
796       <ReturnValue>
797         <ReturnType>System.Data.DataTable</ReturnType>
798       </ReturnValue>
799       <Parameters>
800         <Parameter Name="rowStates" Type="System.Data.DataRowState" />
801       </Parameters>
802       <Docs>
803         <returns>To be added: an object of type 'DataTable'</returns>
804         <remarks>
805           <attribution license="cc4" from="Microsoft" modified="false" />
806           <para>The <see cref="M:System.Data.DataTable.GetChanges" /> method is used to produce a second <see cref="T:System.Data.DataTable" /> object that contains only the changes introduced into the original. Use the <paramref name="rowStates" /> argument to specify the type of changes the new object should include.</para>
807           <para>Relationship constraints may cause unchanged parent rows to be included.</para>
808         </remarks>
809         <summary>
810           <attribution license="cc4" from="Microsoft" modified="false" />
811           <para>Gets a copy of the <see cref="T:System.Data.DataTable" /> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataTable.AcceptChanges" /> was called, filtered by <see cref="T:System.Data.DataRowState" />.</para>
812         </summary>
813         <param name="rowStates">
814           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowState" /> values. </param>
815       </Docs>
816       <AssemblyInfo>
817         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
818         <AssemblyVersion>2.0.0.0</AssemblyVersion>
819       </AssemblyInfo>
820     </Member>
821     <Member MemberName="GetDataTableSchema">
822       <MemberSignature Language="C#" Value="public static System.Xml.Schema.XmlSchemaComplexType GetDataTableSchema (System.Xml.Schema.XmlSchemaSet schemaSet);" />
823       <MemberType>Method</MemberType>
824       <AssemblyInfo>
825         <AssemblyVersion>2.0.0.0</AssemblyVersion>
826       </AssemblyInfo>
827       <ReturnValue>
828         <ReturnType>System.Xml.Schema.XmlSchemaComplexType</ReturnType>
829       </ReturnValue>
830       <Parameters>
831         <Parameter Name="schemaSet" Type="System.Xml.Schema.XmlSchemaSet" />
832       </Parameters>
833       <Docs>
834         <returns>To be added.</returns>
835         <remarks>To be added.</remarks>
836         <summary>
837           <attribution license="cc4" from="Microsoft" modified="false" />
838           <para>This method returns an <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance containing the Web Services Description Language (WSDL) that describes the <see cref="T:System.Data.DataTable" /> for Web Services.</para>
839         </summary>
840         <param name="schemaSet">
841           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance.</param>
842       </Docs>
843     </Member>
844     <Member MemberName="GetErrors">
845       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetErrors ();" />
846       <MemberType>Method</MemberType>
847       <ReturnValue>
848         <ReturnType>System.Data.DataRow[]</ReturnType>
849       </ReturnValue>
850       <Parameters />
851       <Docs>
852         <returns>To be added: an object of type 'DataRow []'</returns>
853         <remarks>
854           <attribution license="cc4" from="Microsoft" modified="false" />
855           <para>Returns the list of <see cref="T:System.Data.DataRow" /> objects that have <see cref="P:System.Data.DataRow.RowError" /> set. For example, errors can occur when calling <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)" /> with <see cref="P:System.Data.Common.DataAdapter.ContinueUpdateOnError" /> set to <system>true</system>. Do not invoke <see cref="M:System.Data.DataTable.AcceptChanges" /> on the <see cref="T:System.Data.DataTable" /> until you resolve all errors and resubmit the <see cref="T:System.Data.DataSet" /> for updating.</para>
856         </remarks>
857         <summary>
858           <attribution license="cc4" from="Microsoft" modified="false" />
859           <para>Gets an array of <see cref="T:System.Data.DataRow" /> objects that contain errors.</para>
860         </summary>
861       </Docs>
862       <AssemblyInfo>
863         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
864         <AssemblyVersion>2.0.0.0</AssemblyVersion>
865       </AssemblyInfo>
866     </Member>
867     <Member MemberName="GetObjectData">
868       <MemberSignature Language="C#" Value="public virtual void GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
869       <MemberType>Method</MemberType>
870       <AssemblyInfo>
871         <AssemblyVersion>2.0.0.0</AssemblyVersion>
872       </AssemblyInfo>
873       <ReturnValue>
874         <ReturnType>System.Void</ReturnType>
875       </ReturnValue>
876       <Parameters>
877         <Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
878         <Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
879       </Parameters>
880       <Docs>
881         <remarks>To be added.</remarks>
882         <summary>
883           <attribution license="cc4" from="Microsoft" modified="false" />
884           <para>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataTable" />.</para>
885         </summary>
886         <param name="info">
887           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized data associated with the <see cref="T:System.Data.DataTable" />.</param>
888         <param name="context">
889           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataTable" />.</param>
890       </Docs>
891     </Member>
892     <Member MemberName="GetRowType">
893       <MemberSignature Language="C#" Value="protected virtual Type GetRowType ();" />
894       <MemberType>Method</MemberType>
895       <ReturnValue>
896         <ReturnType>System.Type</ReturnType>
897       </ReturnValue>
898       <Parameters />
899       <Docs>
900         <returns>To be added: an object of type 'Type'</returns>
901         <remarks>To be added</remarks>
902         <summary>
903           <attribution license="cc4" from="Microsoft" modified="false" />
904           <para>Gets the row type.</para>
905         </summary>
906       </Docs>
907       <AssemblyInfo>
908         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
909         <AssemblyVersion>2.0.0.0</AssemblyVersion>
910       </AssemblyInfo>
911     </Member>
912     <Member MemberName="GetSchema">
913       <MemberSignature Language="C#" Value="protected virtual System.Xml.Schema.XmlSchema GetSchema ();" />
914       <MemberType>Method</MemberType>
915       <AssemblyInfo>
916         <AssemblyVersion>2.0.0.0</AssemblyVersion>
917       </AssemblyInfo>
918       <ReturnValue>
919         <ReturnType>System.Xml.Schema.XmlSchema</ReturnType>
920       </ReturnValue>
921       <Parameters />
922       <Docs>
923         <returns>To be added.</returns>
924         <remarks>To be added.</remarks>
925         <summary>
926           <attribution license="cc4" from="Microsoft" modified="false" />
927           <para>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</para>
928         </summary>
929       </Docs>
930     </Member>
931     <Member MemberName="HasErrors">
932       <MemberSignature Language="C#" Value="public bool HasErrors { get; }" />
933       <MemberType>Property</MemberType>
934       <ReturnValue>
935         <ReturnType>System.Boolean</ReturnType>
936       </ReturnValue>
937       <Docs>
938         <value>To be added: an object of type 'bool'</value>
939         <remarks>
940           <attribution license="cc4" from="Microsoft" modified="false" />
941           <para>As users work on a set of data contained in a <see cref="T:System.Data.DataTable" />, you can mark each change with an error if the change causes some validation failure. You can mark an entire <see cref="T:System.Data.DataRow" /> with an error message using the <see cref="P:System.Data.DataRow.RowError" /> property. You can also set errors on each column of the row with the <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> method.</para>
942           <para>Before updating a data source with a <see cref="T:System.Data.DataSet" />, it's recommended that you first invoke the <see cref="M:System.Data.DataSet.GetChanges" /> method on the target <see cref="T:System.Data.DataSet" />. The method results in a <see cref="T:System.Data.DataSet" /> that contains only the changes made to the original. Before sending the <see cref="T:System.Data.DataSet" /> to the data source for updating, check the <see cref="P:System.Data.DataTable.HasErrors" /> property of each table to see if any errors have been attached to the rows or columns in the rows.</para>
943           <para>After reconciling each error, clear the errors with the <see cref="M:System.Data.DataRow.ClearErrors" /> method of the DataRow.</para>
944         </remarks>
945         <summary>
946           <attribution license="cc4" from="Microsoft" modified="false" />
947           <para>Gets a value indicating whether there are errors in any of the rows in any of the tables of the <see cref="T:System.Data.DataSet" /> to which the table belongs.</para>
948         </summary>
949       </Docs>
950       <AssemblyInfo>
951         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
952         <AssemblyVersion>2.0.0.0</AssemblyVersion>
953       </AssemblyInfo>
954       <Attributes>
955         <Attribute>
956           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
957         </Attribute>
958       </Attributes>
959     </Member>
960     <Member MemberName="ImportRow">
961       <MemberSignature Language="C#" Value="public void ImportRow (System.Data.DataRow row);" />
962       <MemberType>Method</MemberType>
963       <ReturnValue>
964         <ReturnType>System.Void</ReturnType>
965       </ReturnValue>
966       <Parameters>
967         <Parameter Name="row" Type="System.Data.DataRow" />
968       </Parameters>
969       <Docs>
970         <remarks>
971           <attribution license="cc4" from="Microsoft" modified="false" />
972           <para>Calling <see cref="M:System.Data.DataTable.NewRow" /> adds a row to the table using the existing table schema, but with default values for the row, and sets the <see cref="T:System.Data.DataRowState" /> to Detached. Calling <see cref="M:System.Data.DataTable.ImportRow(System.Data.DataRow)" /> preserves the existing <see cref="T:System.Data.DataRowState" /> along with other values in the row. If the DataRow that is passed as a parameter is in a detached state, it is ignored, and no exception is thrown.</para>
973           <para>The new row will be added to the end of the data table.</para>
974           <para>If the new row violates a Constraint it won’t be added to the data table.</para>
975           <para>You can get the index of the new row with as DataTable.Rows.Find and DataTable.Rows.IndexOf. See <see cref="T:System.Data.DataRowCollection" /> and <see cref="P:System.Data.DataTable.Rows" /> for more information.</para>
976         </remarks>
977         <summary>
978           <attribution license="cc4" from="Microsoft" modified="false" />
979           <para>Copies a <see cref="T:System.Data.DataRow" /> into a <see cref="T:System.Data.DataTable" />, preserving any property settings, as well as original and current values.</para>
980         </summary>
981         <param name="row">
982           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRow" /> to be imported. </param>
983       </Docs>
984       <AssemblyInfo>
985         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
986         <AssemblyVersion>2.0.0.0</AssemblyVersion>
987       </AssemblyInfo>
988     </Member>
989     <Member MemberName="Initialized">
990       <MemberSignature Language="C#" Value="public event EventHandler Initialized;" />
991       <MemberType>Event</MemberType>
992       <AssemblyInfo>
993         <AssemblyVersion>2.0.0.0</AssemblyVersion>
994       </AssemblyInfo>
995       <ReturnValue>
996         <ReturnType>System.EventHandler</ReturnType>
997       </ReturnValue>
998       <Docs>
999         <remarks>
1000           <attribution license="cc4" from="Microsoft" modified="false" />
1001           <para>For more information, see <see cref="P:System.Data.DataTable.IsInitialized" />.</para>
1002         </remarks>
1003         <summary>
1004           <attribution license="cc4" from="Microsoft" modified="false" />
1005           <para>Occurs after the <see cref="T:System.Data.DataTable" /> is initialized.</para>
1006         </summary>
1007       </Docs>
1008     </Member>
1009     <Member MemberName="IsInitialized">
1010       <MemberSignature Language="C#" Value="public bool IsInitialized { get; }" />
1011       <MemberType>Property</MemberType>
1012       <AssemblyInfo>
1013         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1014       </AssemblyInfo>
1015       <Attributes>
1016         <Attribute>
1017           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1018         </Attribute>
1019       </Attributes>
1020       <ReturnValue>
1021         <ReturnType>System.Boolean</ReturnType>
1022       </ReturnValue>
1023       <Docs>
1024         <value>To be added.</value>
1025         <remarks>
1026           <attribution license="cc4" from="Microsoft" modified="false" />
1027           <para>Returns the status of the <see cref="T:System.Data.DataTable" /> while it’s being constructed, for instance by Visual Studio. The <see cref="M:System.Data.DataTable.BeginInit" /> method sets it to false and <see cref="M:System.Data.DataTable.EndInit" /> method sets it to true.</para>
1028         </remarks>
1029         <summary>
1030           <attribution license="cc4" from="Microsoft" modified="false" />
1031           <para>Gets a value that indicates whether the <see cref="T:System.Data.DataTable" /> is initialized.</para>
1032         </summary>
1033       </Docs>
1034     </Member>
1035     <Member MemberName="Load">
1036       <MemberSignature Language="C#" Value="public void Load (System.Data.IDataReader reader);" />
1037       <MemberType>Method</MemberType>
1038       <AssemblyInfo>
1039         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1040       </AssemblyInfo>
1041       <ReturnValue>
1042         <ReturnType>System.Void</ReturnType>
1043       </ReturnValue>
1044       <Parameters>
1045         <Parameter Name="reader" Type="System.Data.IDataReader" />
1046       </Parameters>
1047       <Docs>
1048         <remarks>
1049           <attribution license="cc4" from="Microsoft" modified="false" />
1050           <para>The <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method consumes the first result set from the loaded <see cref="T:System.Data.IDataReader" />, and after successful completion, sets the reader's position to the next result set, if any. When converting data, the Load method uses the same conversion rules as the <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)" /> method.</para>
1051           <para>The <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method must take into account three specific issues when loading the data from an <see cref="T:System.Data.IDataReader" /> instance: schema, data, and event operations. When working with the schema, the <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method may encounter conditions as described in the following table. The schema operations take place for all imported result sets, even those containing no data.</para>
1052           <list type="table">
1053             <listheader>
1054               <item>
1055                 <term>
1056                   <para>Condition</para>
1057                 </term>
1058                 <description>
1059                   <para>Behavior</para>
1060                 </description>
1061               </item>
1062             </listheader>
1063             <item>
1064               <term>
1065                 <para>The <see cref="T:System.Data.DataTable" /> has no schema.</para>
1066               </term>
1067               <description>
1068                 <para>The <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method infers the schema based on the result set from the imported <see cref="T:System.Data.IDataReader" />.</para>
1069               </description>
1070             </item>
1071             <item>
1072               <term>
1073                 <para>The <see cref="T:System.Data.DataTable" /> has a schema, but it is incompatible with the loaded schema.</para>
1074               </term>
1075               <description>
1076                 <para>The <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method throws an exception corresponding to the particular error that occurs when attempting to load data into the incompatible schema.</para>
1077               </description>
1078             </item>
1079             <item>
1080               <term>
1081                 <para>The schemas are compatible, but the loaded result set schema contains columns that do not exist in the <see cref="T:System.Data.DataTable" />.</para>
1082               </term>
1083               <description>
1084                 <para>The <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method adds the extra columns to DataTable's schema. The method throws an exception if corresponding columns in the <see cref="T:System.Data.DataTable" /> and the loaded result set are not value compatible. The method also retrieves constraint information from the result set for all added columns. Except for the case of Primary Key constraint, this constraint information is used only if the current <see cref="T:System.Data.DataTable" /> does not contain any columns at the start of the load operation. </para>
1085               </description>
1086             </item>
1087             <item>
1088               <term>
1089                 <para>The schemas are compatible, but the loaded result set schema contains fewer columns than does the DataTable.</para>
1090               </term>
1091               <description>
1092                 <para>If a missing column has a default value defined or the column's data type is nullable, the <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader)" /> method allows the rows to be added, substituting the default or null value for the missing column. If no default value or null can be used, then the Load method throws an exception. If no specific default value has been supplied, the Load method uses the null value as the implied default value.</para>
1093               </description>
1094             </item>
1095           </list>
1096           <para>Before considering the behavior of the Load method in terms of data operations, consider that each row within a <see cref="T:System.Data.DataTable" /> maintains both the current value and the original value for each column. These values may be equivalent, or may be different if the data in the row has been changed since filling the DataTable.  For more information, see <format type="text/html"><a href="2e6642c9-bfc6-425c-b3a7-e4912ffa6c1f">Row States and Row Versions</a></format>.</para>
1097           <para>This version of the Load method attempts to preserve the current values in each row, leaving the original value intact. (If you want finer control over the behavior of incoming data, see <see cref="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption)" />.) If the existing row and the incoming row contain corresponding primary key values, the row is processed using its current row state value, otherwise it's treated as a new row.</para>
1098           <para>In terms of event operations, the <see cref="E:System.Data.DataTable.RowChanging" /> event occurs before each row is changed, and the <see cref="E:System.Data.DataTable.RowChanged" /> event occurs after each row has been changed. In each case, the <see cref="P:System.Data.DataRowChangeEventArgs.Action" /> property of the <see cref="T:System.Data.DataRowChangeEventArgs" /> instance passed to the event handler contains information about the particular action associated with the event. This action value depends on the state of the row before the load operation. In each case, both events occur, and the action is the same for each. The action may be applied to either the current or original version of each row, or both, depending on the current row state.</para>
1099           <para>The following table displays behavior for the Load method. The final row (labeled "(Not present)") describes the behavior for incoming rows that don't match any existing row. Each cell in this table describes the current and original value for a field within a row, along with the <see cref="T:System.Data.DataRowState" /> for the value after the Load method has completed. In this case, the method doesn't allow you to indicate the load option, and uses the default, PreserveChanges. </para>
1100           <list type="table">
1101             <listheader>
1102               <item>
1103                 <term>
1104                   <para>Existing DataRowState</para>
1105                 </term>
1106                 <description>
1107                   <para>Values after Load method, and event action</para>
1108                 </description>
1109               </item>
1110             </listheader>
1111             <item>
1112               <term>
1113                 <para>Added</para>
1114               </term>
1115               <description>
1116                 <para>Current = &lt;Existing&gt;</para>
1117                 <para>Original = &lt;Incoming&gt;</para>
1118                 <para>State = &lt;Modified&gt;</para>
1119                 <para>RowAction = ChangeOriginal</para>
1120               </description>
1121             </item>
1122             <item>
1123               <term>
1124                 <para>Modified</para>
1125               </term>
1126               <description>
1127                 <para>Current = &lt;Existing&gt;</para>
1128                 <para>Original = &lt;Incoming&gt;</para>
1129                 <para>State = &lt;Modified&gt;</para>
1130                 <para>RowAction = ChangeOriginal</para>
1131               </description>
1132             </item>
1133             <item>
1134               <term>
1135                 <para>Deleted</para>
1136               </term>
1137               <description>
1138                 <para>Current = &lt;Not available&gt;</para>
1139                 <para>Original = &lt;Incoming&gt;</para>
1140                 <para>State = &lt;Deleted&gt;</para>
1141                 <para>RowAction = ChangeOriginal</para>
1142               </description>
1143             </item>
1144             <item>
1145               <term>
1146                 <para>Unchanged</para>
1147               </term>
1148               <description>
1149                 <para>Current = &lt;Incoming&gt;</para>
1150                 <para>Original = &lt;Incoming&gt;</para>
1151                 <para>State = &lt;Unchanged&gt;</para>
1152                 <para>RowAction = ChangeCurrentAndOriginal</para>
1153               </description>
1154             </item>
1155             <item>
1156               <term>
1157                 <para>(Not present)</para>
1158               </term>
1159               <description>
1160                 <para>Current = &lt;Incoming&gt;</para>
1161                 <para>Original = &lt;Incoming&gt;</para>
1162                 <para>State = &lt;Unchanged&gt;</para>
1163                 <para>RowAction = ChangeCurrentAndOriginal</para>
1164               </description>
1165             </item>
1166           </list>
1167           <para>Values in a <see cref="T:System.Data.DataColumn" /> can be constrained through use of properties such as <see cref="P:System.Data.DataColumn.ReadOnly" /> and <see cref="P:System.Data.DataColumn.AutoIncrement" />. The Load method handles such columns in a manner that is consistent with the behavior defined by the column's properties. The read only constraint on a <see cref="T:System.Data.DataColumn" /> is applicable only for changes that occur in memory. The Load method's overwrites the read-only column values, if needed.</para>
1168           <para>To determine which version of the primary key field to use for comparing the current row with an incoming row, the Load method uses the original version of the primary key value within a row, if it exists. Otherwise, the Load method uses the current version of the primary key field.</para>
1169         </remarks>
1170         <summary>
1171           <attribution license="cc4" from="Microsoft" modified="false" />
1172           <para>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />. If the <see cref="T:System.Data.DataTable" /> already contains rows, the incoming data from the data source is merged with the existing rows.</para>
1173         </summary>
1174         <param name="reader">
1175           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
1176       </Docs>
1177     </Member>
1178     <Member MemberName="Load">
1179       <MemberSignature Language="C#" Value="public void Load (System.Data.IDataReader reader, System.Data.LoadOption loadOption);" />
1180       <MemberType>Method</MemberType>
1181       <AssemblyInfo>
1182         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1183       </AssemblyInfo>
1184       <ReturnValue>
1185         <ReturnType>System.Void</ReturnType>
1186       </ReturnValue>
1187       <Parameters>
1188         <Parameter Name="reader" Type="System.Data.IDataReader" />
1189         <Parameter Name="loadOption" Type="System.Data.LoadOption" />
1190       </Parameters>
1191       <Docs>
1192         <remarks>
1193           <attribution license="cc4" from="Microsoft" modified="false" />
1194           <para>The Load method consumes the first result set from the loaded <see cref="T:System.Data.IDataReader" />, and after successful completion, sets the reader's position to the next result set, if any. When converting data, the Load method uses the same conversion rules as the <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)" /> method.</para>
1195           <para>The Load method must take into account three specific issues when loading the data from an <see cref="T:System.Data.IDataReader" /> instance: schema, data, and event operations. When working with the schema, the Load method may encounter conditions as described in the following table. The schema operations take place for all imported result sets, even those containing no data.</para>
1196           <list type="table">
1197             <listheader>
1198               <item>
1199                 <term>
1200                   <para>Condition</para>
1201                 </term>
1202                 <description>
1203                   <para>Behavior</para>
1204                 </description>
1205               </item>
1206             </listheader>
1207             <item>
1208               <term>
1209                 <para>The <see cref="T:System.Data.DataTable" /> has no schema.</para>
1210               </term>
1211               <description>
1212                 <para>The Load method infers the schema based on the result set from the imported <see cref="T:System.Data.IDataReader" />.</para>
1213               </description>
1214             </item>
1215             <item>
1216               <term>
1217                 <para>The <see cref="T:System.Data.DataTable" /> has a schema, but it is incompatible with the loaded schema.</para>
1218               </term>
1219               <description>
1220                 <para>The Load method throws an exception corresponding to the particular error that occurs when attempting to load data into the incompatible schema.</para>
1221               </description>
1222             </item>
1223             <item>
1224               <term>
1225                 <para>The schemas are compatible, but the loaded result set schema contains columns that don't exist in the DataTable.</para>
1226               </term>
1227               <description>
1228                 <para>The Load method adds the extra columns to DataTable’s schema. The method throws an exception if corresponding columns in the <see cref="T:System.Data.DataTable" /> and the loaded result set are not value compatible. The method also retrieves constraint information from the result set for all added columns. Except for the case of Primary Key constraint, this constraint information is used only if the current <see cref="T:System.Data.DataTable" /> does not contain any columns at the start of the load operation. </para>
1229               </description>
1230             </item>
1231             <item>
1232               <term>
1233                 <para>The schemas are compatible, but the loaded result set schema contains fewer columns than does the DataTable.</para>
1234               </term>
1235               <description>
1236                 <para>If a missing column has a default value defined or the column's data type is nullable, the Load method allows the rows to be added, substituting the default or null value for the missing column. If no default value or null can be used, then the Load method throws an exception. If no specific default value has been supplied, the Load method uses the null value as the implied default value.</para>
1237               </description>
1238             </item>
1239           </list>
1240           <para>Before considering the behavior of the Load method in terms of data operations, consider that each row within a <see cref="T:System.Data.DataTable" /> maintains both the current value and the original value for each column. These values may be equivalent, or may be different if the data in the row has been changed since filling the DataTable. See <format type="text/html"><a href="2e6642c9-bfc6-425c-b3a7-e4912ffa6c1f">Row States and Row Versions</a></format> for more information.</para>
1241           <para>In this method call, the specified <see cref="T:System.Data.LoadOption" /> parameter influences the processing of the incoming data. How should the Load method handle loading rows that have the same primary key as existing rows? Should it modify current values, original values, or both? These issues, and more, are controlled by the <paramref name="loadOption" /> parameter. </para>
1242           <para>If the existing row and the incoming row contain corresponding primary key values, the row is processed using its current row state value, otherwise it's treated as a new row. </para>
1243           <para>In terms of event operations, the <see cref="E:System.Data.DataTable.RowChanging" /> event occurs before each row is changed, and the <see cref="E:System.Data.DataTable.RowChanged" /> event occurs after each row has been changed. In each case, the <see cref="P:System.Data.DataRowChangeEventArgs.Action" /> property of the <see cref="T:System.Data.DataRowChangeEventArgs" /> instance passed to the event handler contains information about the particular action associated with the event. This action value varies, depending on the state of the row before the load operation. In each case, both events occur, and the action is the same for each. The action may be applied to either the current or original version of each row, or both, depending on the current row state.</para>
1244           <para>The following table displays behavior for the Load method when called with each of the LoadOption values, and also shows how the values interact with the row state for the row being loaded. The final row (labeled "(Not present)") describes the behavior for incoming rows that don't match any existing row. Each cell in this table describes the current and original value for a field within a row, along with the <see cref="T:System.Data.DataRowState" /> for the value after the Load method has completed.</para>
1245           <list type="table">
1246             <listheader>
1247               <item>
1248                 <term>
1249                   <para>Existing DataRowState</para>
1250                 </term>
1251                 <description>
1252                   <para>Upsert</para>
1253                 </description>
1254                 <description>
1255                   <para>OverwriteChanges</para>
1256                 </description>
1257                 <description>
1258                   <para>PreserveChanges (Default behavior)</para>
1259                 </description>
1260               </item>
1261             </listheader>
1262             <item>
1263               <term>
1264                 <para>Added</para>
1265               </term>
1266               <description>
1267                 <para>Current = &lt;Incoming&gt;</para>
1268                 <para>Original = -&lt;Not available&gt;</para>
1269                 <para>State = &lt;Added&gt;</para>
1270                 <para>RowAction = Change</para>
1271               </description>
1272               <description>
1273                 <para>Current = &lt;Incoming&gt;</para>
1274                 <para>Original = &lt;Incoming&gt;</para>
1275                 <para>State = &lt;Unchanged&gt;</para>
1276                 <para>RowAction = ChangeCurrentAndOriginal</para>
1277               </description>
1278               <description>
1279                 <para>Current = &lt;Existing&gt;</para>
1280                 <para>Original = &lt;Incoming&gt;</para>
1281                 <para>State = &lt;Modified&gt;</para>
1282                 <para>RowAction = ChangeOriginal</para>
1283               </description>
1284             </item>
1285             <item>
1286               <term>
1287                 <para>Modified</para>
1288               </term>
1289               <description>
1290                 <para>Current = &lt;Incoming&gt;</para>
1291                 <para>Original = &lt;Existing&gt;</para>
1292                 <para>State = &lt;Modified&gt;</para>
1293                 <para>RowAction = Change</para>
1294               </description>
1295               <description>
1296                 <para>Current = &lt;Incoming&gt;</para>
1297                 <para>Original = &lt;Incoming&gt;</para>
1298                 <para>State = &lt;Unchanged&gt;</para>
1299                 <para>RowAction = ChangeCurrentAndOriginal</para>
1300               </description>
1301               <description>
1302                 <para>Current = &lt;Existing&gt;</para>
1303                 <para>Original = &lt;Incoming&gt;</para>
1304                 <para>State = &lt;Modified&gt;</para>
1305                 <para>RowAction =ChangeOriginal</para>
1306               </description>
1307             </item>
1308             <item>
1309               <term>
1310                 <para>Deleted</para>
1311               </term>
1312               <description>
1313                 <para>(Load does not affect deleted rows)</para>
1314                 <para>Current = ---</para>
1315                 <para>Original = &lt;Existing&gt;</para>
1316                 <para>State = &lt;Deleted&gt;</para>
1317                 <para>(New row is added with the following characteristics)</para>
1318                 <para>Current = &lt;Incoming&gt;</para>
1319                 <para>Original = &lt;Not available&gt;</para>
1320                 <para>State = &lt;Added&gt;</para>
1321                 <para>RowAction = Add</para>
1322               </description>
1323               <description>
1324                 <para>Undo delete and </para>
1325                 <para>Current = &lt;Incoming&gt;</para>
1326                 <para>Original = &lt;Incoming&gt;</para>
1327                 <para>State = &lt;Unchanged&gt;</para>
1328                 <para>RowAction = ChangeCurrentAndOriginal</para>
1329               </description>
1330               <description>
1331                 <para>Current = &lt;Not available&gt;</para>
1332                 <para>Original = &lt;Incoming&gt;</para>
1333                 <para>State = &lt;Deleted&gt;</para>
1334                 <para>RowAction = ChangeOriginal</para>
1335               </description>
1336             </item>
1337             <item>
1338               <term>
1339                 <para>Unchanged</para>
1340               </term>
1341               <description>
1342                 <para>Current = &lt;Incoming&gt;</para>
1343                 <para>Original = &lt;Existing&gt;</para>
1344                 <para>If new value is the same as the existing value then</para>
1345                 <para>State = &lt;Unchanged&gt; </para>
1346                 <para>RowAction = Nothing</para>
1347                 <para>Else</para>
1348                 <para> State = &lt;Modified&gt;</para>
1349                 <para>RowAction = Change</para>
1350               </description>
1351               <description>
1352                 <para>Current = &lt;Incoming&gt;</para>
1353                 <para>Original = &lt;Incoming&gt;</para>
1354                 <para>State = &lt;Unchanged&gt;</para>
1355                 <para>RowAction = ChangeCurrentAndOriginal</para>
1356               </description>
1357               <description>
1358                 <para>Current = &lt;Incoming&gt;</para>
1359                 <para>Original = &lt;Incoming&gt;</para>
1360                 <para>State = &lt;Unchanged&gt;</para>
1361                 <para>RowAction = ChangeCurrentAndOriginal</para>
1362               </description>
1363             </item>
1364             <item>
1365               <term>
1366                 <para>(Not present)</para>
1367               </term>
1368               <description>
1369                 <para>Current = &lt;Incoming&gt;</para>
1370                 <para>Original = &lt;Not available&gt;</para>
1371                 <para>State = &lt;Added&gt;</para>
1372                 <para>RowAction = Add</para>
1373               </description>
1374               <description>
1375                 <para>Current = &lt;Incoming&gt;</para>
1376                 <para>Original = &lt;Incoming&gt;</para>
1377                 <para>State = &lt;Unchanged&gt;</para>
1378                 <para>RowAction = ChangeCurrentAndOriginal</para>
1379               </description>
1380               <description>
1381                 <para>Current = &lt;Incoming&gt;</para>
1382                 <para>Original = &lt;Incoming&gt;</para>
1383                 <para>State = &lt;Unchanged&gt;</para>
1384                 <para>RowAction = ChangeCurrentAndOriginal</para>
1385               </description>
1386             </item>
1387           </list>
1388           <para>Values in a <see cref="T:System.Data.DataColumn" /> can be constrained through use of properties such as <see cref="P:System.Data.DataColumn.ReadOnly" /> and <see cref="P:System.Data.DataColumn.AutoIncrement" />. The Load method handles such columns in a manner that is consistent with the behavior defined by the column's properties. The read only constraint on a <see cref="T:System.Data.DataColumn" /> is applicable only for changes that occur in memory. The Load method's overwrites the read-only column values, if needed.</para>
1389           <para>If you specify the OverwriteChanges or PreserveChanges options when calling the Load method, then the assumption is made that the incoming data is coming from the DataTable's primary data source, and the DataTable tracks changes and can propagate the changes back to the data source. If you select the Upsert option, it is assumed that the data is coming from one of a secondary data source, such as data provided by a middle-tier component, perhaps altered by a user. In this case, the assumption is that the intent is to aggregate data from one or more data sources in the DataTable, and then perhaps propagate the data back to the primary data source. The <see cref="T:System.Data.LoadOption" /> parameter is used for determining the specific version of the row that is to be used for primary key comparison. The table below provides the details.</para>
1390           <list type="table">
1391             <listheader>
1392               <item>
1393                 <term>
1394                   <para>Load option</para>
1395                 </term>
1396                 <description>
1397                   <para>DataRow version used for primary key comparison</para>
1398                 </description>
1399               </item>
1400             </listheader>
1401             <item>
1402               <term>
1403                 <para>OverwriteChanges</para>
1404               </term>
1405               <description>
1406                 <para>Original version, if it exists, otherwise Current version</para>
1407               </description>
1408             </item>
1409             <item>
1410               <term>
1411                 <para>PreserveChanges</para>
1412               </term>
1413               <description>
1414                 <para>Original version, if it exists, otherwise Current version</para>
1415               </description>
1416             </item>
1417             <item>
1418               <term>
1419                 <para>Upsert</para>
1420               </term>
1421               <description>
1422                 <para>Current version, if it exists, otherwise Original version</para>
1423               </description>
1424             </item>
1425           </list>
1426         </remarks>
1427         <summary>
1428           <attribution license="cc4" from="Microsoft" modified="false" />
1429           <para>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />. If the DataTable already contains rows, the incoming data from the data source is merged with the existing rows according to the value of the <paramref name="loadOption" /> parameter.</para>
1430         </summary>
1431         <param name="reader">
1432           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
1433         <param name="loadOption">
1434           <attribution license="cc4" from="Microsoft" modified="false" />A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> are combined with incoming rows that share the same primary key. </param>
1435       </Docs>
1436     </Member>
1437     <Member MemberName="Load">
1438       <MemberSignature Language="C#" Value="public virtual void Load (System.Data.IDataReader reader, System.Data.LoadOption loadOption, System.Data.FillErrorEventHandler errorHandler);" />
1439       <MemberType>Method</MemberType>
1440       <AssemblyInfo>
1441         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1442       </AssemblyInfo>
1443       <ReturnValue>
1444         <ReturnType>System.Void</ReturnType>
1445       </ReturnValue>
1446       <Parameters>
1447         <Parameter Name="reader" Type="System.Data.IDataReader" />
1448         <Parameter Name="loadOption" Type="System.Data.LoadOption" />
1449         <Parameter Name="errorHandler" Type="System.Data.FillErrorEventHandler" />
1450       </Parameters>
1451       <Docs>
1452         <remarks>
1453           <attribution license="cc4" from="Microsoft" modified="false" />
1454           <para>The Load method consumes the first result set from the loaded <see cref="T:System.Data.IDataReader" />, and after successful completion, sets the reader's position to the next result set, if any. When converting data, the Load method uses the same conversion rules as the <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)" /> method.</para>
1455           <para>The Load method must take into account three specific issues when loading the data from an <see cref="T:System.Data.IDataReader" /> instance: schema, data, and event operations. When working with the schema, the Load method may encounter conditions as described in the following table. The schema operations take place for all imported result sets, even those containing no data.</para>
1456           <list type="table">
1457             <listheader>
1458               <item>
1459                 <term>
1460                   <para>Condition</para>
1461                 </term>
1462                 <description>
1463                   <para>Behavior</para>
1464                 </description>
1465               </item>
1466             </listheader>
1467             <item>
1468               <term>
1469                 <para>The <see cref="T:System.Data.DataTable" /> has no schema.</para>
1470               </term>
1471               <description>
1472                 <para>The Load method infers the schema based on the result set from the imported <see cref="T:System.Data.IDataReader" />.</para>
1473               </description>
1474             </item>
1475             <item>
1476               <term>
1477                 <para>The <see cref="T:System.Data.DataTable" /> has a schema, but it is incompatible with the loaded schema.</para>
1478               </term>
1479               <description>
1480                 <para>The Load method throws an exception corresponding to the particular error that occurs when attempting to load data into the incompatible schema.</para>
1481               </description>
1482             </item>
1483             <item>
1484               <term>
1485                 <para>The schemas are compatible, but the loaded result set schema contains columns that don't exist in the DataTable.</para>
1486               </term>
1487               <description>
1488                 <para>The Load method adds the extra column(s) to DataTable’s schema. The method throws an exception if corresponding columns in the <see cref="T:System.Data.DataTable" /> and the loaded result set are not value compatible. The method also retrieves constraint information from the result set for all added columns. Except for the case of Primary Key constraint, this constraint information is used only if the current <see cref="T:System.Data.DataTable" /> does not contain any columns at the start of the load operation. </para>
1489               </description>
1490             </item>
1491             <item>
1492               <term>
1493                 <para>The schemas are compatible, but the loaded result set schema contains fewer columns than does the DataTable.</para>
1494               </term>
1495               <description>
1496                 <para>If a missing column has a default value defined or the column's data type is nullable, the Load method allows the rows to be added, substituting the default or null value for the missing column. If no default value or null can be used, then the Load method throws an exception. If no specific default value has been supplied, the Load method uses the null value as the implied default value.</para>
1497               </description>
1498             </item>
1499           </list>
1500           <para>Before considering the behavior of the Load method in terms of data operations, consider that each row within a <see cref="T:System.Data.DataTable" /> maintains both the current value and the original value for each column. These values may be equivalent, or may be different if the data in the row has been changed since filling the DataTable. See <format type="text/html"><a href="2e6642c9-bfc6-425c-b3a7-e4912ffa6c1f">Row States and Row Versions</a></format> for more information.</para>
1501           <para>In this method call, the specified <see cref="T:System.Data.LoadOption" /> parameter influences the processing of the incoming data. How should the Load method handle loading rows that have the same primary key as existing rows? Should it modify current values, original values, or both? These issues, and more, are controlled by the <paramref name="loadOption" /> parameter. </para>
1502           <para>If the existing row and the incoming row contain corresponding primary key values, the row is processed using its current row state value, otherwise it's treated as a new row. </para>
1503           <para>In terms of event operations, the <see cref="E:System.Data.DataTable.RowChanging" /> event occurs before each row is changed, and the <see cref="E:System.Data.DataTable.RowChanged" /> event occurs after each row has been changed. In each case, the <see cref="P:System.Data.DataRowChangeEventArgs.Action" /> property of the <see cref="T:System.Data.DataRowChangeEventArgs" /> instance passed to the event handler contains information about the particular action associated with the event. This action value varies, depending on the state of the row before the load operation. In each case, both events occur, and the action is the same for each. The action may be applied to either the current or original version of each row, or both, depending on the current row state.</para>
1504           <para>The following table displays behavior for the Load method when called with each of the LoadOption values, and also shows how the values interact with the row state for the row being loaded. The final row (labeled "(Not present)") describes the behavior for incoming rows that don't match any existing row. Each cell in this table describes the current and original value for a field within a row, along with the <see cref="T:System.Data.DataRowState" /> for the value after the Load method has completed.</para>
1505           <list type="table">
1506             <listheader>
1507               <item>
1508                 <term>
1509                   <para>Existing DataRowState</para>
1510                 </term>
1511                 <description>
1512                   <para>Upsert</para>
1513                 </description>
1514                 <description>
1515                   <para>OverwriteChanges</para>
1516                 </description>
1517                 <description>
1518                   <para>PreserveChanges (Default behavior)</para>
1519                 </description>
1520               </item>
1521             </listheader>
1522             <item>
1523               <term>
1524                 <para>Added</para>
1525               </term>
1526               <description>
1527                 <para>Current = &lt;Incoming&gt;</para>
1528                 <para>Original = -&lt;Not available&gt;</para>
1529                 <para>State = &lt;Added&gt;</para>
1530                 <para>RowAction = Change</para>
1531               </description>
1532               <description>
1533                 <para>Current = &lt;Incoming&gt;</para>
1534                 <para>Original = &lt;Incoming&gt;</para>
1535                 <para>State = &lt;Unchanged&gt;</para>
1536                 <para>RowAction = ChangeCurrentAndOriginal</para>
1537               </description>
1538               <description>
1539                 <para>Current = &lt;Existing&gt;</para>
1540                 <para>Original = &lt;Incoming&gt;</para>
1541                 <para>State = &lt;Modified&gt;</para>
1542                 <para>RowAction = ChangeOriginal</para>
1543               </description>
1544             </item>
1545             <item>
1546               <term>
1547                 <para>Modified</para>
1548               </term>
1549               <description>
1550                 <para>Current = &lt;Incoming&gt;</para>
1551                 <para>Original = &lt;Existing&gt;</para>
1552                 <para>State = &lt;Modified&gt;</para>
1553                 <para>RowAction = Change</para>
1554               </description>
1555               <description>
1556                 <para>Current = &lt;Incoming&gt;</para>
1557                 <para>Original = &lt;Incoming&gt;</para>
1558                 <para>State = &lt;Unchanged&gt;</para>
1559                 <para>RowAction = ChangeCurrentAndOriginal</para>
1560               </description>
1561               <description>
1562                 <para>Current = &lt;Existing&gt;</para>
1563                 <para>Original = &lt;Incoming&gt;</para>
1564                 <para>State = &lt;Modified&gt;</para>
1565                 <para>RowAction =ChangeOriginal</para>
1566               </description>
1567             </item>
1568             <item>
1569               <term>
1570                 <para>Deleted</para>
1571               </term>
1572               <description>
1573                 <para>(Load does not affect deleted rows)</para>
1574                 <para>Current = ---</para>
1575                 <para>Original = &lt;Existing&gt;</para>
1576                 <para>State = &lt;Deleted&gt;</para>
1577                 <para>(New row is added with the following characteristics)</para>
1578                 <para>Current = &lt;Incoming&gt;</para>
1579                 <para>Original = &lt;Not available&gt;</para>
1580                 <para>State = &lt;Added&gt;</para>
1581                 <para>RowAction = Add</para>
1582               </description>
1583               <description>
1584                 <para>Undo delete and </para>
1585                 <para>Current = &lt;Incoming&gt;</para>
1586                 <para>Original = &lt;Incoming&gt;</para>
1587                 <para>State = &lt;Unchanged&gt;</para>
1588                 <para>RowAction = ChangeCurrentAndOriginal</para>
1589               </description>
1590               <description>
1591                 <para>Current = &lt;Not available&gt;</para>
1592                 <para>Original = &lt;Incoming&gt;</para>
1593                 <para>State = &lt;Deleted&gt;</para>
1594                 <para>RowAction = ChangeOriginal</para>
1595               </description>
1596             </item>
1597             <item>
1598               <term>
1599                 <para>Unchanged</para>
1600               </term>
1601               <description>
1602                 <para>Current = &lt;Incoming&gt;</para>
1603                 <para>Original = &lt;Existing&gt;</para>
1604                 <para>If new value is the same as the existing value then</para>
1605                 <para>State = &lt;Unchanged&gt; </para>
1606                 <para>RowAction = Nothing</para>
1607                 <para>Else</para>
1608                 <para> State = &lt;Modified&gt;</para>
1609                 <para>RowAction = Change</para>
1610               </description>
1611               <description>
1612                 <para>Current = &lt;Incoming&gt;</para>
1613                 <para>Original = &lt;Incoming&gt;</para>
1614                 <para>State = &lt;Unchanged&gt;</para>
1615                 <para>RowAction = ChangeCurrentAndOriginal</para>
1616               </description>
1617               <description>
1618                 <para>Current = &lt;Incoming&gt;</para>
1619                 <para>Original = &lt;Incoming&gt;</para>
1620                 <para>State = &lt;Unchanged&gt;</para>
1621                 <para>RowAction = ChangeCurrentAndOriginal</para>
1622               </description>
1623             </item>
1624             <item>
1625               <term>
1626                 <para>(Not present)</para>
1627               </term>
1628               <description>
1629                 <para>Current = &lt;Incoming&gt;</para>
1630                 <para>Original = &lt;Not available&gt;</para>
1631                 <para>State = &lt;Added&gt;</para>
1632                 <para>RowAction = Add</para>
1633               </description>
1634               <description>
1635                 <para>Current = &lt;Incoming&gt;</para>
1636                 <para>Original = &lt;Incoming&gt;</para>
1637                 <para>State = &lt;Unchanged&gt;</para>
1638                 <para>RowAction = ChangeCurrentAndOriginal</para>
1639               </description>
1640               <description>
1641                 <para>Current = &lt;Incoming&gt;</para>
1642                 <para>Original = &lt;Incoming&gt;</para>
1643                 <para>State = &lt;Unchanged&gt;</para>
1644                 <para>RowAction = ChangeCurrentAndOriginal</para>
1645               </description>
1646             </item>
1647           </list>
1648           <para>Values in a <see cref="T:System.Data.DataColumn" /> can be constrained through use of properties such as <see cref="P:System.Data.DataColumn.ReadOnly" /> and <see cref="P:System.Data.DataColumn.AutoIncrement" />. The Load method handles such columns in a manner that is consistent with the behavior defined by the column's properties. The read only constraint on a <see cref="T:System.Data.DataColumn" /> is applicable only for changes that occur in memory. The Load method's overwrites the read-only column values, if needed.</para>
1649           <para>If you specify the OverwriteChanges or PreserveChanges options when calling the Load method, then the assumption is made that the incoming data is coming from the DataTable's primary data source, and the DataTable tracks changes and can propagate the changes back to the data source. If you select the Upsert option, it is assumed that the data is coming from one of a secondary data source, such as data provided by a middle-tier component, perhaps altered by a user. In this case, the assumption is that the intent is to aggregate data from one or more data sources in the DataTable, and then perhaps propagate the data back to the primary data source. The <see cref="T:System.Data.LoadOption" /> parameter is used for determining the specific version of the row that is to be used for primary key comparison. The table below provides the details.</para>
1650           <list type="table">
1651             <listheader>
1652               <item>
1653                 <term>
1654                   <para>Load option</para>
1655                 </term>
1656                 <description>
1657                   <para>DataRow version used for primary key comparison</para>
1658                 </description>
1659               </item>
1660             </listheader>
1661             <item>
1662               <term>
1663                 <para>OverwriteChanges</para>
1664               </term>
1665               <description>
1666                 <para>Original version, if it exists, otherwise Current version</para>
1667               </description>
1668             </item>
1669             <item>
1670               <term>
1671                 <para>PreserveChanges</para>
1672               </term>
1673               <description>
1674                 <para>Original version, if it exists, otherwise Current version</para>
1675               </description>
1676             </item>
1677             <item>
1678               <term>
1679                 <para>Upsert</para>
1680               </term>
1681               <description>
1682                 <para>Current version, if it exists, otherwise Original version</para>
1683               </description>
1684             </item>
1685           </list>
1686           <para>The <paramref name="errorHandler" /> parameter is a <see cref="T:System.Data.FillErrorEventHandler" /> delegate that refers to a procedure that is called when an error occurs while loading data. The <see cref="T:System.Data.FillErrorEventArgs" /> parameter passed to the procedure provides properties that allow you to retrieve information about the error that occurred, the current row of data, and the <see cref="T:System.Data.DataTable" /> being filled. Using this delegate mechanism, rather than a simpler try/catch block, allows you to determine the error, handle the situation, and continue processing if you like. The <see cref="T:System.Data.FillErrorEventArgs" /> parameter supplies a <see cref="P:System.Data.FillErrorEventArgs.Continue" /> property: set this property to true to indicate that you have handled the error and wish to continue processing. Set the property to false to indicate that you wish to halt processing. Be aware that setting the property to false causes the code that triggered the problem to throw an exception.</para>
1687         </remarks>
1688         <summary>
1689           <attribution license="cc4" from="Microsoft" modified="false" />
1690           <para>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" /> using an error-handling delegate.</para>
1691         </summary>
1692         <param name="reader">
1693           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
1694         <param name="loadOption">
1695           <attribution license="cc4" from="Microsoft" modified="false" />A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> are combined with incoming rows that share the same primary key. </param>
1696         <param name="errorHandler">
1697           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.FillErrorEventHandler" /> delegate to call when an error occurs while loading data.</param>
1698       </Docs>
1699     </Member>
1700     <Member MemberName="LoadDataRow">
1701       <MemberSignature Language="C#" Value="public System.Data.DataRow LoadDataRow (object[] values, bool fAcceptChanges);" />
1702       <MemberType>Method</MemberType>
1703       <ReturnValue>
1704         <ReturnType>System.Data.DataRow</ReturnType>
1705       </ReturnValue>
1706       <Parameters>
1707         <Parameter Name="values" Type="System.Object[]" />
1708         <Parameter Name="fAcceptChanges" Type="System.Boolean" />
1709       </Parameters>
1710       <Docs>
1711         <returns>To be added: an object of type 'DataRow'</returns>
1712         <remarks>
1713           <attribution license="cc4" from="Microsoft" modified="false" />
1714           <para>The <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> method takes an array of values and finds the matching value(s) in the primary key column(s).</para>
1715           <para>If a column has a default value, pass a null value in the array to set the default value for that column. Similarly, if a column has its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to true, pass a null value in the array to set the automatically generated value for the row.</para>
1716           <para>If the <paramref name="fAcceptChanges" /> parameter is true or not specified, the new data is added and then <see cref="M:System.Data.DataTable.AcceptChanges" /> is called to accept all changes in the <see cref="T:System.Data.DataTable" />; if the argument is false, newly added rows are marked as insertions, and changes to existing rows are marked as modifications.</para>
1717           <para>Exceptions can also occur during either a <see cref="E:System.Data.DataTable.ColumnChanging" /> or <see cref="E:System.Data.DataTable.RowChanging" /> event. If an exception occurs, the row is not added to the table.</para>
1718           <para>Use <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> in conjunction with <see cref="M:System.Data.DataTable.BeginLoadData" /> and <see cref="M:System.Data.DataTable.EndLoadData" />.</para>
1719         </remarks>
1720         <summary>
1721           <attribution license="cc4" from="Microsoft" modified="false" />
1722           <para>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</para>
1723         </summary>
1724         <param name="values">
1725           <attribution license="cc4" from="Microsoft" modified="false" />An array of values used to create the new row. </param>
1726         <param name="fAcceptChanges">
1727           <attribution license="cc4" from="Microsoft" modified="false" />true to accept changes; otherwise false. </param>
1728       </Docs>
1729       <AssemblyInfo>
1730         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1731         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1732       </AssemblyInfo>
1733     </Member>
1734     <Member MemberName="LoadDataRow">
1735       <MemberSignature Language="C#" Value="public System.Data.DataRow LoadDataRow (object[] values, System.Data.LoadOption loadOption);" />
1736       <MemberType>Method</MemberType>
1737       <AssemblyInfo>
1738         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1739       </AssemblyInfo>
1740       <ReturnValue>
1741         <ReturnType>System.Data.DataRow</ReturnType>
1742       </ReturnValue>
1743       <Parameters>
1744         <Parameter Name="values" Type="System.Object[]" />
1745         <Parameter Name="loadOption" Type="System.Data.LoadOption" />
1746       </Parameters>
1747       <Docs>
1748         <returns>To be added.</returns>
1749         <remarks>
1750           <attribution license="cc4" from="Microsoft" modified="false" />
1751           <para>The <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> method takes an array of values and finds the matching value(s) in the primary key column(s).</para>
1752           <para>If a column has a default value, pass a null value in the array to set the default value for that column. Similarly, if a column has its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to true, pass a null value in the array to set the automatically generated value for the row.</para>
1753           <para>The value of the <paramref name="loadOption" /> parameter is used to determine how the values in the array are applied to an existing row. For example, if <paramref name="loadOption" /> is set to OverwriteChanges, the Original and Current values of each column are replaced with the values in the incoming row and the RowState property is set to Unchanged.</para>
1754           <para>Exceptions can also occur during either a <see cref="E:System.Data.DataTable.ColumnChanging" /> or <see cref="E:System.Data.DataTable.RowChanging" /> event. If an exception occurs, the row is not added to the table.</para>
1755           <para>Use <see cref="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)" /> in conjunction with <see cref="M:System.Data.DataTable.BeginLoadData" /> and <see cref="M:System.Data.DataTable.EndLoadData" />.</para>
1756         </remarks>
1757         <summary>
1758           <attribution license="cc4" from="Microsoft" modified="false" />
1759           <para>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</para>
1760         </summary>
1761         <param name="values">
1762           <attribution license="cc4" from="Microsoft" modified="false" />An array of values used to create the new row. </param>
1763         <param name="loadOption">
1764           <attribution license="cc4" from="Microsoft" modified="false" />Used to determine how the array values are applied to the corresponding values in an existing row. </param>
1765       </Docs>
1766     </Member>
1767     <Member MemberName="Locale">
1768       <MemberSignature Language="C#" Value="public System.Globalization.CultureInfo Locale { set; get; }" />
1769       <MemberType>Property</MemberType>
1770       <ReturnValue>
1771         <ReturnType>System.Globalization.CultureInfo</ReturnType>
1772       </ReturnValue>
1773       <Parameters>
1774       </Parameters>
1775       <Docs>
1776         <value>To be added: an object of type 'Globalization.CultureInfo'</value>
1777         <remarks>
1778           <attribution license="cc4" from="Microsoft" modified="false" />
1779           <para>A <see cref="T:System.Globalization.CultureInfo" /> represents the software preferences of a particular culture or community.</para>
1780           <para>When used for string comparisons, the <see cref="T:System.Globalization.CultureInfo" /> affects sorting, comparisons, and filtering.</para>
1781           <block subset="none" type="note">
1782             <para>In columns that contain expressions, the <see cref="F:System.StringComparison.InvariantCulture" /> is used. The <see cref="F:System.StringComparison.CurrentCulture" /> is ignored.</para>
1783           </block>
1784         </remarks>
1785         <summary>
1786           <attribution license="cc4" from="Microsoft" modified="false" />
1787           <para>Gets or sets the locale information used to compare strings within the table.</para>
1788         </summary>
1789       </Docs>
1790       <AssemblyInfo>
1791         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1792         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1793       </AssemblyInfo>
1794     </Member>
1795     <Member MemberName="Merge">
1796       <MemberSignature Language="C#" Value="public void Merge (System.Data.DataTable table);" />
1797       <MemberType>Method</MemberType>
1798       <AssemblyInfo>
1799         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1800       </AssemblyInfo>
1801       <ReturnValue>
1802         <ReturnType>System.Void</ReturnType>
1803       </ReturnValue>
1804       <Parameters>
1805         <Parameter Name="table" Type="System.Data.DataTable" />
1806       </Parameters>
1807       <Docs>
1808         <remarks>
1809           <attribution license="cc4" from="Microsoft" modified="false" />
1810           <para>The Merge method is used to merge two <see cref="T:System.Data.DataTable" /> objects that have largely similar schemas. A merge is typically used on a client application to incorporate the latest changes from a data source into an existing <see cref="T:System.Data.DataTable" />. This allows the client application to have a refreshed <see cref="T:System.Data.DataTable" /> with the latest data from the data source.</para>
1811           <para>The merge operation takes into account only the original table, and the table to be merged. Child tables are not affected or included. If a table has one or more child tables, defined as part of a relationship, each child table must be merged individually. </para>
1812           <para>The Merge method is typically called at the end of a series of procedures that involve validating changes, reconciling errors, updating the data source with the changes, and finally refreshing the existing <see cref="T:System.Data.DataTable" />.</para>
1813           <para>When performing a merge, changes made to the existing data before the merge are preserved by default during the merge operation. Developers can modify this behavior by calling one of the other two overloads for this method, and specifying a false value for the <paramref name="preserveChanges" /> parameter.</para>
1814           <para>In a client application, it is usual to have a single button that the user can click that gathers the changed data and validates it before sending it back to a middle tier component. In this scenario, the <see cref="M:System.Data.DataTable.GetChanges" /> method is first invoked. That method returns a second <see cref="T:System.Data.DataTable" /> optimized for validating and merging. This second <see cref="T:System.Data.DataTable" /> object contains only the <see cref="T:System.Data.DataRow" /> objects that were changed, resulting in a subset of the original <see cref="T:System.Data.DataTable" />. This subset is generally smaller and thus more efficiently passed back to a middle tier component. The middle tier component then updates the original data source with the changes through stored procedures. The middle tier can then send back either a new <see cref="T:System.Data.DataTable" /> that includes original data and the latest data from the data source (by running the original query again), or it can send back the subset with any changes that have been made to it from the data source. (For example, if the data source automatically creates unique primary key values, these values can be propagated back to the client application.) In either case, the returned <see cref="T:System.Data.DataTable" /> can be merged back into the client application's original <see cref="T:System.Data.DataTable" /> with the <see cref="M:System.Data.DataTable.Merge" /> method.</para>
1815           <para>When merging a new source <see cref="T:System.Data.DataTable" /> into the target, any source rows with a <see cref="T:System.Data.DataRowState" /> value of Unchanged, Modified, or Deleted, is matched to target rows with the same primary key values. Source rows with a <see cref="T:System.Data.DataRowState" /> value of Added are matched to new target rows with the same primary key values as the new source rows.</para>
1816         </remarks>
1817         <summary>
1818           <attribution license="cc4" from="Microsoft" modified="false" />
1819           <para>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see cref="T:System.Data.DataTable" />.</para>
1820         </summary>
1821         <param name="table">
1822           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
1823       </Docs>
1824     </Member>
1825     <Member MemberName="Merge">
1826       <MemberSignature Language="C#" Value="public void Merge (System.Data.DataTable table, bool preserveChanges);" />
1827       <MemberType>Method</MemberType>
1828       <AssemblyInfo>
1829         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1830       </AssemblyInfo>
1831       <ReturnValue>
1832         <ReturnType>System.Void</ReturnType>
1833       </ReturnValue>
1834       <Parameters>
1835         <Parameter Name="table" Type="System.Data.DataTable" />
1836         <Parameter Name="preserveChanges" Type="System.Boolean" />
1837       </Parameters>
1838       <Docs>
1839         <remarks>
1840           <attribution license="cc4" from="Microsoft" modified="false" />
1841           <para>The Merge method is used to merge two <see cref="T:System.Data.DataTable" /> objects that have largely similar schemas. A merge is typically used on a client application to incorporate the latest changes from a data source into an existing <see cref="T:System.Data.DataTable" />. This allows the client application to have a refreshed <see cref="T:System.Data.DataTable" /> with the latest data from the data source.</para>
1842           <para>The merge operation takes into account only the original table, and the table to be merged. Child tables are not affected or included. If a table has one or more child tables, defined as part of a relationship, each child table must be merged individually. </para>
1843           <para>The Merge method is typically called at the end of a series of procedures that involve validating changes, reconciling errors, updating the data source with the changes, and finally refreshing the existing <see cref="T:System.Data.DataTable" />.</para>
1844           <para>When performing a merge, changes made to the existing data before the merge are preserved during the merge operation unless the developer specifies false for the <paramref name="preserveChanges" /> parameter. If the <paramref name="preserveChanges" /> parameter is set to true, incoming values do not overwrite existing values in the Current row version of the existing row. If the <paramref name="preserveChanges" /> parameter is set to false, incoming values do overwrite the existing values in the Current row version of the existing row. For more information about row versions, see <format type="text/html"><a href="2e6642c9-bfc6-425c-b3a7-e4912ffa6c1f">Row States and Row Versions</a></format>.</para>
1845           <para>In a client application, it is usual to have a single button that the user can click that gathers the changed data and validates it before sending it back to a middle tier component. In this scenario, the <see cref="M:System.Data.DataTable.GetChanges" /> method is first invoked. That method returns a second <see cref="T:System.Data.DataTable" /> optimized for validating and merging. This second <see cref="T:System.Data.DataTable" /> object contains only the <see cref="T:System.Data.DataTable" /> and <see cref="T:System.Data.DataRow" /> objects that were changed, resulting in a subset of the original <see cref="T:System.Data.DataTable" />. This subset is generally smaller, and thus this subset is more efficiently passed back to a middle tier component. The middle tier component then updates the original data source with the changes through stored procedures. The middle tier can then send back either a new <see cref="T:System.Data.DataTable" /> that includes original data and the latest data from the data source (by running the original query again), or it can send back the subset with any changes that have been made to it from the data source. (For example, if the data source automatically creates unique primary key values, these values can be propagated back to the client application.) In either case, the returned <see cref="T:System.Data.DataTable" /> can be merged back into the client application's original <see cref="T:System.Data.DataTable" /> with the <see cref="M:System.Data.DataTable.Merge" /> method.</para>
1846           <para>When merging a new source <see cref="T:System.Data.DataTable" /> into the target, any source rows with a <see cref="T:System.Data.DataRowState" /> value of Unchanged, Modified, or Deleted are matched to target rows with the same primary key values. Source rows with a <see cref="T:System.Data.DataRowState" /> value of Added are matched to new target rows with the same primary key values as the new source rows.</para>
1847         </remarks>
1848         <summary>
1849           <attribution license="cc4" from="Microsoft" modified="false" />
1850           <para>Merge the specified <see cref="T:System.Data.DataTable" /> with the current DataTable, indicating whether to preserve changes in the current DataTable.</para>
1851         </summary>
1852         <param name="table">
1853           <attribution license="cc4" from="Microsoft" modified="false" />The DataTable to be merged with the current DataTable.</param>
1854         <param name="preserveChanges">
1855           <attribution license="cc4" from="Microsoft" modified="false" />true, to preserve changes in the current DataTable; otherwise false. </param>
1856       </Docs>
1857     </Member>
1858     <Member MemberName="Merge">
1859       <MemberSignature Language="C#" Value="public void Merge (System.Data.DataTable table, bool preserveChanges, System.Data.MissingSchemaAction missingSchemaAction);" />
1860       <MemberType>Method</MemberType>
1861       <AssemblyInfo>
1862         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1863       </AssemblyInfo>
1864       <ReturnValue>
1865         <ReturnType>System.Void</ReturnType>
1866       </ReturnValue>
1867       <Parameters>
1868         <Parameter Name="table" Type="System.Data.DataTable" />
1869         <Parameter Name="preserveChanges" Type="System.Boolean" />
1870         <Parameter Name="missingSchemaAction" Type="System.Data.MissingSchemaAction" />
1871       </Parameters>
1872       <Docs>
1873         <remarks>
1874           <attribution license="cc4" from="Microsoft" modified="false" />
1875           <para>The Merge method is used to merge two <see cref="T:System.Data.DataTable" /> objects that have largely similar schemas. A merge is typically used on a client application to incorporate the latest changes from a data source into an existing <see cref="T:System.Data.DataTable" />. This allows the client application to have a refreshed <see cref="T:System.Data.DataTable" /> with the latest data from the data source.</para>
1876           <para>The merge operation takes into account only the original table, and the table to be merged. Child tables are not affected or included. If a table has one or more child tables, defined as part of a relationship, each child table must be merged individually. </para>
1877           <para>The Merge method is typically called at the end of a series of procedures that involve validating changes, reconciling errors, updating the data source with the changes, and finally refreshing the existing <see cref="T:System.Data.DataTable" />.</para>
1878           <para>When performing a merge, changes made to the existing data before the merge are preserved during the merge operation unless the developer specifies false for the <paramref name="preserveChanges" /> parameter. If the <paramref name="preserveChanges" /> parameter is set to true, incoming values do not overwrite existing values in the Current row version of the existing row. If the <paramref name="preserveChanges" /> parameter is set to false, incoming values do overwrite the existing values in the Current row version of the existing row. For more information about row versions, see <format type="text/html"><a href="2e6642c9-bfc6-425c-b3a7-e4912ffa6c1f">Row States and Row Versions</a></format>.</para>
1879           <para>In a client application, it is usual to have a single button that the user can click that gathers the changed data and validates it before sending it back to a middle tier component. In this scenario, the <see cref="M:System.Data.DataTable.GetChanges" /> method is first invoked. That method returns a second <see cref="T:System.Data.DataTable" /> optimized for validating and merging. This second <see cref="T:System.Data.DataTable" /> object contains only the <see cref="T:System.Data.DataTable" /> and <see cref="T:System.Data.DataRow" /> objects that were changed, resulting in a subset of the original <see cref="T:System.Data.DataTable" />. This subset is generally smaller, and thus this subset is more efficiently passed back to a middle tier component. The middle tier component then updates the original data source with the changes through stored procedures. The middle tier can then send back either a new <see cref="T:System.Data.DataTable" /> that includes original data and the latest data from the data source (by running the original query again), or it can send back the subset with any changes that have been made to it from the data source. (For example, if the data source automatically creates unique primary key values, these values can be propagated back to the client application.) In either case, the returned <see cref="T:System.Data.DataTable" /> can be merged back into the client application's original <see cref="T:System.Data.DataTable" /> with the <see cref="M:System.Data.DataTable.Merge" /> method.</para>
1880           <para>When the <see cref="M:System.Data.DataTable.Merge" /> method is called, the schemas of the two <see cref="T:System.Data.DataTable" /> objects are compared, because it is possible that the schemas may have been changed. For example, in a business-to-business scenario, new columns may have been added to an XML schema by an automated process. If the source <see cref="T:System.Data.DataTable" /> contains schema elements (added <see cref="T:System.Data.DataColumn" /> objects) that are missing in the target, the schema elements can be added to the target by setting the <paramref name="missingSchemaAction" /> argument to MissingSchemaAction.Add. In that case, the merged <see cref="T:System.Data.DataTable" /> contains the added schema and data.</para>
1881           <para>After merging schemas, the data is merged.</para>
1882           <para>When merging a new source <see cref="T:System.Data.DataTable" /> into the target, any source rows with a <see cref="T:System.Data.DataRowState" /> value of Unchanged, Modified, or Deleted are matched to target rows with the same primary key values. Source rows with a <see cref="T:System.Data.DataRowState" /> value of Added are matched to new target rows with the same primary key values as the new source rows.</para>
1883         </remarks>
1884         <summary>
1885           <attribution license="cc4" from="Microsoft" modified="false" />
1886           <para>Merge the specified <see cref="T:System.Data.DataTable" /> with the current DataTable, indicating whether to preserve changes and how to handle missing schema in the current DataTable.</para>
1887         </summary>
1888         <param name="table">
1889           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
1890         <param name="preserveChanges">
1891           <attribution license="cc4" from="Microsoft" modified="false" />true, to preserve changes in the current <see cref="T:System.Data.DataTable" />; otherwise false.</param>
1892         <param name="missingSchemaAction">
1893           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.MissingSchemaAction" /> values. </param>
1894       </Docs>
1895     </Member>
1896     <Member MemberName="MinimumCapacity">
1897       <MemberSignature Language="C#" Value="public int MinimumCapacity { set; get; }" />
1898       <MemberType>Property</MemberType>
1899       <ReturnValue>
1900         <ReturnType>System.Int32</ReturnType>
1901       </ReturnValue>
1902       <Parameters>
1903       </Parameters>
1904       <Docs>
1905         <value>To be added: an object of type 'int'</value>
1906         <remarks>
1907           <attribution license="cc4" from="Microsoft" modified="false" />
1908           <para>The <see cref="P:System.Data.DataTable.MinimumCapacity" /> allows the system to create an appropriate set of resources before fetching data. In a situation when performance is critical, setting this property can optimize performance.</para>
1909         </remarks>
1910         <summary>
1911           <attribution license="cc4" from="Microsoft" modified="false" />
1912           <para>Gets or sets the initial starting size for this table.</para>
1913         </summary>
1914       </Docs>
1915       <AssemblyInfo>
1916         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1917         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1918       </AssemblyInfo>
1919       <Attributes>
1920         <Attribute>
1921           <AttributeName>System.ComponentModel.DefaultValue(50)</AttributeName>
1922         </Attribute>
1923       </Attributes>
1924     </Member>
1925     <Member MemberName="Namespace">
1926       <MemberSignature Language="C#" Value="public string Namespace { set; get; }" />
1927       <MemberType>Property</MemberType>
1928       <ReturnValue>
1929         <ReturnType>System.String</ReturnType>
1930       </ReturnValue>
1931       <Parameters>
1932       </Parameters>
1933       <Docs>
1934         <value>To be added: an object of type 'string'</value>
1935         <remarks>To be added</remarks>
1936         <summary>
1937           <attribution license="cc4" from="Microsoft" modified="false" />
1938           <para>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</para>
1939         </summary>
1940       </Docs>
1941       <AssemblyInfo>
1942         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1943         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1944       </AssemblyInfo>
1945     </Member>
1946     <Member MemberName="NewRow">
1947       <MemberSignature Language="C#" Value="public System.Data.DataRow NewRow ();" />
1948       <MemberType>Method</MemberType>
1949       <ReturnValue>
1950         <ReturnType>System.Data.DataRow</ReturnType>
1951       </ReturnValue>
1952       <Parameters />
1953       <Docs>
1954         <returns>To be added: an object of type 'DataRow'</returns>
1955         <remarks>
1956           <attribution license="cc4" from="Microsoft" modified="false" />
1957           <para>You must use the <see cref="M:System.Data.DataTable.NewRow" /> method to create new <see cref="T:System.Data.DataRow" /> objects with the same schema as the <see cref="T:System.Data.DataTable" />. After creating a <see cref="T:System.Data.DataRow" />, you can add it to the <see cref="T:System.Data.DataRowCollection" />, through the <see cref="T:System.Data.DataTable" /> object's <see cref="P:System.Data.DataTable.Rows" /> property. When you use <see cref="M:System.Data.DataTable.NewRow" /> to create new rows, the rows must be added to or deleted from the data table before you call <see cref="M:System.Data.DataTable.Clear" />.</para>
1958         </remarks>
1959         <summary>
1960           <attribution license="cc4" from="Microsoft" modified="false" />
1961           <para>Creates a new <see cref="T:System.Data.DataRow" /> with the same schema as the table.</para>
1962         </summary>
1963       </Docs>
1964       <AssemblyInfo>
1965         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1966         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1967       </AssemblyInfo>
1968     </Member>
1969     <Member MemberName="NewRowArray">
1970       <MemberSignature Language="C#" Value="protected System.Data.DataRow[] NewRowArray (int size);" />
1971       <MemberType>Method</MemberType>
1972       <AssemblyInfo>
1973         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1974         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1975       </AssemblyInfo>
1976       <ReturnValue>
1977         <ReturnType>System.Data.DataRow[]</ReturnType>
1978       </ReturnValue>
1979       <Parameters>
1980         <Parameter Name="size" Type="System.Int32" />
1981       </Parameters>
1982       <Docs>
1983         <returns>To be added.</returns>
1984         <remarks>To be added.</remarks>
1985         <summary>
1986           <attribution license="cc4" from="Microsoft" modified="false" />
1987           <para>Returns an array of <see cref="T:System.Data.DataRow" />.</para>
1988         </summary>
1989         <param name="size">
1990           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Int32" /> value that describes the size of the array.</param>
1991       </Docs>
1992     </Member>
1993     <Member MemberName="NewRowFromBuilder">
1994       <MemberSignature Language="C#" Value="protected virtual System.Data.DataRow NewRowFromBuilder (System.Data.DataRowBuilder builder);" />
1995       <MemberType>Method</MemberType>
1996       <ReturnValue>
1997         <ReturnType>System.Data.DataRow</ReturnType>
1998       </ReturnValue>
1999       <Parameters>
2000         <Parameter Name="builder" Type="System.Data.DataRowBuilder" />
2001       </Parameters>
2002       <Docs>
2003         <returns>To be added: an object of type 'DataRow'</returns>
2004         <remarks>To be added</remarks>
2005         <summary>
2006           <attribution license="cc4" from="Microsoft" modified="false" />
2007           <para>Creates a new row from an existing row.</para>
2008         </summary>
2009         <param name="builder">
2010           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataRowBuilder" /> object. </param>
2011       </Docs>
2012       <AssemblyInfo>
2013         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2014         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2015       </AssemblyInfo>
2016     </Member>
2017     <Member MemberName="OnColumnChanged">
2018       <MemberSignature Language="C#" Value="protected virtual void OnColumnChanged (System.Data.DataColumnChangeEventArgs e);" />
2019       <MemberType>Method</MemberType>
2020       <ReturnValue>
2021         <ReturnType>System.Void</ReturnType>
2022       </ReturnValue>
2023       <Parameters>
2024         <Parameter Name="e" Type="System.Data.DataColumnChangeEventArgs" />
2025       </Parameters>
2026       <Docs>
2027         <remarks>
2028           <attribution license="cc4" from="Microsoft" modified="false" />
2029           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2030         </remarks>
2031         <summary>
2032           <attribution license="cc4" from="Microsoft" modified="false" />
2033           <para>Raises the <see cref="E:System.Data.DataTable.ColumnChanged" /> event.</para>
2034         </summary>
2035         <param name="e">
2036           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data. </param>
2037       </Docs>
2038       <AssemblyInfo>
2039         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2040         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2041       </AssemblyInfo>
2042     </Member>
2043     <Member MemberName="OnColumnChanging">
2044       <MemberSignature Language="C#" Value="protected virtual void OnColumnChanging (System.Data.DataColumnChangeEventArgs e);" />
2045       <MemberType>Method</MemberType>
2046       <ReturnValue>
2047         <ReturnType>System.Void</ReturnType>
2048       </ReturnValue>
2049       <Parameters>
2050         <Parameter Name="e" Type="System.Data.DataColumnChangeEventArgs" />
2051       </Parameters>
2052       <Docs>
2053         <remarks>
2054           <attribution license="cc4" from="Microsoft" modified="false" />
2055           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2056         </remarks>
2057         <summary>
2058           <attribution license="cc4" from="Microsoft" modified="false" />
2059           <para>Raises the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</para>
2060         </summary>
2061         <param name="e">
2062           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data. </param>
2063       </Docs>
2064       <AssemblyInfo>
2065         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2066         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2067       </AssemblyInfo>
2068     </Member>
2069     <Member MemberName="OnPropertyChanging">
2070       <MemberSignature Language="C#" Value="protected virtual void OnPropertyChanging (System.ComponentModel.PropertyChangedEventArgs pcevent);" />
2071       <MemberType>Method</MemberType>
2072       <AssemblyInfo>
2073         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2074         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2075       </AssemblyInfo>
2076       <ReturnValue>
2077         <ReturnType>System.Void</ReturnType>
2078       </ReturnValue>
2079       <Parameters>
2080         <Parameter Name="pcevent" Type="System.ComponentModel.PropertyChangedEventArgs" />
2081       </Parameters>
2082       <Docs>
2083         <remarks>
2084           <attribution license="cc4" from="Microsoft" modified="false" />
2085           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2086         </remarks>
2087         <summary>
2088           <attribution license="cc4" from="Microsoft" modified="false" />
2089           <para>Raises the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> event.</para>
2090         </summary>
2091         <param name="pcevent">
2092           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data. </param>
2093       </Docs>
2094     </Member>
2095     <Member MemberName="OnRemoveColumn">
2096       <MemberSignature Language="C#" Value="protected virtual void OnRemoveColumn (System.Data.DataColumn column);" />
2097       <MemberType>Method</MemberType>
2098       <AssemblyInfo>
2099         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2100         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2101       </AssemblyInfo>
2102       <ReturnValue>
2103         <ReturnType>System.Void</ReturnType>
2104       </ReturnValue>
2105       <Parameters>
2106         <Parameter Name="column" Type="System.Data.DataColumn" />
2107       </Parameters>
2108       <Docs>
2109         <remarks>
2110           <attribution license="cc4" from="Microsoft" modified="false" />
2111           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2112         </remarks>
2113         <summary>
2114           <attribution license="cc4" from="Microsoft" modified="false" />
2115           <para>Notifies the <see cref="T:System.Data.DataTable" /> that a <see cref="T:System.Data.DataColumn" /> is being removed.</para>
2116         </summary>
2117         <param name="column">
2118           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataColumn" /> being removed. </param>
2119       </Docs>
2120     </Member>
2121     <Member MemberName="OnRowChanged">
2122       <MemberSignature Language="C#" Value="protected virtual void OnRowChanged (System.Data.DataRowChangeEventArgs e);" />
2123       <MemberType>Method</MemberType>
2124       <ReturnValue>
2125         <ReturnType>System.Void</ReturnType>
2126       </ReturnValue>
2127       <Parameters>
2128         <Parameter Name="e" Type="System.Data.DataRowChangeEventArgs" />
2129       </Parameters>
2130       <Docs>
2131         <remarks>
2132           <attribution license="cc4" from="Microsoft" modified="false" />
2133           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2134         </remarks>
2135         <summary>
2136           <attribution license="cc4" from="Microsoft" modified="false" />
2137           <para>Raises the <see cref="E:System.Data.DataTable.RowChanged" /> event.</para>
2138         </summary>
2139         <param name="e">
2140           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data. </param>
2141       </Docs>
2142       <AssemblyInfo>
2143         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2144         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2145       </AssemblyInfo>
2146     </Member>
2147     <Member MemberName="OnRowChanging">
2148       <MemberSignature Language="C#" Value="protected virtual void OnRowChanging (System.Data.DataRowChangeEventArgs e);" />
2149       <MemberType>Method</MemberType>
2150       <ReturnValue>
2151         <ReturnType>System.Void</ReturnType>
2152       </ReturnValue>
2153       <Parameters>
2154         <Parameter Name="e" Type="System.Data.DataRowChangeEventArgs" />
2155       </Parameters>
2156       <Docs>
2157         <remarks>
2158           <attribution license="cc4" from="Microsoft" modified="false" />
2159           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2160         </remarks>
2161         <summary>
2162           <attribution license="cc4" from="Microsoft" modified="false" />
2163           <para>Raises the <see cref="E:System.Data.DataTable.RowChanging" /> event.</para>
2164         </summary>
2165         <param name="e">
2166           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data. </param>
2167       </Docs>
2168       <AssemblyInfo>
2169         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2170         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2171       </AssemblyInfo>
2172     </Member>
2173     <Member MemberName="OnRowDeleted">
2174       <MemberSignature Language="C#" Value="protected virtual void OnRowDeleted (System.Data.DataRowChangeEventArgs e);" />
2175       <MemberType>Method</MemberType>
2176       <ReturnValue>
2177         <ReturnType>System.Void</ReturnType>
2178       </ReturnValue>
2179       <Parameters>
2180         <Parameter Name="e" Type="System.Data.DataRowChangeEventArgs" />
2181       </Parameters>
2182       <Docs>
2183         <remarks>
2184           <attribution license="cc4" from="Microsoft" modified="false" />
2185           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2186         </remarks>
2187         <summary>
2188           <attribution license="cc4" from="Microsoft" modified="false" />
2189           <para>Raises the <see cref="E:System.Data.DataTable.RowDeleted" /> event.</para>
2190         </summary>
2191         <param name="e">
2192           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data. </param>
2193       </Docs>
2194       <AssemblyInfo>
2195         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2196         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2197       </AssemblyInfo>
2198     </Member>
2199     <Member MemberName="OnRowDeleting">
2200       <MemberSignature Language="C#" Value="protected virtual void OnRowDeleting (System.Data.DataRowChangeEventArgs e);" />
2201       <MemberType>Method</MemberType>
2202       <ReturnValue>
2203         <ReturnType>System.Void</ReturnType>
2204       </ReturnValue>
2205       <Parameters>
2206         <Parameter Name="e" Type="System.Data.DataRowChangeEventArgs" />
2207       </Parameters>
2208       <Docs>
2209         <remarks>
2210           <attribution license="cc4" from="Microsoft" modified="false" />
2211           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2212         </remarks>
2213         <summary>
2214           <attribution license="cc4" from="Microsoft" modified="false" />
2215           <para>Raises the <see cref="E:System.Data.DataTable.RowDeleting" /> event.</para>
2216         </summary>
2217         <param name="e">
2218           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data. </param>
2219       </Docs>
2220       <AssemblyInfo>
2221         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2222         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2223       </AssemblyInfo>
2224     </Member>
2225     <Member MemberName="OnTableCleared">
2226       <MemberSignature Language="C#" Value="protected virtual void OnTableCleared (System.Data.DataTableClearEventArgs e);" />
2227       <MemberType>Method</MemberType>
2228       <AssemblyInfo>
2229         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2230       </AssemblyInfo>
2231       <ReturnValue>
2232         <ReturnType>System.Void</ReturnType>
2233       </ReturnValue>
2234       <Parameters>
2235         <Parameter Name="e" Type="System.Data.DataTableClearEventArgs" />
2236       </Parameters>
2237       <Docs>
2238         <remarks>
2239           <attribution license="cc4" from="Microsoft" modified="false" />
2240           <para>Raises the <see cref="E:System.Data.DataTable.TableCleared" /> event, which is fired immediately after all rows have been successfully cleared but before the <see cref="M:System.Data.DataTable.Clear" /> method returns control back to the caller.</para>
2241           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2242         </remarks>
2243         <summary>
2244           <attribution license="cc4" from="Microsoft" modified="false" />
2245           <para>Raises the <see cref="E:System.Data.DataTable.TableCleared" /> event.</para>
2246         </summary>
2247         <param name="e">
2248           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data. </param>
2249       </Docs>
2250     </Member>
2251     <Member MemberName="OnTableClearing">
2252       <MemberSignature Language="C#" Value="protected virtual void OnTableClearing (System.Data.DataTableClearEventArgs e);" />
2253       <MemberType>Method</MemberType>
2254       <AssemblyInfo>
2255         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2256       </AssemblyInfo>
2257       <ReturnValue>
2258         <ReturnType>System.Void</ReturnType>
2259       </ReturnValue>
2260       <Parameters>
2261         <Parameter Name="e" Type="System.Data.DataTableClearEventArgs" />
2262       </Parameters>
2263       <Docs>
2264         <remarks>
2265           <attribution license="cc4" from="Microsoft" modified="false" />
2266           <para>Raises the <see cref="E:System.Data.DataTable.TableClearing" /> event, which is fired before processing of the <see cref="M:System.Data.DataTable.Clear" /> operation begins.</para>
2267           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2268         </remarks>
2269         <summary>
2270           <attribution license="cc4" from="Microsoft" modified="false" />
2271           <para>Raises the <see cref="E:System.Data.DataTable.TableClearing" /> event.</para>
2272         </summary>
2273         <param name="e">
2274           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data. </param>
2275       </Docs>
2276     </Member>
2277     <Member MemberName="OnTableNewRow">
2278       <MemberSignature Language="C#" Value="protected virtual void OnTableNewRow (System.Data.DataTableNewRowEventArgs e);" />
2279       <MemberType>Method</MemberType>
2280       <AssemblyInfo>
2281         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2282       </AssemblyInfo>
2283       <ReturnValue>
2284         <ReturnType>System.Void</ReturnType>
2285       </ReturnValue>
2286       <Parameters>
2287         <Parameter Name="e" Type="System.Data.DataTableNewRowEventArgs" />
2288       </Parameters>
2289       <Docs>
2290         <remarks>
2291           <attribution license="cc4" from="Microsoft" modified="false" />
2292           <para>Raises the <see cref="E:System.Data.DataTable.TableNewRow" /> event, which fires after a new <see cref="T:System.Data.DataRow" /> has been created using <see cref="M:System.Data.DataTable.NewRow" />. </para>
2293           <para>Raising an event invokes the event handler through a delegate. For an overview, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
2294         </remarks>
2295         <summary>
2296           <attribution license="cc4" from="Microsoft" modified="false" />
2297           <para>Raises the <see cref="E:System.Data.DataTable.TableNewRow" /> event.</para>
2298         </summary>
2299         <param name="e">
2300           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data. </param>
2301       </Docs>
2302     </Member>
2303     <Member MemberName="ParentRelations">
2304       <MemberSignature Language="C#" Value="public System.Data.DataRelationCollection ParentRelations { get; }" />
2305       <MemberType>Property</MemberType>
2306       <ReturnValue>
2307         <ReturnType>System.Data.DataRelationCollection</ReturnType>
2308       </ReturnValue>
2309       <Docs>
2310         <value>To be added: an object of type 'DataRelationCollection'</value>
2311         <remarks>To be added</remarks>
2312         <summary>
2313           <attribution license="cc4" from="Microsoft" modified="false" />
2314           <para>Gets the collection of parent relations for this <see cref="T:System.Data.DataTable" />.</para>
2315         </summary>
2316       </Docs>
2317       <AssemblyInfo>
2318         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2319         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2320       </AssemblyInfo>
2321       <Attributes>
2322         <Attribute>
2323           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
2324         </Attribute>
2325         <Attribute>
2326           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2327         </Attribute>
2328       </Attributes>
2329     </Member>
2330     <Member MemberName="Prefix">
2331       <MemberSignature Language="C#" Value="public string Prefix { set; get; }" />
2332       <MemberType>Property</MemberType>
2333       <ReturnValue>
2334         <ReturnType>System.String</ReturnType>
2335       </ReturnValue>
2336       <Parameters>
2337       </Parameters>
2338       <Docs>
2339         <value>To be added: an object of type 'string'</value>
2340         <remarks>To be added</remarks>
2341         <summary>
2342           <attribution license="cc4" from="Microsoft" modified="false" />
2343           <para>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</para>
2344         </summary>
2345       </Docs>
2346       <AssemblyInfo>
2347         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2348         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2349       </AssemblyInfo>
2350       <Attributes>
2351         <Attribute>
2352           <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
2353         </Attribute>
2354       </Attributes>
2355     </Member>
2356     <Member MemberName="PrimaryKey">
2357       <MemberSignature Language="C#" Value="public System.Data.DataColumn[] PrimaryKey { set; get; }" />
2358       <MemberType>Property</MemberType>
2359       <ReturnValue>
2360         <ReturnType>System.Data.DataColumn[]</ReturnType>
2361       </ReturnValue>
2362       <Parameters>
2363       </Parameters>
2364       <Docs>
2365         <value>To be added: an object of type 'DataColumn []'</value>
2366         <remarks>
2367           <attribution license="cc4" from="Microsoft" modified="false" />
2368           <para>The primary key of a table must be unique to identify the record in the table. It's also possible to have a table with a primary key made up of two or more columns. This occurs when a single column can't contain enough unique values. For example, a two column primary key might consist of a "FirstName" and "LastName" column. Because primary keys can be made up of more than one column, the <see cref="P:System.Data.DataTable.PrimaryKey" /> property consists of an array of <see cref="T:System.Data.DataColumn" /> objects.</para>
2369         </remarks>
2370         <summary>
2371           <attribution license="cc4" from="Microsoft" modified="false" />
2372           <para>Gets or sets an array of columns that function as primary keys for the data table.</para>
2373         </summary>
2374       </Docs>
2375       <AssemblyInfo>
2376         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2377         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2378       </AssemblyInfo>
2379       <Attributes>
2380         <Attribute>
2381           <AttributeName>System.ComponentModel.TypeConverter("System.Data.PrimaryKeyTypeConverter, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")</AttributeName>
2382         </Attribute>
2383         <Attribute>
2384           <AttributeName>System.ComponentModel.Editor("Microsoft.VSDesigner.Data.Design.PrimaryKeyEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
2385         </Attribute>
2386       </Attributes>
2387     </Member>
2388     <Member MemberName="ReadXml">
2389       <MemberSignature Language="C#" Value="public System.Data.XmlReadMode ReadXml (System.IO.Stream stream);" />
2390       <MemberType>Method</MemberType>
2391       <AssemblyInfo>
2392         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2393       </AssemblyInfo>
2394       <ReturnValue>
2395         <ReturnType>System.Data.XmlReadMode</ReturnType>
2396       </ReturnValue>
2397       <Parameters>
2398         <Parameter Name="stream" Type="System.IO.Stream" />
2399       </Parameters>
2400       <Docs>
2401         <returns>To be added.</returns>
2402         <remarks>
2403           <attribution license="cc4" from="Microsoft" modified="false" />
2404           <para>The current <see cref="T:System.Data.DataTable" /> and its descendents are loaded with the data from the supplied <see cref="T:System.IO.Stream" />. The behavior of this method is identical to that of the <see cref="M:System.Data.DataSet.ReadXml(System.IO.Stream)" /> method, except that in this case, data is loaded only for the current table and its descendants.</para>
2405           <para>The <see cref="M:System.Data.DataTable.ReadXml(System.IO.Stream)" /> method provides a way to read either data only, or both data and schema into a <see cref="T:System.Data.DataTable" /> from an XML document, whereas the <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> method reads only the schema. </para>
2406           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.WriteXml" /> and <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> methods, respectively. To write XML data, or both schema and data from the DataTable, use the WriteXml method. To write just the schema, use the WriteXmlSchema method.</para>
2407           <block subset="none" type="note">
2408             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
2409           </block>
2410           <para>If an in-line schema is specified, the in-line schema is used to extend the existing relational structure prior to loading the data. If there are any conflicts (for example, the same column in the same table defined with different data types) an exception is raised.</para>
2411           <para>If no in-line schema is specified, the relational structure is extended through inference, as necessary, according to the structure of the XML document. If the schema cannot be extended through inference in order to expose all data, an exception is raised.</para>
2412           <block subset="none" type="note">
2413             <para>The DataSet does not associate an XML element with its corresponding DataColumn or DataTable when legal XML characters like ("_") are escaped in the serialized XML. The DataSet itself only escapes illegal XML characters in XML element names and hence can only consume the same. When legal characters in XML element name are escaped, the element is ignored while processing.</para>
2414           </block>
2415         </remarks>
2416         <summary>
2417           <attribution license="cc4" from="Microsoft" modified="false" />
2418           <para>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.Stream" />.</para>
2419         </summary>
2420         <param name="stream">
2421           <attribution license="cc4" from="Microsoft" modified="false" />An object that derives from <see cref="T:System.IO.Stream" /></param>
2422       </Docs>
2423     </Member>
2424     <Member MemberName="ReadXml">
2425       <MemberSignature Language="C#" Value="public System.Data.XmlReadMode ReadXml (System.IO.TextReader reader);" />
2426       <MemberType>Method</MemberType>
2427       <AssemblyInfo>
2428         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2429       </AssemblyInfo>
2430       <ReturnValue>
2431         <ReturnType>System.Data.XmlReadMode</ReturnType>
2432       </ReturnValue>
2433       <Parameters>
2434         <Parameter Name="reader" Type="System.IO.TextReader" />
2435       </Parameters>
2436       <Docs>
2437         <returns>To be added.</returns>
2438         <remarks>
2439           <attribution license="cc4" from="Microsoft" modified="false" />
2440           <para>The current <see cref="T:System.Data.DataTable" /> and its descendents are loaded with the data from the supplied <see cref="T:System.IO.TextReader" />. The behavior of this method is identical to that of the <see cref="M:System.Data.DataSet.ReadXml(System.IO.TextReader)" /> method, except that in this case, data is loaded only for the current table and its descendants.</para>
2441           <para>The <see cref="M:System.Data.DataTable.ReadXml(System.IO.TextReader)" /> method provides a way to read either data only, or both data and schema into a <see cref="T:System.Data.DataTable" /> from an XML document, whereas the <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> method reads only the schema.</para>
2442           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.WriteXml" /> and <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> methods, respectively. To write XML data, or both schema and data from the DataTable, use the WriteXml method. To write just the schema, use the WriteXmlSchema method.</para>
2443           <block subset="none" type="note">
2444             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
2445           </block>
2446           <para>If an in-line schema is specified, the in-line schema is used to extend the existing relational structure prior to loading the data. If there are any conflicts (for example, the same column in the same table defined with different data types) an exception is raised.</para>
2447           <para>If no in-line schema is specified, the relational structure is extended through inference, as necessary, according to the structure of the XML document. If the schema cannot be extended through inference in order to expose all data, an exception is raised.</para>
2448           <block subset="none" type="note">
2449             <para>The DataSet does not associate an XML element with its corresponding DataColumn or DataTable when legal XML characters like ("_") are escaped in the serialized XML. The DataSet itself only escapes illegal XML characters in XML element names and hence can only consume the same. When legal characters in XML element name are escaped, the element is ignored while processing.</para>
2450           </block>
2451         </remarks>
2452         <summary>
2453           <attribution license="cc4" from="Microsoft" modified="false" />
2454           <para>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</para>
2455         </summary>
2456         <param name="reader">
2457           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextReader" /> that will be used to read the data.</param>
2458       </Docs>
2459     </Member>
2460     <Member MemberName="ReadXml">
2461       <MemberSignature Language="C#" Value="public System.Data.XmlReadMode ReadXml (string fileName);" />
2462       <MemberType>Method</MemberType>
2463       <AssemblyInfo>
2464         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2465       </AssemblyInfo>
2466       <ReturnValue>
2467         <ReturnType>System.Data.XmlReadMode</ReturnType>
2468       </ReturnValue>
2469       <Parameters>
2470         <Parameter Name="fileName" Type="System.String" />
2471       </Parameters>
2472       <Docs>
2473         <returns>To be added.</returns>
2474         <remarks>
2475           <attribution license="cc4" from="Microsoft" modified="false" />
2476           <para>The current <see cref="T:System.Data.DataTable" /> and its descendents are loaded with the data from the file named in the supplied <see cref="T:System.String" />. The behavior of this method is identical to that of the <see cref="M:System.Data.DataSet.ReadXml(System.String)" /> method, except that in this case, data is loaded only for the current table and its descendants.</para>
2477           <para>The <see cref="M:System.Data.DataTable.ReadXml(System.String)" /> method provides a way to read either data only, or both data and schema into a <see cref="T:System.Data.DataTable" /> from an XML document, whereas the <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> method reads only the schema.</para>
2478           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.WriteXml" /> and <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> methods, respectively. To write XML data, or both schema and data from the DataTable, use the WriteXml method. To write just the schema, use the WriteXmlSchema method.</para>
2479           <block subset="none" type="note">
2480             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
2481           </block>
2482           <para>If an in-line schema is specified, the in-line schema is used to extend the existing relational structure prior to loading the data. If there are any conflicts (for example, the same column in the same table defined with different data types) an exception is raised.</para>
2483           <para>If no in-line schema is specified, the relational structure is extended through inference, as necessary, according to the structure of the XML document. If the schema cannot be extended through inference in order to expose all data, an exception is raised.</para>
2484           <block subset="none" type="note">
2485             <para>The DataSet does not associate an XML element with its corresponding DataColumn or DataTable when legal XML characters like ("_") are escaped in the serialized XML. The DataSet itself only escapes illegal XML characters in XML element names and hence can only consume the same. When legal characters in XML element name are escaped, the element is ignored while processing.</para>
2486           </block>
2487           <code>using System.Data;
2488 public class A {
2489    static void Main(string[] args) {
2490       DataTable tabl = new DataTable("mytable");
2491       tabl.Columns.Add(new DataColumn("id", typeof(int)));
2492       for (int i = 0; i &lt; 10; i++) {
2493          DataRow row = tabl.NewRow();
2494          row["id"] = i;
2495          tabl.Rows.Add(row);
2496       }
2497       tabl.WriteXml("f.xml", XmlWriteMode.WriteSchema);
2498       DataTable newt = new DataTable();
2499       newt.ReadXml("f.xml");
2500    }
2501 }</code>
2502         </remarks>
2503         <summary>
2504           <attribution license="cc4" from="Microsoft" modified="false" />
2505           <para>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> from the specified file.</para>
2506         </summary>
2507         <param name="fileName">
2508           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file from which to read the data. </param>
2509       </Docs>
2510     </Member>
2511     <Member MemberName="ReadXml">
2512       <MemberSignature Language="C#" Value="public System.Data.XmlReadMode ReadXml (System.Xml.XmlReader reader);" />
2513       <MemberType>Method</MemberType>
2514       <AssemblyInfo>
2515         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2516       </AssemblyInfo>
2517       <ReturnValue>
2518         <ReturnType>System.Data.XmlReadMode</ReturnType>
2519       </ReturnValue>
2520       <Parameters>
2521         <Parameter Name="reader" Type="System.Xml.XmlReader" />
2522       </Parameters>
2523       <Docs>
2524         <returns>To be added.</returns>
2525         <remarks>
2526           <attribution license="cc4" from="Microsoft" modified="false" />
2527           <para>The current <see cref="T:System.Data.DataTable" /> and its descendents are loaded with the data from the file named in the supplied <see cref="T:System.Xml.XmlReader" />. The behavior of this method is identical to that of the <see cref="M:System.Data.DataTable.ReadXml(System.Xml.XmlReader)" /> method, except that in this case, data is loaded only for the current table and its descendants.</para>
2528           <para>The <see cref="M:System.Data.DataTable.ReadXml(System.Xml.XmlReader)" /> method provides a way to read either data only, or both data and schema into a <see cref="T:System.Data.DataTable" /> from an XML document, whereas the <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> method reads only the schema.</para>
2529           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.WriteXml" /> and <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> methods, respectively. To write XML data, or both schema and data from the DataTable, use the WriteXml method. To write just the schema, use the WriteXmlSchema method.</para>
2530           <block subset="none" type="note">
2531             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
2532           </block>
2533           <para>If an in-line schema is specified, the in-line schema is used to extend the existing relational structure prior to loading the data. If there are any conflicts (for example, the same column in the same table defined with different data types) an exception is raised.</para>
2534           <para>If no in-line schema is specified, the relational structure is extended through inference, as necessary, according to the structure of the XML document. If the schema cannot be extended through inference in order to expose all data, an exception is raised.</para>
2535           <block subset="none" type="note">
2536             <para>The DataSet does not associate an XML element with its corresponding DataColumn or DataTable when legal XML characters like ("_") are escaped in the serialized XML. The DataSet itself only escapes illegal XML characters in XML element names and hence can only consume the same. When legal characters in XML element name are escaped, the element is ignored while processing.</para>
2537           </block>
2538         </remarks>
2539         <summary>
2540           <attribution license="cc4" from="Microsoft" modified="false" />
2541           <para>Reads XML Schema and Data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />. </para>
2542         </summary>
2543         <param name="reader">
2544           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> that will be used to read the data. </param>
2545       </Docs>
2546     </Member>
2547     <Member MemberName="ReadXml_internal">
2548       <MemberSignature Language="C#" Value="public System.Data.XmlReadMode ReadXml_internal (System.Xml.XmlReader reader, bool serializable);" />
2549       <MemberType>Method</MemberType>
2550       <AssemblyInfo>
2551         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2552       </AssemblyInfo>
2553       <ReturnValue>
2554         <ReturnType>System.Data.XmlReadMode</ReturnType>
2555       </ReturnValue>
2556       <Parameters>
2557         <Parameter Name="reader" Type="System.Xml.XmlReader" />
2558         <Parameter Name="serializable" Type="System.Boolean" />
2559       </Parameters>
2560       <Docs>
2561         <param name="reader">To be added.</param>
2562         <param name="serializable">To be added.</param>
2563         <summary>To be added.</summary>
2564         <returns>To be added.</returns>
2565         <remarks>To be added.</remarks>
2566       </Docs>
2567     </Member>
2568     <Member MemberName="ReadXmlSchema">
2569       <MemberSignature Language="C#" Value="public void ReadXmlSchema (System.IO.Stream stream);" />
2570       <MemberType>Method</MemberType>
2571       <AssemblyInfo>
2572         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2573       </AssemblyInfo>
2574       <ReturnValue>
2575         <ReturnType>System.Void</ReturnType>
2576       </ReturnValue>
2577       <Parameters>
2578         <Parameter Name="stream" Type="System.IO.Stream" />
2579       </Parameters>
2580       <Docs>
2581         <remarks>
2582           <attribution license="cc4" from="Microsoft" modified="false" />
2583           <para>Use the <see cref="M:System.Data.DataTable.ReadXmlSchema(System.IO.Stream)" /> method to create the schema for a <see cref="T:System.Data.DataTable" />. The schema includes table, relation, and constraint definitions.</para>
2584           <para>To write a schema to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method.</para>
2585           <para>The XML schema is interpreted according to the XSD standard.</para>
2586           <para>Data corruption can occur if the msdata:DataType and the xs:type types do not match. No exception will be thrown.</para>
2587           <para>The ReadXmlSchema method is generally invoked before invoking the <see cref="Overload:System.Data.DataTable.ReadXml" /> method which is used to fill the <see cref="T:System.Data.DataTable" />.</para>
2588           <para>To create a nested relation using XML schema, use implicit nested elements. You can also configure the nested relation to use explicit column names. Elements must be implicitly nested in order for the corresponding DataTables to participate in a nested relation.</para>
2589         </remarks>
2590         <summary>
2591           <attribution license="cc4" from="Microsoft" modified="false" />
2592           <para>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified stream.</para>
2593         </summary>
2594         <param name="stream">
2595           <attribution license="cc4" from="Microsoft" modified="false" />The stream used to read the schema. </param>
2596       </Docs>
2597     </Member>
2598     <Member MemberName="ReadXmlSchema">
2599       <MemberSignature Language="C#" Value="public void ReadXmlSchema (System.IO.TextReader reader);" />
2600       <MemberType>Method</MemberType>
2601       <AssemblyInfo>
2602         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2603       </AssemblyInfo>
2604       <ReturnValue>
2605         <ReturnType>System.Void</ReturnType>
2606       </ReturnValue>
2607       <Parameters>
2608         <Parameter Name="reader" Type="System.IO.TextReader" />
2609       </Parameters>
2610       <Docs>
2611         <remarks>
2612           <attribution license="cc4" from="Microsoft" modified="false" />
2613           <para>Use the <see cref="M:System.Data.DataTable.ReadXmlSchema(System.IO.TextReader)" /> method to create the schema for a <see cref="T:System.Data.DataTable" />. The schema includes table, relation, and constraint definitions.</para>
2614           <para>To write a schema to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method.</para>
2615           <para>The XML schema is interpreted according to the XSD standard.</para>
2616           <para>Data corruption can occur if the msdata:DataType and the xs:type types do not match. No exception will be thrown.</para>
2617           <para>The ReadXmlSchema method is generally invoked before invoking the <see cref="Overload:System.Data.DataTable.ReadXml" /> method which is used to fill the <see cref="T:System.Data.DataTable" />.</para>
2618           <para>To create a nested relation using XML schema, use implicit nested elements. You can also reconfigure the nested relation to use explicit column names. Elements must be implicitly nested in order for the corresponding DataTables to participate in a nested relation.</para>
2619         </remarks>
2620         <summary>
2621           <attribution license="cc4" from="Microsoft" modified="false" />
2622           <para>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</para>
2623         </summary>
2624         <param name="reader">
2625           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextReader" /> used to read the schema information. </param>
2626       </Docs>
2627     </Member>
2628     <Member MemberName="ReadXmlSchema">
2629       <MemberSignature Language="C#" Value="public void ReadXmlSchema (string fileName);" />
2630       <MemberType>Method</MemberType>
2631       <AssemblyInfo>
2632         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2633       </AssemblyInfo>
2634       <ReturnValue>
2635         <ReturnType>System.Void</ReturnType>
2636       </ReturnValue>
2637       <Parameters>
2638         <Parameter Name="fileName" Type="System.String" />
2639       </Parameters>
2640       <Docs>
2641         <remarks>
2642           <attribution license="cc4" from="Microsoft" modified="false" />
2643           <para>Use the <see cref="M:System.Data.DataTable.ReadXmlSchema(System.String)" /> method to create the schema for a <see cref="T:System.Data.DataTable" />. The schema includes table, relation, and constraint definitions.</para>
2644           <para>To write a schema to an XML document, use the <see cref="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream)" /> method.</para>
2645           <para>The XML schema is interpreted according to the XSD standard.</para>
2646           <para>Data corruption can occur if the msdata:DataType and the xs:type types do not match. No exception will be thrown.</para>
2647           <para>The ReadXmlSchema method is generally invoked before invoking the <see cref="M:System.Data.DataTable.ReadXml(System.IO.Stream)" /> method which is used to fill the DataTable.</para>
2648           <para>To create a nested relation using XML schema, use implicit nested elements. You can also reconfigure the nested relation to use explicit column names. Elements must be implicitly nested in order for the corresponding DataTables to participate in a nested relation.</para>
2649         </remarks>
2650         <summary>
2651           <attribution license="cc4" from="Microsoft" modified="false" />
2652           <para>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> from the specified file.</para>
2653         </summary>
2654         <param name="fileName">
2655           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file from which to read the schema information. </param>
2656       </Docs>
2657     </Member>
2658     <Member MemberName="ReadXmlSchema">
2659       <MemberSignature Language="C#" Value="public void ReadXmlSchema (System.Xml.XmlReader reader);" />
2660       <MemberType>Method</MemberType>
2661       <AssemblyInfo>
2662         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2663       </AssemblyInfo>
2664       <ReturnValue>
2665         <ReturnType>System.Void</ReturnType>
2666       </ReturnValue>
2667       <Parameters>
2668         <Parameter Name="reader" Type="System.Xml.XmlReader" />
2669       </Parameters>
2670       <Docs>
2671         <remarks>
2672           <attribution license="cc4" from="Microsoft" modified="false" />
2673           <para>Use the <see cref="M:System.Data.DataTable.ReadXmlSchema(System.Xml.XmlReader)" /> method to create the schema for a <see cref="T:System.Data.DataTable" />. The schema includes table, relation, and constraint definitions.</para>
2674           <para>To write a schema to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method.</para>
2675           <para>The XML schema is interpreted according to the XSD standard.</para>
2676           <para>Data corruption can occur if the msdata:DataType and the xs:type types do not match. No exception will be thrown.</para>
2677           <para>The ReadXmlSchema method is generally invoked before invoking the <see cref="Overload:System.Data.DataTable.ReadXml" /> method which is used to fill the <see cref="T:System.Data.DataTable" />.</para>
2678           <block subset="none" type="note">
2679             <para>The way to create a nested relation using XML schema is to have implicit nested elements. Additionally, the nested relation could be re-wired, to use explicit column names. It is mandatory for elements to be implicitly nested for the corresponding DataTables to participate in a nested relation.</para>
2680           </block>
2681         </remarks>
2682         <summary>
2683           <attribution license="cc4" from="Microsoft" modified="false" />
2684           <para>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />.</para>
2685         </summary>
2686         <param name="reader">
2687           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlReader" /> used to read the schema information. </param>
2688       </Docs>
2689     </Member>
2690     <Member MemberName="ReadXmlSerializable">
2691       <MemberSignature Language="C#" Value="protected virtual void ReadXmlSerializable (System.Xml.XmlReader reader);" />
2692       <MemberType>Method</MemberType>
2693       <AssemblyInfo>
2694         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2695       </AssemblyInfo>
2696       <ReturnValue>
2697         <ReturnType>System.Void</ReturnType>
2698       </ReturnValue>
2699       <Parameters>
2700         <Parameter Name="reader" Type="System.Xml.XmlReader" />
2701       </Parameters>
2702       <Docs>
2703         <remarks>To be added.</remarks>
2704         <summary>
2705           <attribution license="cc4" from="Microsoft" modified="false" />
2706           <para>Reads from an XML stream.</para>
2707         </summary>
2708         <param name="reader">
2709           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Xml.XmlReader" /> object.</param>
2710       </Docs>
2711     </Member>
2712     <Member MemberName="RejectChanges">
2713       <MemberSignature Language="C#" Value="public void RejectChanges ();" />
2714       <MemberType>Method</MemberType>
2715       <ReturnValue>
2716         <ReturnType>System.Void</ReturnType>
2717       </ReturnValue>
2718       <Parameters />
2719       <Docs>
2720         <remarks>
2721           <attribution license="cc4" from="Microsoft" modified="false" />
2722           <para>When <see cref="M:System.Data.DataTable.RejectChanges" /> is called, any <see cref="T:System.Data.DataRow" /> objects that are still in edit-mode cancel their edits. New rows are removed. Rows with the <see cref="T:System.Data.DataRowState" /> set to Modified or Deleted return back to their original state.</para>
2723         </remarks>
2724         <summary>
2725           <attribution license="cc4" from="Microsoft" modified="false" />
2726           <para>Rolls back all changes that have been made to the table since it was loaded, or the last time <see cref="M:System.Data.DataTable.AcceptChanges" /> was called.</para>
2727         </summary>
2728       </Docs>
2729       <AssemblyInfo>
2730         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2731         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2732       </AssemblyInfo>
2733     </Member>
2734     <Member MemberName="RemotingFormat">
2735       <MemberSignature Language="C#" Value="public System.Data.SerializationFormat RemotingFormat { set; get; }" />
2736       <MemberType>Property</MemberType>
2737       <AssemblyInfo>
2738         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2739       </AssemblyInfo>
2740       <Attributes>
2741         <Attribute>
2742           <AttributeName>System.ComponentModel.DefaultValue(System.Data.SerializationFormat.Xml)</AttributeName>
2743         </Attribute>
2744       </Attributes>
2745       <ReturnValue>
2746         <ReturnType>System.Data.SerializationFormat</ReturnType>
2747       </ReturnValue>
2748       <Docs>
2749         <value>To be added.</value>
2750         <remarks>To be added.</remarks>
2751         <summary>
2752           <attribution license="cc4" from="Microsoft" modified="false" />
2753           <para>Gets or sets the serialization format.</para>
2754         </summary>
2755       </Docs>
2756     </Member>
2757     <Member MemberName="Reset">
2758       <MemberSignature Language="C#" Value="public virtual void Reset ();" />
2759       <MemberType>Method</MemberType>
2760       <ReturnValue>
2761         <ReturnType>System.Void</ReturnType>
2762       </ReturnValue>
2763       <Parameters />
2764       <Docs>
2765         <remarks>To be added</remarks>
2766         <summary>
2767           <attribution license="cc4" from="Microsoft" modified="false" />
2768           <para>Resets the <see cref="T:System.Data.DataTable" /> to its original state. Reset removes all data, indexes, relations, and columns of the table. If a DataSet includes a DataTable, the table will still be part of the DataSet after the table is reset.</para>
2769         </summary>
2770       </Docs>
2771       <AssemblyInfo>
2772         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2773         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2774       </AssemblyInfo>
2775     </Member>
2776     <Member MemberName="RowChanged">
2777       <MemberSignature Language="C#" Value="public event System.Data.DataRowChangeEventHandler RowChanged;" />
2778       <MemberType>Event</MemberType>
2779       <ReturnValue>
2780         <ReturnType>System.Data.DataRowChangeEventHandler</ReturnType>
2781       </ReturnValue>
2782       <Parameters />
2783       <Docs>
2784         <remarks>
2785           <attribution license="cc4" from="Microsoft" modified="false" />
2786           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
2787         </remarks>
2788         <summary>
2789           <attribution license="cc4" from="Microsoft" modified="false" />
2790           <para>Occurs after a <see cref="T:System.Data.DataRow" /> has been changed successfully.</para>
2791         </summary>
2792       </Docs>
2793       <AssemblyInfo>
2794         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2795         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2796       </AssemblyInfo>
2797     </Member>
2798     <Member MemberName="RowChanging">
2799       <MemberSignature Language="C#" Value="public event System.Data.DataRowChangeEventHandler RowChanging;" />
2800       <MemberType>Event</MemberType>
2801       <ReturnValue>
2802         <ReturnType>System.Data.DataRowChangeEventHandler</ReturnType>
2803       </ReturnValue>
2804       <Parameters />
2805       <Docs>
2806         <remarks>
2807           <attribution license="cc4" from="Microsoft" modified="false" />
2808           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
2809         </remarks>
2810         <summary>
2811           <attribution license="cc4" from="Microsoft" modified="false" />
2812           <para>Occurs when a <see cref="T:System.Data.DataRow" /> is changing.</para>
2813         </summary>
2814       </Docs>
2815       <AssemblyInfo>
2816         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2817         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2818       </AssemblyInfo>
2819     </Member>
2820     <Member MemberName="RowDeleted">
2821       <MemberSignature Language="C#" Value="public event System.Data.DataRowChangeEventHandler RowDeleted;" />
2822       <MemberType>Event</MemberType>
2823       <ReturnValue>
2824         <ReturnType>System.Data.DataRowChangeEventHandler</ReturnType>
2825       </ReturnValue>
2826       <Parameters />
2827       <Docs>
2828         <remarks>
2829           <attribution license="cc4" from="Microsoft" modified="false" />
2830           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
2831         </remarks>
2832         <summary>
2833           <attribution license="cc4" from="Microsoft" modified="false" />
2834           <para>Occurs after a row in the table has been deleted.</para>
2835         </summary>
2836       </Docs>
2837       <AssemblyInfo>
2838         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2839         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2840       </AssemblyInfo>
2841     </Member>
2842     <Member MemberName="RowDeleting">
2843       <MemberSignature Language="C#" Value="public event System.Data.DataRowChangeEventHandler RowDeleting;" />
2844       <MemberType>Event</MemberType>
2845       <ReturnValue>
2846         <ReturnType>System.Data.DataRowChangeEventHandler</ReturnType>
2847       </ReturnValue>
2848       <Parameters />
2849       <Docs>
2850         <remarks>
2851           <attribution license="cc4" from="Microsoft" modified="false" />
2852           <para>For more information, see <format type="text/html"><a href="62f404a5-13ea-4b93-a29f-55b74a16c9d3">Working with DataTable Events</a></format>.</para>
2853         </remarks>
2854         <summary>
2855           <attribution license="cc4" from="Microsoft" modified="false" />
2856           <para>Occurs before a row in the table is about to be deleted.</para>
2857         </summary>
2858       </Docs>
2859       <AssemblyInfo>
2860         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2861         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2862       </AssemblyInfo>
2863     </Member>
2864     <Member MemberName="Rows">
2865       <MemberSignature Language="C#" Value="public System.Data.DataRowCollection Rows { get; }" />
2866       <MemberType>Property</MemberType>
2867       <ReturnValue>
2868         <ReturnType>System.Data.DataRowCollection</ReturnType>
2869       </ReturnValue>
2870       <Docs>
2871         <value>To be added: an object of type 'DataRowCollection'</value>
2872         <remarks>
2873           <attribution license="cc4" from="Microsoft" modified="false" />
2874           <para>To create a new <see cref="T:System.Data.DataRow" />, you must use the <see cref="M:System.Data.DataTable.NewRow" /> method to return a new object. Such an object is automatically configured according to the schema defined for the <see cref="T:System.Data.DataTable" /> through its collection of <see cref="T:System.Data.DataColumn" /> objects. After creating a new row and setting the values for each column in the row, add the row to the <see cref="T:System.Data.DataRowCollection" /> using the Add method.</para>
2875           <para>Each <see cref="T:System.Data.DataRow" /> in the collection represents a row of data in the table. To commit a change to the value of a column in the row, you must invoke the <see cref="M:System.Data.DataTable.AcceptChanges" /> method.</para>
2876         </remarks>
2877         <summary>
2878           <attribution license="cc4" from="Microsoft" modified="false" />
2879           <para>Gets the collection of rows that belong to this table.</para>
2880         </summary>
2881       </Docs>
2882       <AssemblyInfo>
2883         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2884         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2885       </AssemblyInfo>
2886       <Attributes>
2887         <Attribute>
2888           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2889         </Attribute>
2890       </Attributes>
2891     </Member>
2892     <Member MemberName="Select">
2893       <MemberSignature Language="C#" Value="public System.Data.DataRow[] Select ();" />
2894       <MemberType>Method</MemberType>
2895       <ReturnValue>
2896         <ReturnType>System.Data.DataRow[]</ReturnType>
2897       </ReturnValue>
2898       <Parameters />
2899       <Docs>
2900         <returns>To be added: an object of type 'DataRow []'</returns>
2901         <remarks>
2902           <attribution license="cc4" from="Microsoft" modified="false" />
2903           <para>To ensure the proper sort order, specify sort criteria with <see cref="M:System.Data.DataTable.Select(System.String,System.String)" /> or <see cref="M:System.Data.DataTable.Select(System.String,System.String,System.Data.DataViewRowState)" />.</para>
2904         </remarks>
2905         <summary>
2906           <attribution license="cc4" from="Microsoft" modified="false" />
2907           <para>Gets an array of all <see cref="T:System.Data.DataRow" /> objects.</para>
2908         </summary>
2909       </Docs>
2910       <AssemblyInfo>
2911         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2912         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2913       </AssemblyInfo>
2914     </Member>
2915     <Member MemberName="Select">
2916       <MemberSignature Language="C#" Value="public System.Data.DataRow[] Select (string filterExpression);" />
2917       <MemberType>Method</MemberType>
2918       <ReturnValue>
2919         <ReturnType>System.Data.DataRow[]</ReturnType>
2920       </ReturnValue>
2921       <Parameters>
2922         <Parameter Name="filterExpression" Type="System.String" />
2923       </Parameters>
2924       <Docs>
2925         <returns>To be added: an object of type 'DataRow []'</returns>
2926         <remarks>
2927           <attribution license="cc4" from="Microsoft" modified="false" />
2928           <para>To create the <paramref name="filterExpression" /> argument, use the same rules that apply to the <see cref="T:System.Data.DataColumn" /> class's <see cref="P:System.Data.DataColumn.Expression" /> property value for creating filters.</para>
2929           <para>To ensure the proper sort order, specify sort criteria with <see cref="M:System.Data.DataTable.Select(System.String,System.String)" /> or <see cref="M:System.Data.DataTable.Select(System.String,System.String,System.Data.DataViewRowState)" />.</para>
2930           <para>If the column on the filter contains a null value, it will not be part of the result.</para>
2931         </remarks>
2932         <summary>
2933           <attribution license="cc4" from="Microsoft" modified="false" />
2934           <para>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria.</para>
2935         </summary>
2936         <param name="filterExpression">
2937           <attribution license="cc4" from="Microsoft" modified="false" />The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
2938       </Docs>
2939       <AssemblyInfo>
2940         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2941         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2942       </AssemblyInfo>
2943     </Member>
2944     <Member MemberName="Select">
2945       <MemberSignature Language="C#" Value="public System.Data.DataRow[] Select (string filterExpression, string sort);" />
2946       <MemberType>Method</MemberType>
2947       <ReturnValue>
2948         <ReturnType>System.Data.DataRow[]</ReturnType>
2949       </ReturnValue>
2950       <Parameters>
2951         <Parameter Name="filterExpression" Type="System.String" />
2952         <Parameter Name="sort" Type="System.String" />
2953       </Parameters>
2954       <Docs>
2955         <returns>To be added: an object of type 'DataRow []'</returns>
2956         <remarks>
2957           <attribution license="cc4" from="Microsoft" modified="false" />
2958           <para>To form the <paramref name="filterExpression" /> argument, use the same rules for creating the <see cref="T:System.Data.DataColumn" /> class's <see cref="P:System.Data.DataColumn.Expression" /> property value. The <paramref name="Sort" /> argument also uses the same rules for creating class's <see cref="P:System.Data.DataColumn.Expression" /> strings.</para>
2959           <para>If the column on the filter contains a null value, it will not be part of the result.</para>
2960         </remarks>
2961         <summary>
2962           <attribution license="cc4" from="Microsoft" modified="false" />
2963           <para>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria, in the specified sort order.</para>
2964         </summary>
2965         <param name="filterExpression">
2966           <attribution license="cc4" from="Microsoft" modified="false" />The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
2967         <param name="sort">
2968           <attribution license="cc4" from="Microsoft" modified="false" />A string specifying the column and sort direction. </param>
2969       </Docs>
2970       <AssemblyInfo>
2971         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2972         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2973       </AssemblyInfo>
2974     </Member>
2975     <Member MemberName="Select">
2976       <MemberSignature Language="C#" Value="public System.Data.DataRow[] Select (string filterExpression, string sort, System.Data.DataViewRowState recordStates);" />
2977       <MemberType>Method</MemberType>
2978       <ReturnValue>
2979         <ReturnType>System.Data.DataRow[]</ReturnType>
2980       </ReturnValue>
2981       <Parameters>
2982         <Parameter Name="filterExpression" Type="System.String" />
2983         <Parameter Name="sort" Type="System.String" />
2984         <Parameter Name="recordStates" Type="System.Data.DataViewRowState" />
2985       </Parameters>
2986       <Docs>
2987         <returns>To be added: an object of type 'DataRow []'</returns>
2988         <remarks>
2989           <attribution license="cc4" from="Microsoft" modified="false" />
2990           <para>To form the <paramref name="filterExpression" /> argument, use the same rules for creating the <see cref="T:System.Data.DataColumn" /> class's <see cref="P:System.Data.DataColumn.Expression" /> property value. The <paramref name="Sort" /> argument also uses the same rules for creating class's <see cref="P:System.Data.DataColumn.Expression" /> strings.</para>
2991           <para>If the column on the filter contains a null value, it will not be part of the result.</para>
2992         </remarks>
2993         <summary>
2994           <attribution license="cc4" from="Microsoft" modified="false" />
2995           <para>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter in the order of the sort that match the specified state.</para>
2996         </summary>
2997         <param name="filterExpression">
2998           <attribution license="cc4" from="Microsoft" modified="false" />The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
2999         <param name="sort">
3000           <attribution license="cc4" from="Microsoft" modified="false" />A string specifying the column and sort direction. </param>
3001         <param name="recordStates">
3002           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataViewRowState" /> values.</param>
3003       </Docs>
3004       <AssemblyInfo>
3005         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3006         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3007       </AssemblyInfo>
3008     </Member>
3009     <Member MemberName="Site">
3010       <MemberSignature Language="C#" Value="public override System.ComponentModel.ISite Site { set; get; }" />
3011       <MemberType>Property</MemberType>
3012       <ReturnValue>
3013         <ReturnType>System.ComponentModel.ISite</ReturnType>
3014       </ReturnValue>
3015       <Parameters>
3016       </Parameters>
3017       <Docs>
3018         <value>To be added: an object of type 'ComponentModel.ISite'</value>
3019         <remarks>
3020           <attribution license="cc4" from="Microsoft" modified="false" />
3021           <para>Sites bind a <see cref="T:System.ComponentModel.Component" /> to a <see cref="T:System.ComponentModel.Container" /> and enable communication between them, as well as provide a way for the container to manage its components.</para>
3022         </remarks>
3023         <summary>
3024           <attribution license="cc4" from="Microsoft" modified="false" />
3025           <para>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataTable" />.</para>
3026         </summary>
3027       </Docs>
3028       <AssemblyInfo>
3029         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3030         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3031       </AssemblyInfo>
3032       <Attributes>
3033         <Attribute>
3034           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
3035         </Attribute>
3036         <Attribute>
3037           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3038         </Attribute>
3039       </Attributes>
3040     </Member>
3041     <Member MemberName="System.ComponentModel.IListSource.ContainsListCollection">
3042       <MemberSignature Language="C#" Value="bool System.ComponentModel.IListSource.ContainsListCollection { get; }" />
3043       <MemberType>Property</MemberType>
3044       <AssemblyInfo>
3045         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3046         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3047       </AssemblyInfo>
3048       <ReturnValue>
3049         <ReturnType>System.Boolean</ReturnType>
3050       </ReturnValue>
3051       <Docs>
3052         <value>To be added.</value>
3053         <remarks>
3054           <attribution license="cc4" from="Microsoft" modified="false" />
3055           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.DataTable" /> instance is cast to an <see cref="T:System.ComponentModel.IListSource" /> interface.</para>
3056         </remarks>
3057         <summary>
3058           <attribution license="cc4" from="Microsoft" modified="false" />
3059           <para>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</para>
3060         </summary>
3061       </Docs>
3062     </Member>
3063     <Member MemberName="System.ComponentModel.IListSource.GetList">
3064       <MemberSignature Language="C#" Value="System.Collections.IList IListSource.GetList ();" />
3065       <MemberType>Method</MemberType>
3066       <AssemblyInfo>
3067         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3068         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3069       </AssemblyInfo>
3070       <ReturnValue>
3071         <ReturnType>System.Collections.IList</ReturnType>
3072       </ReturnValue>
3073       <Parameters />
3074       <Docs>
3075         <returns>To be added.</returns>
3076         <remarks>
3077           <attribution license="cc4" from="Microsoft" modified="false" />
3078           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.DataTable" /> instance is cast to an <see cref="T:System.ComponentModel.IListSource" /> interface.</para>
3079         </remarks>
3080         <summary>
3081           <attribution license="cc4" from="Microsoft" modified="false" />
3082           <para>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</para>
3083         </summary>
3084       </Docs>
3085     </Member>
3086     <Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">
3087       <MemberSignature Language="C#" Value="void ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
3088       <MemberType>Method</MemberType>
3089       <AssemblyInfo>
3090         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3091       </AssemblyInfo>
3092       <ReturnValue>
3093         <ReturnType>System.Void</ReturnType>
3094       </ReturnValue>
3095       <Parameters>
3096         <Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
3097         <Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
3098       </Parameters>
3099       <Docs>
3100         <remarks>To be added.</remarks>
3101         <summary>
3102           <attribution license="cc4" from="Microsoft" modified="false" />
3103           <para>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataTable" />.</para>
3104         </summary>
3105         <param name="info">
3106           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
3107         <param name="context">
3108           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
3109       </Docs>
3110     </Member>
3111     <Member MemberName="System.Xml.Serialization.IXmlSerializable.GetSchema">
3112       <MemberSignature Language="C#" Value="System.Xml.Schema.XmlSchema IXmlSerializable.GetSchema ();" />
3113       <MemberType>Method</MemberType>
3114       <AssemblyInfo>
3115         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3116       </AssemblyInfo>
3117       <ReturnValue>
3118         <ReturnType>System.Xml.Schema.XmlSchema</ReturnType>
3119       </ReturnValue>
3120       <Parameters />
3121       <Docs>
3122         <returns>To be added.</returns>
3123         <remarks>
3124           <attribution license="cc4" from="Microsoft" modified="false" />
3125           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.DataSet" /> instance is cast to an <see cref="T:System.Xml.Serialization.IXmlSerializable" /> interface.</para>
3126         </remarks>
3127         <summary>
3128           <attribution license="cc4" from="Microsoft" modified="false" />
3129           <para>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</para>
3130         </summary>
3131       </Docs>
3132     </Member>
3133     <Member MemberName="System.Xml.Serialization.IXmlSerializable.ReadXml">
3134       <MemberSignature Language="C#" Value="void IXmlSerializable.ReadXml (System.Xml.XmlReader reader);" />
3135       <MemberType>Method</MemberType>
3136       <AssemblyInfo>
3137         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3138       </AssemblyInfo>
3139       <ReturnValue>
3140         <ReturnType>System.Void</ReturnType>
3141       </ReturnValue>
3142       <Parameters>
3143         <Parameter Name="reader" Type="System.Xml.XmlReader" />
3144       </Parameters>
3145       <Docs>
3146         <remarks>
3147           <attribution license="cc4" from="Microsoft" modified="false" />
3148           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.DataSet" /> instance is cast to an <see cref="T:System.Xml.Serialization.IXmlSerializable" /> interface.</para>
3149         </remarks>
3150         <summary>
3151           <attribution license="cc4" from="Microsoft" modified="false" />
3152           <para>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</para>
3153         </summary>
3154         <param name="reader">
3155           <attribution license="cc4" from="Microsoft" modified="false" />An XmlReader.</param>
3156       </Docs>
3157     </Member>
3158     <Member MemberName="System.Xml.Serialization.IXmlSerializable.WriteXml">
3159       <MemberSignature Language="C#" Value="void IXmlSerializable.WriteXml (System.Xml.XmlWriter writer);" />
3160       <MemberType>Method</MemberType>
3161       <AssemblyInfo>
3162         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3163       </AssemblyInfo>
3164       <ReturnValue>
3165         <ReturnType>System.Void</ReturnType>
3166       </ReturnValue>
3167       <Parameters>
3168         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3169       </Parameters>
3170       <Docs>
3171         <remarks>
3172           <attribution license="cc4" from="Microsoft" modified="false" />
3173           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Data.DataSet" /> instance is cast to an <see cref="T:System.Xml.Serialization.IXmlSerializable" /> interface.</para>
3174         </remarks>
3175         <summary>
3176           <attribution license="cc4" from="Microsoft" modified="false" />
3177           <para>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</para>
3178         </summary>
3179         <param name="writer">
3180           <attribution license="cc4" from="Microsoft" modified="false" />An XmlWriter.</param>
3181       </Docs>
3182     </Member>
3183     <Member MemberName="TableCleared">
3184       <MemberSignature Language="C#" Value="public event System.Data.DataTableClearEventHandler TableCleared;" />
3185       <MemberType>Event</MemberType>
3186       <AssemblyInfo>
3187         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3188       </AssemblyInfo>
3189       <ReturnValue>
3190         <ReturnType>System.Data.DataTableClearEventHandler</ReturnType>
3191       </ReturnValue>
3192       <Docs>
3193         <remarks>
3194           <attribution license="cc4" from="Microsoft" modified="false" />
3195           <para>The <see cref="E:System.Data.DataTable.TableCleared" /> event is fired immediately after all rows have been successfully cleared but before the <see cref="M:System.Data.DataTable.Clear" /> method returns control back to the caller. The <see cref="E:System.Data.DataTable.TableCleared" /> event is not fired if there are any exceptions during the clear operation. </para>
3196         </remarks>
3197         <summary>
3198           <attribution license="cc4" from="Microsoft" modified="false" />
3199           <para>Occurs after a <see cref="T:System.Data.DataTable" /> is cleared.</para>
3200         </summary>
3201       </Docs>
3202     </Member>
3203     <Member MemberName="TableClearing">
3204       <MemberSignature Language="C#" Value="public event System.Data.DataTableClearEventHandler TableClearing;" />
3205       <MemberType>Event</MemberType>
3206       <AssemblyInfo>
3207         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3208       </AssemblyInfo>
3209       <ReturnValue>
3210         <ReturnType>System.Data.DataTableClearEventHandler</ReturnType>
3211       </ReturnValue>
3212       <Docs>
3213         <remarks>
3214           <attribution license="cc4" from="Microsoft" modified="false" />
3215           <para>The <see cref="E:System.Data.DataTable.TableClearing" /> event is fired before processing of the <see cref="M:System.Data.DataTable.Clear" /> operation begins. This event is always fired when the <see cref="M:System.Data.DataTable.Clear" /> method is invoked, even if the table contains zero rows.</para>
3216         </remarks>
3217         <summary>
3218           <attribution license="cc4" from="Microsoft" modified="false" />
3219           <para>Occurs when a <see cref="T:System.Data.DataTable" /> is cleared.</para>
3220         </summary>
3221       </Docs>
3222     </Member>
3223     <Member MemberName="TableName">
3224       <MemberSignature Language="C#" Value="public string TableName { set; get; }" />
3225       <MemberType>Property</MemberType>
3226       <ReturnValue>
3227         <ReturnType>System.String</ReturnType>
3228       </ReturnValue>
3229       <Parameters>
3230       </Parameters>
3231       <Docs>
3232         <value>To be added: an object of type 'string'</value>
3233         <remarks>
3234           <attribution license="cc4" from="Microsoft" modified="false" />
3235           <para>The <see cref="P:System.Data.DataTable.TableName" /> is used to return this table from the parent <see cref="T:System.Data.DataSet" /> object's <see cref="T:System.Data.DataTableCollection" /> (returned by the <see cref="P:System.Data.DataSet.Tables" /> property).</para>
3236         </remarks>
3237         <summary>
3238           <attribution license="cc4" from="Microsoft" modified="false" />
3239           <para>Gets or sets the name of the <see cref="T:System.Data.DataTable" />.</para>
3240         </summary>
3241       </Docs>
3242       <AssemblyInfo>
3243         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3244         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3245       </AssemblyInfo>
3246       <Attributes>
3247         <Attribute>
3248           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
3249         </Attribute>
3250         <Attribute>
3251           <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
3252         </Attribute>
3253       </Attributes>
3254     </Member>
3255     <Member MemberName="TableNewRow">
3256       <MemberSignature Language="C#" Value="public event System.Data.DataTableNewRowEventHandler TableNewRow;" />
3257       <MemberType>Event</MemberType>
3258       <AssemblyInfo>
3259         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3260       </AssemblyInfo>
3261       <ReturnValue>
3262         <ReturnType>System.Data.DataTableNewRowEventHandler</ReturnType>
3263       </ReturnValue>
3264       <Docs>
3265         <remarks>
3266           <attribution license="cc4" from="Microsoft" modified="false" />
3267           <para>Fires after a new <see cref="T:System.Data.DataRow" /> has been created using <see cref="M:System.Data.DataTable.NewRow" />. This event is fired before the invoked NewRow method returns. The new <see cref="T:System.Data.DataRow" /> instance is detached; it has not been added to the collection.</para>
3268         </remarks>
3269         <summary>
3270           <attribution license="cc4" from="Microsoft" modified="false" />
3271           <para>Occurs when a new <see cref="T:System.Data.DataRow" /> is inserted.</para>
3272         </summary>
3273       </Docs>
3274     </Member>
3275     <Member MemberName="ToString">
3276       <MemberSignature Language="C#" Value="public override string ToString ();" />
3277       <MemberType>Method</MemberType>
3278       <ReturnValue>
3279         <ReturnType>System.String</ReturnType>
3280       </ReturnValue>
3281       <Parameters />
3282       <Docs>
3283         <returns>To be added: an object of type 'string'</returns>
3284         <remarks>
3285           <attribution license="cc4" from="Microsoft" modified="false" />
3286           <para>Gets the <see cref="P:System.Data.DataTable.TableName" /> and <see cref="P:System.Data.DataTable.DisplayExpression" /> for the <see cref="T:System.Data.DataTable" />.</para>
3287         </remarks>
3288         <summary>
3289           <attribution license="cc4" from="Microsoft" modified="false" />
3290           <para>Gets the <see cref="P:System.Data.DataTable.TableName" /> and <see cref="P:System.Data.DataTable.DisplayExpression" />, if there is one as a concatenated string.</para>
3291         </summary>
3292       </Docs>
3293       <AssemblyInfo>
3294         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3295         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3296       </AssemblyInfo>
3297     </Member>
3298     <Member MemberName="WriteXml">
3299       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.Stream stream);" />
3300       <MemberType>Method</MemberType>
3301       <AssemblyInfo>
3302         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3303       </AssemblyInfo>
3304       <ReturnValue>
3305         <ReturnType>System.Void</ReturnType>
3306       </ReturnValue>
3307       <Parameters>
3308         <Parameter Name="stream" Type="System.IO.Stream" />
3309       </Parameters>
3310       <Docs>
3311         <remarks>
3312           <attribution license="cc4" from="Microsoft" modified="false" />
3313           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3314           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3315           <block subset="none" type="note">
3316             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3317           </block>
3318         </remarks>
3319         <summary>
3320           <attribution license="cc4" from="Microsoft" modified="false" />
3321           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.Stream" />.</para>
3322         </summary>
3323         <param name="stream">
3324           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the data will be written. </param>
3325       </Docs>
3326     </Member>
3327     <Member MemberName="WriteXml">
3328       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.TextWriter writer);" />
3329       <MemberType>Method</MemberType>
3330       <AssemblyInfo>
3331         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3332       </AssemblyInfo>
3333       <ReturnValue>
3334         <ReturnType>System.Void</ReturnType>
3335       </ReturnValue>
3336       <Parameters>
3337         <Parameter Name="writer" Type="System.IO.TextWriter" />
3338       </Parameters>
3339       <Docs>
3340         <remarks>
3341           <attribution license="cc4" from="Microsoft" modified="false" />
3342           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3343           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3344           <block subset="none" type="note">
3345             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3346           </block>
3347         </remarks>
3348         <summary>
3349           <attribution license="cc4" from="Microsoft" modified="false" />
3350           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.TextWriter" />.</para>
3351         </summary>
3352         <param name="writer">
3353           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> with which to write the content. </param>
3354       </Docs>
3355     </Member>
3356     <Member MemberName="WriteXml">
3357       <MemberSignature Language="C#" Value="public void WriteXml (string fileName);" />
3358       <MemberType>Method</MemberType>
3359       <AssemblyInfo>
3360         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3361       </AssemblyInfo>
3362       <ReturnValue>
3363         <ReturnType>System.Void</ReturnType>
3364       </ReturnValue>
3365       <Parameters>
3366         <Parameter Name="fileName" Type="System.String" />
3367       </Parameters>
3368       <Docs>
3369         <remarks>
3370           <attribution license="cc4" from="Microsoft" modified="false" />
3371           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3372           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3373           <block subset="none" type="note">
3374             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3375           </block>
3376         </remarks>
3377         <summary>
3378           <attribution license="cc4" from="Microsoft" modified="false" />
3379           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified file.</para>
3380         </summary>
3381         <param name="fileName">
3382           <attribution license="cc4" from="Microsoft" modified="false" />The file to which to write the XML data.</param>
3383       </Docs>
3384     </Member>
3385     <Member MemberName="WriteXml">
3386       <MemberSignature Language="C#" Value="public void WriteXml (System.Xml.XmlWriter writer);" />
3387       <MemberType>Method</MemberType>
3388       <AssemblyInfo>
3389         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3390       </AssemblyInfo>
3391       <ReturnValue>
3392         <ReturnType>System.Void</ReturnType>
3393       </ReturnValue>
3394       <Parameters>
3395         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3396       </Parameters>
3397       <Docs>
3398         <remarks>
3399           <attribution license="cc4" from="Microsoft" modified="false" />
3400           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3401           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3402           <block subset="none" type="note">
3403             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3404           </block>
3405         </remarks>
3406         <summary>
3407           <attribution license="cc4" from="Microsoft" modified="false" />
3408           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />.</para>
3409         </summary>
3410         <param name="writer">
3411           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents. </param>
3412       </Docs>
3413     </Member>
3414     <Member MemberName="WriteXml">
3415       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.Stream stream, bool writeHierarchy);" />
3416       <MemberType>Method</MemberType>
3417       <AssemblyInfo>
3418         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3419       </AssemblyInfo>
3420       <ReturnValue>
3421         <ReturnType>System.Void</ReturnType>
3422       </ReturnValue>
3423       <Parameters>
3424         <Parameter Name="stream" Type="System.IO.Stream" />
3425         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3426       </Parameters>
3427       <Docs>
3428         <remarks>
3429           <attribution license="cc4" from="Microsoft" modified="false" />
3430           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3431           <para>The XML schema is written using the XSD standard.</para>
3432           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3433           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all of its descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3434           <block subset="none" type="note">
3435             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3436           </block>
3437         </remarks>
3438         <summary>
3439           <attribution license="cc4" from="Microsoft" modified="false" />
3440           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.Stream" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3441         </summary>
3442         <param name="stream">
3443           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the data will be written. </param>
3444         <param name="writeHierarchy">
3445           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3446       </Docs>
3447     </Member>
3448     <Member MemberName="WriteXml">
3449       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.Stream stream, System.Data.XmlWriteMode mode);" />
3450       <MemberType>Method</MemberType>
3451       <AssemblyInfo>
3452         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3453       </AssemblyInfo>
3454       <ReturnValue>
3455         <ReturnType>System.Void</ReturnType>
3456       </ReturnValue>
3457       <Parameters>
3458         <Parameter Name="stream" Type="System.IO.Stream" />
3459         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3460       </Parameters>
3461       <Docs>
3462         <remarks>
3463           <attribution license="cc4" from="Microsoft" modified="false" />
3464           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3465           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3466           <block subset="none" type="note">
3467             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3468           </block>
3469         </remarks>
3470         <summary>
3471           <attribution license="cc4" from="Microsoft" modified="false" />
3472           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema.</para>
3473         </summary>
3474         <param name="stream">
3475           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the data will be written. </param>
3476         <param name="mode">
3477           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
3478       </Docs>
3479     </Member>
3480     <Member MemberName="WriteXml">
3481       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.TextWriter writer, bool writeHierarchy);" />
3482       <MemberType>Method</MemberType>
3483       <AssemblyInfo>
3484         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3485       </AssemblyInfo>
3486       <ReturnValue>
3487         <ReturnType>System.Void</ReturnType>
3488       </ReturnValue>
3489       <Parameters>
3490         <Parameter Name="writer" Type="System.IO.TextWriter" />
3491         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3492       </Parameters>
3493       <Docs>
3494         <remarks>
3495           <attribution license="cc4" from="Microsoft" modified="false" />
3496           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3497           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all its descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3498           <block subset="none" type="note">
3499             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3500           </block>
3501         </remarks>
3502         <summary>
3503           <attribution license="cc4" from="Microsoft" modified="false" />
3504           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.TextWriter" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3505         </summary>
3506         <param name="writer">
3507           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> with which to write the content. </param>
3508         <param name="writeHierarchy">
3509           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3510       </Docs>
3511     </Member>
3512     <Member MemberName="WriteXml">
3513       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.TextWriter writer, System.Data.XmlWriteMode mode);" />
3514       <MemberType>Method</MemberType>
3515       <AssemblyInfo>
3516         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3517       </AssemblyInfo>
3518       <ReturnValue>
3519         <ReturnType>System.Void</ReturnType>
3520       </ReturnValue>
3521       <Parameters>
3522         <Parameter Name="writer" Type="System.IO.TextWriter" />
3523         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3524       </Parameters>
3525       <Docs>
3526         <remarks>
3527           <attribution license="cc4" from="Microsoft" modified="false" />
3528           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3529           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3530           <block subset="none" type="note">
3531             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3532           </block>
3533         </remarks>
3534         <summary>
3535           <attribution license="cc4" from="Microsoft" modified="false" />
3536           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema.</para>
3537         </summary>
3538         <param name="writer">
3539           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> used to write the document. </param>
3540         <param name="mode">
3541           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3542       </Docs>
3543     </Member>
3544     <Member MemberName="WriteXml">
3545       <MemberSignature Language="C#" Value="public void WriteXml (string fileName, bool writeHierarchy);" />
3546       <MemberType>Method</MemberType>
3547       <AssemblyInfo>
3548         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3549       </AssemblyInfo>
3550       <ReturnValue>
3551         <ReturnType>System.Void</ReturnType>
3552       </ReturnValue>
3553       <Parameters>
3554         <Parameter Name="fileName" Type="System.String" />
3555         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3556       </Parameters>
3557       <Docs>
3558         <remarks>
3559           <attribution license="cc4" from="Microsoft" modified="false" />
3560           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3561           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3562           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all of its descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3563           <block subset="none" type="note">
3564             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3565           </block>
3566         </remarks>
3567         <summary>
3568           <attribution license="cc4" from="Microsoft" modified="false" />
3569           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified file. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3570         </summary>
3571         <param name="fileName">
3572           <attribution license="cc4" from="Microsoft" modified="false" />The file to which to write the XML data.</param>
3573         <param name="writeHierarchy">
3574           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3575       </Docs>
3576     </Member>
3577     <Member MemberName="WriteXml">
3578       <MemberSignature Language="C#" Value="public void WriteXml (string fileName, System.Data.XmlWriteMode mode);" />
3579       <MemberType>Method</MemberType>
3580       <AssemblyInfo>
3581         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3582       </AssemblyInfo>
3583       <ReturnValue>
3584         <ReturnType>System.Void</ReturnType>
3585       </ReturnValue>
3586       <Parameters>
3587         <Parameter Name="fileName" Type="System.String" />
3588         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3589       </Parameters>
3590       <Docs>
3591         <remarks>
3592           <attribution license="cc4" from="Microsoft" modified="false" />
3593           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3594           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3595           <block subset="none" type="note">
3596             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3597           </block>
3598         </remarks>
3599         <summary>
3600           <attribution license="cc4" from="Microsoft" modified="false" />
3601           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified file and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema.</para>
3602         </summary>
3603         <param name="fileName">
3604           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file to which the data will be written. </param>
3605         <param name="mode">
3606           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3607       </Docs>
3608     </Member>
3609     <Member MemberName="WriteXml">
3610       <MemberSignature Language="C#" Value="public void WriteXml (System.Xml.XmlWriter writer, bool writeHierarchy);" />
3611       <MemberType>Method</MemberType>
3612       <AssemblyInfo>
3613         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3614       </AssemblyInfo>
3615       <ReturnValue>
3616         <ReturnType>System.Void</ReturnType>
3617       </ReturnValue>
3618       <Parameters>
3619         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3620         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3621       </Parameters>
3622       <Docs>
3623         <remarks>
3624           <attribution license="cc4" from="Microsoft" modified="false" />
3625           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3626           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3627           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3628           <block subset="none" type="note">
3629             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3630           </block>
3631         </remarks>
3632         <summary>
3633           <attribution license="cc4" from="Microsoft" modified="false" />
3634           <para>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />. </para>
3635         </summary>
3636         <param name="writer">
3637           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents. </param>
3638         <param name="writeHierarchy">
3639           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3640       </Docs>
3641     </Member>
3642     <Member MemberName="WriteXml">
3643       <MemberSignature Language="C#" Value="public void WriteXml (System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode);" />
3644       <MemberType>Method</MemberType>
3645       <AssemblyInfo>
3646         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3647       </AssemblyInfo>
3648       <ReturnValue>
3649         <ReturnType>System.Void</ReturnType>
3650       </ReturnValue>
3651       <Parameters>
3652         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3653         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3654       </Parameters>
3655       <Docs>
3656         <remarks>
3657           <attribution license="cc4" from="Microsoft" modified="false" />
3658           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3659           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3660           <block subset="none" type="note">
3661             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3662           </block>
3663         </remarks>
3664         <summary>
3665           <attribution license="cc4" from="Microsoft" modified="false" />
3666           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema.</para>
3667         </summary>
3668         <param name="writer">
3669           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> used to write the document. </param>
3670         <param name="mode">
3671           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3672       </Docs>
3673     </Member>
3674     <Member MemberName="WriteXml">
3675       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.Stream stream, System.Data.XmlWriteMode mode, bool writeHierarchy);" />
3676       <MemberType>Method</MemberType>
3677       <AssemblyInfo>
3678         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3679       </AssemblyInfo>
3680       <ReturnValue>
3681         <ReturnType>System.Void</ReturnType>
3682       </ReturnValue>
3683       <Parameters>
3684         <Parameter Name="stream" Type="System.IO.Stream" />
3685         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3686         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3687       </Parameters>
3688       <Docs>
3689         <remarks>
3690           <attribution license="cc4" from="Microsoft" modified="false" />
3691           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a DataTable into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the XmlWriteMode parameter, and set its value to WriteSchema.</para>
3692           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3693           <para>Normally, the WriteXml method saves data only for the current table. The WriteXml method provides a way to write either data only, or both data and schema from a DataTable into an XML document, whereas the WriteXmlSchema method writes only the schema. To write both data and schema, use one of the overloads that includes the XmlWriteMode parameter, and set its value to WriteSchema.</para>
3694           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3695           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all of its descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3696           <block subset="none" type="note">
3697             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3698           </block>
3699         </remarks>
3700         <summary>
3701           <attribution license="cc4" from="Microsoft" modified="false" />
3702           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3703         </summary>
3704         <param name="stream">
3705           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the data will be written. </param>
3706         <param name="mode">
3707           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3708         <param name="writeHierarchy">
3709           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3710       </Docs>
3711     </Member>
3712     <Member MemberName="WriteXml">
3713       <MemberSignature Language="C#" Value="public void WriteXml (System.IO.TextWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy);" />
3714       <MemberType>Method</MemberType>
3715       <AssemblyInfo>
3716         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3717       </AssemblyInfo>
3718       <ReturnValue>
3719         <ReturnType>System.Void</ReturnType>
3720       </ReturnValue>
3721       <Parameters>
3722         <Parameter Name="writer" Type="System.IO.TextWriter" />
3723         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3724         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3725       </Parameters>
3726       <Docs>
3727         <remarks>
3728           <attribution license="cc4" from="Microsoft" modified="false" />
3729           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3730           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3731           <para>Normally, the WriteXml method saves data only for the current table. The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that includes the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3732           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3733           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all of its descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3734           <block subset="none" type="note">
3735             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3736           </block>
3737         </remarks>
3738         <summary>
3739           <attribution license="cc4" from="Microsoft" modified="false" />
3740           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3741         </summary>
3742         <param name="writer">
3743           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> used to write the document. </param>
3744         <param name="mode">
3745           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3746         <param name="writeHierarchy">
3747           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3748       </Docs>
3749     </Member>
3750     <Member MemberName="WriteXml">
3751       <MemberSignature Language="C#" Value="public void WriteXml (string fileName, System.Data.XmlWriteMode mode, bool writeHierarchy);" />
3752       <MemberType>Method</MemberType>
3753       <AssemblyInfo>
3754         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3755       </AssemblyInfo>
3756       <ReturnValue>
3757         <ReturnType>System.Void</ReturnType>
3758       </ReturnValue>
3759       <Parameters>
3760         <Parameter Name="fileName" Type="System.String" />
3761         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3762         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3763       </Parameters>
3764       <Docs>
3765         <remarks>
3766           <attribution license="cc4" from="Microsoft" modified="false" />
3767           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3768           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3769           <para>Normally, the WriteXml method saves data only for the current table. If you want to save the data for the current table and all of schema, the <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3770           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3771           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and all descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3772           <block subset="none" type="note">
3773             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3774           </block>
3775         </remarks>
3776         <summary>
3777           <attribution license="cc4" from="Microsoft" modified="false" />
3778           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified file and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3779         </summary>
3780         <param name="fileName">
3781           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file to which the data will be written. </param>
3782         <param name="mode">
3783           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3784         <param name="writeHierarchy">
3785           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3786       </Docs>
3787     </Member>
3788     <Member MemberName="WriteXml">
3789       <MemberSignature Language="C#" Value="public void WriteXml (System.Xml.XmlWriter writer, System.Data.XmlWriteMode mode, bool writeHierarchy);" />
3790       <MemberType>Method</MemberType>
3791       <AssemblyInfo>
3792         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3793       </AssemblyInfo>
3794       <ReturnValue>
3795         <ReturnType>System.Void</ReturnType>
3796       </ReturnValue>
3797       <Parameters>
3798         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3799         <Parameter Name="mode" Type="System.Data.XmlWriteMode" />
3800         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3801       </Parameters>
3802       <Docs>
3803         <remarks>
3804           <attribution license="cc4" from="Microsoft" modified="false" />
3805           <para>The <see cref="Overload:System.Data.DataTable.WriteXml" /> method provides a way to write either data only, or both data and schema from a <see cref="T:System.Data.DataTable" /> into an XML document, whereas the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method writes only the schema. To write both data and schema, use one of the overloads that include the <see cref="T:System.Data.XmlWriteMode" /> parameter, and set its value to WriteSchema.</para>
3806           <para>Note that the same is true for the <see cref="Overload:System.Data.DataTable.ReadXml" /> and <see cref="Overload:System.Data.DataTable.ReadXmlSchema" /> methods, respectively. To read XML data, or both schema and data into the DataTable, use the ReadXml method. To read just the schema, use the ReadXmlSchema method.</para>
3807           <para>Normally the WriteXml method writes the data only for the current table. To write the data for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3808           <block subset="none" type="note">
3809             <para>An <see cref="T:System.InvalidOperationException" /> will be thrown if a column type in the DataRow being read from or written to implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> and does not implement <see cref="T:System.Xml.Serialization.IXmlSerializable" />.</para>
3810           </block>
3811         </remarks>
3812         <summary>
3813           <attribution license="cc4" from="Microsoft" modified="false" />
3814           <para>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3815         </summary>
3816         <param name="writer">
3817           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> used to write the document. </param>
3818         <param name="mode">
3819           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.XmlWriteMode" /> values. </param>
3820         <param name="writeHierarchy">
3821           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
3822       </Docs>
3823     </Member>
3824     <Member MemberName="WriteXmlSchema">
3825       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.IO.Stream stream);" />
3826       <MemberType>Method</MemberType>
3827       <AssemblyInfo>
3828         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3829       </AssemblyInfo>
3830       <ReturnValue>
3831         <ReturnType>System.Void</ReturnType>
3832       </ReturnValue>
3833       <Parameters>
3834         <Parameter Name="stream" Type="System.IO.Stream" />
3835       </Parameters>
3836       <Docs>
3837         <remarks>
3838           <attribution license="cc4" from="Microsoft" modified="false" />
3839           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3840           <para>The XML schema is written using the XSD standard.</para>
3841           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3842         </remarks>
3843         <summary>
3844           <attribution license="cc4" from="Microsoft" modified="false" />
3845           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified stream.</para>
3846         </summary>
3847         <param name="stream">
3848           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the XML schema will be written. </param>
3849       </Docs>
3850     </Member>
3851     <Member MemberName="WriteXmlSchema">
3852       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.IO.TextWriter writer);" />
3853       <MemberType>Method</MemberType>
3854       <AssemblyInfo>
3855         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3856       </AssemblyInfo>
3857       <ReturnValue>
3858         <ReturnType>System.Void</ReturnType>
3859       </ReturnValue>
3860       <Parameters>
3861         <Parameter Name="writer" Type="System.IO.TextWriter" />
3862       </Parameters>
3863       <Docs>
3864         <remarks>
3865           <attribution license="cc4" from="Microsoft" modified="false" />
3866           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3867           <para>The XML schema is written using the XSD standard.</para>
3868           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3869         </remarks>
3870         <summary>
3871           <attribution license="cc4" from="Microsoft" modified="false" />
3872           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.IO.TextWriter" />.</para>
3873         </summary>
3874         <param name="writer">
3875           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> with which to write. </param>
3876       </Docs>
3877     </Member>
3878     <Member MemberName="WriteXmlSchema">
3879       <MemberSignature Language="C#" Value="public void WriteXmlSchema (string fileName);" />
3880       <MemberType>Method</MemberType>
3881       <AssemblyInfo>
3882         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3883       </AssemblyInfo>
3884       <ReturnValue>
3885         <ReturnType>System.Void</ReturnType>
3886       </ReturnValue>
3887       <Parameters>
3888         <Parameter Name="fileName" Type="System.String" />
3889       </Parameters>
3890       <Docs>
3891         <remarks>
3892           <attribution license="cc4" from="Microsoft" modified="false" />
3893           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3894           <para>The XML schema is written using the XSD standard.</para>
3895           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3896         </remarks>
3897         <summary>
3898           <attribution license="cc4" from="Microsoft" modified="false" />
3899           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified file.</para>
3900         </summary>
3901         <param name="fileName">
3902           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file to use. </param>
3903       </Docs>
3904     </Member>
3905     <Member MemberName="WriteXmlSchema">
3906       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.Xml.XmlWriter writer);" />
3907       <MemberType>Method</MemberType>
3908       <AssemblyInfo>
3909         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3910       </AssemblyInfo>
3911       <ReturnValue>
3912         <ReturnType>System.Void</ReturnType>
3913       </ReturnValue>
3914       <Parameters>
3915         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
3916       </Parameters>
3917       <Docs>
3918         <remarks>
3919           <attribution license="cc4" from="Microsoft" modified="false" />
3920           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3921           <para>The XML schema is written using the XSD standard.</para>
3922           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3923         </remarks>
3924         <summary>
3925           <attribution license="cc4" from="Microsoft" modified="false" />
3926           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter" />.</para>
3927         </summary>
3928         <param name="writer">
3929           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> to use. </param>
3930       </Docs>
3931     </Member>
3932     <Member MemberName="WriteXmlSchema">
3933       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.IO.Stream stream, bool writeHierarchy);" />
3934       <MemberType>Method</MemberType>
3935       <AssemblyInfo>
3936         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3937       </AssemblyInfo>
3938       <ReturnValue>
3939         <ReturnType>System.Void</ReturnType>
3940       </ReturnValue>
3941       <Parameters>
3942         <Parameter Name="stream" Type="System.IO.Stream" />
3943         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3944       </Parameters>
3945       <Docs>
3946         <remarks>
3947           <attribution license="cc4" from="Microsoft" modified="false" />
3948           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3949           <para>The XML schema is written using the XSD standard.</para>
3950           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3951           <para>Normally the WriteXmlSchema method writes the schema only for the current table. To write the schema for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3952         </remarks>
3953         <summary>
3954           <attribution license="cc4" from="Microsoft" modified="false" />
3955           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified stream. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3956         </summary>
3957         <param name="stream">
3958           <attribution license="cc4" from="Microsoft" modified="false" />The stream to which the XML schema will be written. </param>
3959         <param name="writeHierarchy">
3960           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
3961       </Docs>
3962     </Member>
3963     <Member MemberName="WriteXmlSchema">
3964       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.IO.TextWriter writer, bool writeHierarchy);" />
3965       <MemberType>Method</MemberType>
3966       <AssemblyInfo>
3967         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3968       </AssemblyInfo>
3969       <ReturnValue>
3970         <ReturnType>System.Void</ReturnType>
3971       </ReturnValue>
3972       <Parameters>
3973         <Parameter Name="writer" Type="System.IO.TextWriter" />
3974         <Parameter Name="writeHierarchy" Type="System.Boolean" />
3975       </Parameters>
3976       <Docs>
3977         <remarks>
3978           <attribution license="cc4" from="Microsoft" modified="false" />
3979           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
3980           <para>The XML schema is written using the XSD standard.</para>
3981           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
3982           <para>Normally the WriteXmlSchema method writes the schema only for the current table. To write the schema for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
3983         </remarks>
3984         <summary>
3985           <attribution license="cc4" from="Microsoft" modified="false" />
3986           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.IO.TextWriter" />. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
3987         </summary>
3988         <param name="writer">
3989           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.IO.TextWriter" /> with which to write. </param>
3990         <param name="writeHierarchy">
3991           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
3992       </Docs>
3993     </Member>
3994     <Member MemberName="WriteXmlSchema">
3995       <MemberSignature Language="C#" Value="public void WriteXmlSchema (string fileName, bool writeHierarchy);" />
3996       <MemberType>Method</MemberType>
3997       <AssemblyInfo>
3998         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3999       </AssemblyInfo>
4000       <ReturnValue>
4001         <ReturnType>System.Void</ReturnType>
4002       </ReturnValue>
4003       <Parameters>
4004         <Parameter Name="fileName" Type="System.String" />
4005         <Parameter Name="writeHierarchy" Type="System.Boolean" />
4006       </Parameters>
4007       <Docs>
4008         <remarks>
4009           <attribution license="cc4" from="Microsoft" modified="false" />
4010           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
4011           <para>The XML schema is written using the XSD standard.</para>
4012           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
4013           <para>Normally the WriteXmlSchema method writes the schema only for the current table. To write the schema for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
4014         </remarks>
4015         <summary>
4016           <attribution license="cc4" from="Microsoft" modified="false" />
4017           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified file. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
4018         </summary>
4019         <param name="fileName">
4020           <attribution license="cc4" from="Microsoft" modified="false" />The name of the file to use. </param>
4021         <param name="writeHierarchy">
4022           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
4023       </Docs>
4024     </Member>
4025     <Member MemberName="WriteXmlSchema">
4026       <MemberSignature Language="C#" Value="public void WriteXmlSchema (System.Xml.XmlWriter writer, bool writeHierarchy);" />
4027       <MemberType>Method</MemberType>
4028       <AssemblyInfo>
4029         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4030       </AssemblyInfo>
4031       <ReturnValue>
4032         <ReturnType>System.Void</ReturnType>
4033       </ReturnValue>
4034       <Parameters>
4035         <Parameter Name="writer" Type="System.Xml.XmlWriter" />
4036         <Parameter Name="writeHierarchy" Type="System.Boolean" />
4037       </Parameters>
4038       <Docs>
4039         <remarks>
4040           <attribution license="cc4" from="Microsoft" modified="false" />
4041           <para>Use the <see cref="Overload:System.Data.DataTable.WriteXmlSchema" /> method to write the schema for a <see cref="T:System.Data.DataTable" /> to an XML document. The schema includes table, relation, and constraint definitions. </para>
4042           <para>The XML schema is written using the XSD standard.</para>
4043           <para>To write the data to an XML document, use the <see cref="Overload:System.Data.DataTable.WriteXml" /> method.</para>
4044           <para>Normally the WriteXmlSchema method writes the schema only for the current table. To write the schema for the current table and its entire descendant, related tables, call the method with the <paramref name="writeHierarchy" /> parameter set to true.</para>
4045         </remarks>
4046         <summary>
4047           <attribution license="cc4" from="Microsoft" modified="false" />
4048           <para>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter" />. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to true.</para>
4049         </summary>
4050         <param name="writer">
4051           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlWriter" /> used to write the document. </param>
4052         <param name="writeHierarchy">
4053           <attribution license="cc4" from="Microsoft" modified="false" />If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
4054       </Docs>
4055     </Member>
4056   </Members>
4057 </Type>