Merge pull request #966 from ermshiperete/bug-xamarin-18511
[mono.git] / mcs / class / System.Data / Documentation / en / System.Data / DataRow.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DataRow" FullName="System.Data.DataRow">
3   <TypeSignature Language="C#" Value="public class DataRow" Maintainer="auto" />
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.Object</BaseTypeName>
14   </Base>
15   <Interfaces />
16   <Docs>
17     <remarks>
18       <attribution license="cc4" from="Microsoft" modified="false" />
19       <para>The <see cref="T:System.Data.DataRow" /> and <see cref="T:System.Data.DataColumn" /> objects are primary components of a <see cref="T:System.Data.DataTable" />. Use the <see cref="T:System.Data.DataRow" /> object and its properties and methods to retrieve and evaluate; and insert, delete, and update the values in the <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataRowCollection" /> represents the actual <see cref="T:System.Data.DataRow" /> objects in the <see cref="T:System.Data.DataTable" />, and the <see cref="T:System.Data.DataColumnCollection" /> contains the <see cref="T:System.Data.DataColumn" /> objects that describe the schema of the <see cref="T:System.Data.DataTable" />. Use the overloaded <see cref="P:System.Data.DataRow.Item(System.Int32)" /> property to return or set the value of a <see cref="T:System.Data.DataColumn" />.</para>
20       <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> and <see cref="M:System.Data.DataRow.IsNull(System.Int32)" /> properties to determine the status of a particular row value, and the <see cref="P:System.Data.DataRow.RowState" /> property to determine the state of the row relative to its parent <see cref="T:System.Data.DataTable" />.</para>
21       <para>To create a new <see cref="T:System.Data.DataRow" />, use the <see cref="M:System.Data.DataTable.NewRow" /> method of the <see cref="T:System.Data.DataTable" /> object. After creating a new <see cref="T:System.Data.DataRow" />, use the <see cref="M:System.Data.DataRowCollection.Add(System.Data.DataRow)" /> method to add the new <see cref="T:System.Data.DataRow" /> to the <see cref="T:System.Data.DataRowCollection" />. Finally, call the <see cref="M:System.Data.DataRow.AcceptChanges" /> method of the <see cref="T:System.Data.DataTable" /> object to confirm the addition. For more information about adding data to a <see cref="T:System.Data.DataTable" />, see <format type="text/html"><a href="d6aa8474-7bde-48f7-949d-20dc38a1625b">Adding Data to a Table</a></format>.</para>
22       <para>You can delete a <see cref="T:System.Data.DataRow" /> from the <see cref="T:System.Data.DataRowCollection" /> by calling the <see cref="M:System.Data.DataRowCollection.Remove(System.Data.DataRow)" /> method of the <see cref="T:System.Data.DataRowCollection" />, or by calling the <see cref="M:System.Data.DataRow.Delete" /> method of the <see cref="T:System.Data.DataRow" /> object. The <see cref="M:System.Data.DataRowCollection.Remove(System.Data.DataRow)" /> method removes the row from the collection. In contrast, <see cref="M:System.Data.DataRow.Delete" /> marks the <see cref="T:System.Data.DataRow" /> for removal. The actual removal occurs when you call <see cref="M:System.Data.DataRow.AcceptChanges" /> method. By calling <see cref="M:System.Data.DataRow.Delete" />, you can programmatically check which rows are marked for removal before actually deleting them. For more information, see <format type="text/html"><a href="c34f531d-4b9b-4071-b2d7-342c402aa586">Deleting a Row from a Table</a></format>.</para>
23     </remarks>
24     <summary>
25       <attribution license="cc4" from="Microsoft" modified="false" />
26       <para>Represents a row of data in a <see cref="T:System.Data.DataTable" />.</para>
27     </summary>
28   </Docs>
29   <Members>
30     <Member MemberName=".ctor">
31       <MemberSignature Language="C#" Value="protected DataRow (System.Data.DataRowBuilder builder);" />
32       <MemberType>Constructor</MemberType>
33       <AssemblyInfo>
34         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
35         <AssemblyVersion>2.0.0.0</AssemblyVersion>
36       </AssemblyInfo>
37       <Parameters>
38         <Parameter Name="builder" Type="System.Data.DataRowBuilder" />
39       </Parameters>
40       <Docs>
41         <remarks>To be added.</remarks>
42         <summary>
43           <attribution license="cc4" from="Microsoft" modified="false" />
44           <para>Initializes a new instance of the DataRow. Constructs a row from the builder. Only for internal usage..</para>
45         </summary>
46         <param name="builder">
47           <attribution license="cc4" from="Microsoft" modified="false" />builder </param>
48       </Docs>
49     </Member>
50     <Member MemberName="AcceptChanges">
51       <MemberSignature Language="C#" Value="public void AcceptChanges ();" />
52       <MemberType>Method</MemberType>
53       <ReturnValue>
54         <ReturnType>System.Void</ReturnType>
55       </ReturnValue>
56       <Parameters />
57       <Docs>
58         <remarks>
59           <attribution license="cc4" from="Microsoft" modified="false" />
60           <para>When invoking <see cref="M:System.Data.DataRow.AcceptChanges" />, the <see cref="M:System.Data.DataRow.EndEdit" /> method is implicitly called to end any edits. If the <see cref="P:System.Data.DataRow.RowState" /> of the row was Added or Modified, the <see cref="P:System.Data.DataRow.RowState" /> becomes Unchanged. If the <see cref="P:System.Data.DataRow.RowState" /> was Deleted, the row is removed.</para>
61           <para>See the <see cref="M:System.Data.DataRow.BeginEdit" /> method for more information.</para>
62           <para>The <see cref="T:System.Data.DataTable" /> class also has an <see cref="M:System.Data.DataTable.AcceptChanges" /> method which affects changes made to the whole table. For more information and a code example that demonstrates how to accept and reject changes to individual data rows, see <format type="text/html"><a href="e2d1a6fe-31f9-4b83-9728-06c406a3394e">AcceptChanges and RejectChanges</a></format>.</para>
63         </remarks>
64         <summary>
65           <attribution license="cc4" from="Microsoft" modified="false" />
66           <para>Commits all the changes made to this row since the last time <see cref="M:System.Data.DataRow.AcceptChanges" /> was called.</para>
67         </summary>
68       </Docs>
69       <AssemblyInfo>
70         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
71         <AssemblyVersion>2.0.0.0</AssemblyVersion>
72       </AssemblyInfo>
73     </Member>
74     <Member MemberName="BeginEdit">
75       <MemberSignature Language="C#" Value="public void BeginEdit ();" />
76       <MemberType>Method</MemberType>
77       <ReturnValue>
78         <ReturnType>System.Void</ReturnType>
79       </ReturnValue>
80       <Parameters />
81       <Docs>
82         <remarks>
83           <attribution license="cc4" from="Microsoft" modified="false" />
84           <para>Use the <see cref="M:System.Data.DataRow.BeginEdit" /> method to put a <see cref="T:System.Data.DataRow" /> into edit mode. In this mode, events are temporarily suspended, letting the user make changes to more than one row without triggering validation rules. For example, if you must make sure that the value of the column for a total amount is equal to the values for the debit and credit columns in a row, you can put each row into edit mode to suspend the validation of the row values until the user tries to commit the values.</para>
85           <para>The <see cref="M:System.Data.DataRow.BeginEdit" /> method is called implicitly when the user changes the value of a data-bound control; the <see cref="M:System.Data.DataRow.EndEdit" /> method is called implicitly when you invoke the <see cref="M:System.Data.DataTable.AcceptChanges" /> method for the <see cref="T:System.Data.DataTable" /> object. While in this edit mode, the <see cref="T:System.Data.DataRow" /> stores representations of the original and new proposed values. Therefore, as long as the <see cref="M:System.Data.DataRow.EndEdit" /> method has not been called, you can retrieve either the original or proposed version by passing either DataRowVersion.Original or DataRowVersion.Proposed for the <paramref name="version" /> parameter of the <see cref="P:System.Data.DataRow.Item(System.Int32)" /> property. You can also cancel any edits at this point by invoking the <see cref="M:System.Data.DataRow.CancelEdit" /> method.</para>
86           <para>To see if the row contains an original or proposed value, call the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> method.</para>
87           <block subset="none" type="note">
88             <para>The <see cref="M:System.Data.DataRow.BeginEdit" /> method temporarily suspends <see cref="E:System.Data.DataTable.RowChanging" /> events, but the delete operation does not.</para>
89           </block>
90         </remarks>
91         <summary>
92           <attribution license="cc4" from="Microsoft" modified="false" />
93           <para>Starts an edit operation on a <see cref="T:System.Data.DataRow" /> object.</para>
94         </summary>
95       </Docs>
96       <AssemblyInfo>
97         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
98         <AssemblyVersion>2.0.0.0</AssemblyVersion>
99       </AssemblyInfo>
100       <Attributes>
101         <Attribute>
102           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
103         </Attribute>
104       </Attributes>
105     </Member>
106     <Member MemberName="CancelEdit">
107       <MemberSignature Language="C#" Value="public void CancelEdit ();" />
108       <MemberType>Method</MemberType>
109       <ReturnValue>
110         <ReturnType>System.Void</ReturnType>
111       </ReturnValue>
112       <Parameters />
113       <Docs>
114         <remarks>
115           <attribution license="cc4" from="Microsoft" modified="false" />
116           <para>See the <see cref="M:System.Data.DataRow.BeginEdit" /> method for more information.</para>
117         </remarks>
118         <summary>
119           <attribution license="cc4" from="Microsoft" modified="false" />
120           <para>Cancels the current edit on the row.</para>
121         </summary>
122       </Docs>
123       <AssemblyInfo>
124         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
125         <AssemblyVersion>2.0.0.0</AssemblyVersion>
126       </AssemblyInfo>
127       <Attributes>
128         <Attribute>
129           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
130         </Attribute>
131       </Attributes>
132     </Member>
133     <Member MemberName="ClearErrors">
134       <MemberSignature Language="C#" Value="public void ClearErrors ();" />
135       <MemberType>Method</MemberType>
136       <ReturnValue>
137         <ReturnType>System.Void</ReturnType>
138       </ReturnValue>
139       <Parameters />
140       <Docs>
141         <remarks>
142           <attribution license="cc4" from="Microsoft" modified="false" />
143           <para>Use <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> and <see cref="M:System.Data.DataRow.GetColumnError(System.Int32)" /> to set and return errors for individual columns.</para>
144           <para>Set the <see cref="P:System.Data.DataRow.RowError" /> property to set an error that applies to the whole row.</para>
145           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors.</para>
146         </remarks>
147         <summary>
148           <attribution license="cc4" from="Microsoft" modified="false" />
149           <para>Clears the errors for the row. This includes the <see cref="P:System.Data.DataRow.RowError" /> and errors set with <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" />.</para>
150         </summary>
151       </Docs>
152       <AssemblyInfo>
153         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
154         <AssemblyVersion>2.0.0.0</AssemblyVersion>
155       </AssemblyInfo>
156     </Member>
157     <Member MemberName="Delete">
158       <MemberSignature Language="C#" Value="public void Delete ();" />
159       <MemberType>Method</MemberType>
160       <ReturnValue>
161         <ReturnType>System.Void</ReturnType>
162       </ReturnValue>
163       <Parameters />
164       <Docs>
165         <remarks>
166           <attribution license="cc4" from="Microsoft" modified="false" />
167           <para>If the <see cref="P:System.Data.DataRow.RowState" /> of the row is Added, the <see cref="P:System.Data.DataRow.RowState" /> becomes Detached and the row is removed from the table when you call <see cref="M:System.Data.DataRow.AcceptChanges" />.</para>
168           <para>The <see cref="P:System.Data.DataRow.RowState" /> becomes Deleted after you use the <see cref="M:System.Data.DataRow.Delete" /> method on an existing <see cref="T:System.Data.DataRow" />. It remains Deleted until you call <see cref="M:System.Data.DataRow.AcceptChanges" />. At this time, the <see cref="T:System.Data.DataRow" /> is removed from the table.</para>
169           <para>
170             <see cref="M:System.Data.DataRow.Delete" /> should not be called in a foreach loop while iterating through a <see cref="T:System.Data.DataRowCollection" /> object. <see cref="M:System.Data.DataRow.Delete" /> modifies the state of the collection.</para>
171           <para>A deleted row can be undeleted by invoking <see cref="M:System.Data.DataRow.RejectChanges" />.</para>
172           <block subset="none" type="note">
173             <para>The <see cref="M:System.Data.DataRow.BeginEdit" /> method temporarily suspends <see cref="E:System.Data.DataTable.RowChanging" /> events, but the delete operation does not.</para>
174           </block>
175         </remarks>
176         <summary>
177           <attribution license="cc4" from="Microsoft" modified="false" />
178           <para>Deletes the <see cref="T:System.Data.DataRow" />.</para>
179         </summary>
180       </Docs>
181       <AssemblyInfo>
182         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
183         <AssemblyVersion>2.0.0.0</AssemblyVersion>
184       </AssemblyInfo>
185     </Member>
186     <Member MemberName="EndEdit">
187       <MemberSignature Language="C#" Value="public void EndEdit ();" />
188       <MemberType>Method</MemberType>
189       <ReturnValue>
190         <ReturnType>System.Void</ReturnType>
191       </ReturnValue>
192       <Parameters />
193       <Docs>
194         <remarks>
195           <attribution license="cc4" from="Microsoft" modified="false" />
196           <para>When you set the property, an exception is generated if an exception occurs in the <see cref="E:System.Data.DataTable.RowChanging" /> event.</para>
197         </remarks>
198         <summary>
199           <attribution license="cc4" from="Microsoft" modified="false" />
200           <para>Ends the edit occurring on the row.</para>
201         </summary>
202       </Docs>
203       <AssemblyInfo>
204         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
205         <AssemblyVersion>2.0.0.0</AssemblyVersion>
206       </AssemblyInfo>
207       <Attributes>
208         <Attribute>
209           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
210         </Attribute>
211       </Attributes>
212     </Member>
213     <Member MemberName="GetChildRows">
214       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetChildRows (System.Data.DataRelation relation);" />
215       <MemberType>Method</MemberType>
216       <ReturnValue>
217         <ReturnType>System.Data.DataRow[]</ReturnType>
218       </ReturnValue>
219       <Parameters>
220         <Parameter Name="relation" Type="System.Data.DataRelation" />
221       </Parameters>
222       <Docs>
223         <returns>To be added: an object of type 'DataRow []'</returns>
224         <remarks>
225           <attribution license="cc4" from="Microsoft" modified="false" />
226           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects that is returned by the <see cref="P:System.Data.DataTable.ChildRelations" /> property.</para>
227         </remarks>
228         <summary>
229           <attribution license="cc4" from="Microsoft" modified="false" />
230           <para>Gets the child rows of this <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</para>
231         </summary>
232         <param name="relation">
233           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
234       </Docs>
235       <AssemblyInfo>
236         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
237         <AssemblyVersion>2.0.0.0</AssemblyVersion>
238       </AssemblyInfo>
239     </Member>
240     <Member MemberName="GetChildRows">
241       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetChildRows (string relationName);" />
242       <MemberType>Method</MemberType>
243       <ReturnValue>
244         <ReturnType>System.Data.DataRow[]</ReturnType>
245       </ReturnValue>
246       <Parameters>
247         <Parameter Name="relationName" Type="System.String" />
248       </Parameters>
249       <Docs>
250         <returns>To be added: an object of type 'DataRow []'</returns>
251         <remarks>
252           <attribution license="cc4" from="Microsoft" modified="false" />
253           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects that is returned by the <see cref="P:System.Data.DataTable.ChildRelations" /> property.</para>
254         </remarks>
255         <summary>
256           <attribution license="cc4" from="Microsoft" modified="false" />
257           <para>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</para>
258         </summary>
259         <param name="relationName">
260           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use. </param>
261       </Docs>
262       <AssemblyInfo>
263         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
264         <AssemblyVersion>2.0.0.0</AssemblyVersion>
265       </AssemblyInfo>
266     </Member>
267     <Member MemberName="GetChildRows">
268       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetChildRows (System.Data.DataRelation relation, System.Data.DataRowVersion version);" />
269       <MemberType>Method</MemberType>
270       <ReturnValue>
271         <ReturnType>System.Data.DataRow[]</ReturnType>
272       </ReturnValue>
273       <Parameters>
274         <Parameter Name="relation" Type="System.Data.DataRelation" />
275         <Parameter Name="version" Type="System.Data.DataRowVersion" />
276       </Parameters>
277       <Docs>
278         <returns>To be added: an object of type 'DataRow []'</returns>
279         <remarks>
280           <attribution license="cc4" from="Microsoft" modified="false" />
281           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects that is returned by the <see cref="P:System.Data.DataTable.ChildRelations" /> property.</para>
282           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
283           <para>If <see cref="F:System.Data.DataRowVersion.Default" /> is specified, the version that is used depends on the <see cref="P:System.Data.DataRow.RowState" /> of the row on which GetChildRows is invoked. If the row on which GetChildRows is invoked has a RowState of Modified, New, or Unchanged, the <see cref="F:System.Data.DataRowVersion.Current" /> version of the row is used for fetching related child rows with matching values in their Current versions. If the row on which GetChildRows is invoked has a RowState of Deleted, the <see cref="F:System.Data.DataRowVersion.Original" /> version of the row is used for fetching related child rows with matching values in their original versions.</para>
284         </remarks>
285         <summary>
286           <attribution license="cc4" from="Microsoft" modified="false" />
287           <para>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
288         </summary>
289         <param name="relation">
290           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
291         <param name="version">
292           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed. </param>
293       </Docs>
294       <AssemblyInfo>
295         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
296         <AssemblyVersion>2.0.0.0</AssemblyVersion>
297       </AssemblyInfo>
298     </Member>
299     <Member MemberName="GetChildRows">
300       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetChildRows (string relationName, System.Data.DataRowVersion version);" />
301       <MemberType>Method</MemberType>
302       <ReturnValue>
303         <ReturnType>System.Data.DataRow[]</ReturnType>
304       </ReturnValue>
305       <Parameters>
306         <Parameter Name="relationName" Type="System.String" />
307         <Parameter Name="version" Type="System.Data.DataRowVersion" />
308       </Parameters>
309       <Docs>
310         <returns>To be added: an object of type 'DataRow []'</returns>
311         <remarks>
312           <attribution license="cc4" from="Microsoft" modified="false" />
313           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects that is returned by the <see cref="P:System.Data.DataTable.ChildRelations" /> property.</para>
314           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
315           <para>If <see cref="F:System.Data.DataRowVersion.Default" /> is specified, the version that is used depends on the <see cref="P:System.Data.DataRow.RowState" /> of the row on which GetChildRows is invoked. If the row on which GetChildRows is invoked has a RowState of Modified, New, or Unchanged, the <see cref="F:System.Data.DataRowVersion.Current" /> version of the row is used for fetching related child rows with matching values in their Current versions. If the row on which GetChildRows is invoked has a RowState of Deleted, the <see cref="F:System.Data.DataRowVersion.Original" /> version of the row is used for fetching related child rows with matching values in their original versions.</para>
316         </remarks>
317         <summary>
318           <attribution license="cc4" from="Microsoft" modified="false" />
319           <para>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
320         </summary>
321         <param name="relationName">
322           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use. </param>
323         <param name="version">
324           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed. </param>
325       </Docs>
326       <AssemblyInfo>
327         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
328         <AssemblyVersion>2.0.0.0</AssemblyVersion>
329       </AssemblyInfo>
330     </Member>
331     <Member MemberName="GetColumnError">
332       <MemberSignature Language="C#" Value="public string GetColumnError (System.Data.DataColumn column);" />
333       <MemberType>Method</MemberType>
334       <ReturnValue>
335         <ReturnType>System.String</ReturnType>
336       </ReturnValue>
337       <Parameters>
338         <Parameter Name="column" Type="System.Data.DataColumn" />
339       </Parameters>
340       <Docs>
341         <returns>To be added: an object of type 'string'</returns>
342         <remarks>
343           <attribution license="cc4" from="Microsoft" modified="false" />
344           <para>Use the <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> method to set column errors.</para>
345           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors. Alternatively, the <see cref="M:System.Data.DataTable.GetErrors" /> method of the <see cref="T:System.Data.DataTable" /> returns all rows with errors.</para>
346           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
347         </remarks>
348         <summary>
349           <attribution license="cc4" from="Microsoft" modified="false" />
350           <para>Gets the error description of the specified <see cref="T:System.Data.DataColumn" />.</para>
351         </summary>
352         <param name="column">
353           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumn" />. </param>
354       </Docs>
355       <AssemblyInfo>
356         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
357         <AssemblyVersion>2.0.0.0</AssemblyVersion>
358       </AssemblyInfo>
359     </Member>
360     <Member MemberName="GetColumnError">
361       <MemberSignature Language="C#" Value="public string GetColumnError (int columnIndex);" />
362       <MemberType>Method</MemberType>
363       <ReturnValue>
364         <ReturnType>System.String</ReturnType>
365       </ReturnValue>
366       <Parameters>
367         <Parameter Name="columnIndex" Type="System.Int32" />
368       </Parameters>
369       <Docs>
370         <returns>To be added: an object of type 'string'</returns>
371         <remarks>
372           <attribution license="cc4" from="Microsoft" modified="false" />
373           <para>Use the <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> method to set column errors.</para>
374           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors.</para>
375           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
376         </remarks>
377         <summary>
378           <attribution license="cc4" from="Microsoft" modified="false" />
379           <para>Gets the error description for the column specified by index.</para>
380         </summary>
381         <param name="columnIndex">
382           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the column. </param>
383       </Docs>
384       <AssemblyInfo>
385         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
386         <AssemblyVersion>2.0.0.0</AssemblyVersion>
387       </AssemblyInfo>
388     </Member>
389     <Member MemberName="GetColumnError">
390       <MemberSignature Language="C#" Value="public string GetColumnError (string columnName);" />
391       <MemberType>Method</MemberType>
392       <ReturnValue>
393         <ReturnType>System.String</ReturnType>
394       </ReturnValue>
395       <Parameters>
396         <Parameter Name="columnName" Type="System.String" />
397       </Parameters>
398       <Docs>
399         <returns>To be added: an object of type 'string'</returns>
400         <remarks>
401           <attribution license="cc4" from="Microsoft" modified="false" />
402           <para>Use the <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> method to set column errors.</para>
403           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors.</para>
404           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
405         </remarks>
406         <summary>
407           <attribution license="cc4" from="Microsoft" modified="false" />
408           <para>Gets the error description for a column, specified by name.</para>
409         </summary>
410         <param name="columnName">
411           <attribution license="cc4" from="Microsoft" modified="false" />The name of the column. </param>
412       </Docs>
413       <AssemblyInfo>
414         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
415         <AssemblyVersion>2.0.0.0</AssemblyVersion>
416       </AssemblyInfo>
417     </Member>
418     <Member MemberName="GetColumnsInError">
419       <MemberSignature Language="C#" Value="public System.Data.DataColumn[] GetColumnsInError ();" />
420       <MemberType>Method</MemberType>
421       <ReturnValue>
422         <ReturnType>System.Data.DataColumn[]</ReturnType>
423       </ReturnValue>
424       <Parameters />
425       <Docs>
426         <returns>To be added: an object of type 'DataColumn []'</returns>
427         <remarks>
428           <attribution license="cc4" from="Microsoft" modified="false" />
429           <para>The <see cref="M:System.Data.DataRow.GetColumnsInError" /> lets you reduce the number of <see cref="T:System.Data.DataColumn" /> objects that must be processed for errors by returning only those columns that have an error. Errors can be set to individual columns with the <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> method. To further reduce the number of processing, examine the <see cref="P:System.Data.DataRow.HasErrors" /> property of the <see cref="T:System.Data.DataRow" /> class to determine whether a <see cref="T:System.Data.DataRow" /> has errors before invoking <see cref="M:System.Data.DataRow.GetColumnsInError" />.</para>
430           <para>Use the <see cref="M:System.Data.DataRow.ClearErrors" /> method to clear all errors on the row. This includes the <see cref="P:System.Data.DataRow.RowError" />.</para>
431         </remarks>
432         <summary>
433           <attribution license="cc4" from="Microsoft" modified="false" />
434           <para>Gets an array of columns that have errors.</para>
435         </summary>
436       </Docs>
437       <AssemblyInfo>
438         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
439         <AssemblyVersion>2.0.0.0</AssemblyVersion>
440       </AssemblyInfo>
441     </Member>
442     <Member MemberName="GetParentRow">
443       <MemberSignature Language="C#" Value="public System.Data.DataRow GetParentRow (System.Data.DataRelation relation);" />
444       <MemberType>Method</MemberType>
445       <ReturnValue>
446         <ReturnType>System.Data.DataRow</ReturnType>
447       </ReturnValue>
448       <Parameters>
449         <Parameter Name="relation" Type="System.Data.DataRelation" />
450       </Parameters>
451       <Docs>
452         <returns>To be added: an object of type 'DataRow'</returns>
453         <remarks>
454           <attribution license="cc4" from="Microsoft" modified="false" />
455           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
456           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
457         </remarks>
458         <summary>
459           <attribution license="cc4" from="Microsoft" modified="false" />
460           <para>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</para>
461         </summary>
462         <param name="relation">
463           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
464       </Docs>
465       <AssemblyInfo>
466         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
467         <AssemblyVersion>2.0.0.0</AssemblyVersion>
468       </AssemblyInfo>
469     </Member>
470     <Member MemberName="GetParentRow">
471       <MemberSignature Language="C#" Value="public System.Data.DataRow GetParentRow (string relationName);" />
472       <MemberType>Method</MemberType>
473       <ReturnValue>
474         <ReturnType>System.Data.DataRow</ReturnType>
475       </ReturnValue>
476       <Parameters>
477         <Parameter Name="relationName" Type="System.String" />
478       </Parameters>
479       <Docs>
480         <returns>To be added: an object of type 'DataRow'</returns>
481         <remarks>
482           <attribution license="cc4" from="Microsoft" modified="false" />
483           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
484           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
485         </remarks>
486         <summary>
487           <attribution license="cc4" from="Microsoft" modified="false" />
488           <para>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</para>
489         </summary>
490         <param name="relationName">
491           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />. </param>
492       </Docs>
493       <AssemblyInfo>
494         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
495         <AssemblyVersion>2.0.0.0</AssemblyVersion>
496       </AssemblyInfo>
497     </Member>
498     <Member MemberName="GetParentRow">
499       <MemberSignature Language="C#" Value="public System.Data.DataRow GetParentRow (System.Data.DataRelation relation, System.Data.DataRowVersion version);" />
500       <MemberType>Method</MemberType>
501       <ReturnValue>
502         <ReturnType>System.Data.DataRow</ReturnType>
503       </ReturnValue>
504       <Parameters>
505         <Parameter Name="relation" Type="System.Data.DataRelation" />
506         <Parameter Name="version" Type="System.Data.DataRowVersion" />
507       </Parameters>
508       <Docs>
509         <returns>To be added: an object of type 'DataRow'</returns>
510         <remarks>
511           <attribution license="cc4" from="Microsoft" modified="false" />
512           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
513           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
514           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
515         </remarks>
516         <summary>
517           <attribution license="cc4" from="Microsoft" modified="false" />
518           <para>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
519         </summary>
520         <param name="relation">
521           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
522         <param name="version">
523           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. </param>
524       </Docs>
525       <AssemblyInfo>
526         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
527         <AssemblyVersion>2.0.0.0</AssemblyVersion>
528       </AssemblyInfo>
529     </Member>
530     <Member MemberName="GetParentRow">
531       <MemberSignature Language="C#" Value="public System.Data.DataRow GetParentRow (string relationName, System.Data.DataRowVersion version);" />
532       <MemberType>Method</MemberType>
533       <ReturnValue>
534         <ReturnType>System.Data.DataRow</ReturnType>
535       </ReturnValue>
536       <Parameters>
537         <Parameter Name="relationName" Type="System.String" />
538         <Parameter Name="version" Type="System.Data.DataRowVersion" />
539       </Parameters>
540       <Docs>
541         <returns>To be added: an object of type 'DataRow'</returns>
542         <remarks>
543           <attribution license="cc4" from="Microsoft" modified="false" />
544           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
545           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
546           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
547         </remarks>
548         <summary>
549           <attribution license="cc4" from="Microsoft" modified="false" />
550           <para>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
551         </summary>
552         <param name="relationName">
553           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />. </param>
554         <param name="version">
555           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
556       </Docs>
557       <AssemblyInfo>
558         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
559         <AssemblyVersion>2.0.0.0</AssemblyVersion>
560       </AssemblyInfo>
561     </Member>
562     <Member MemberName="GetParentRows">
563       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetParentRows (System.Data.DataRelation relation);" />
564       <MemberType>Method</MemberType>
565       <ReturnValue>
566         <ReturnType>System.Data.DataRow[]</ReturnType>
567       </ReturnValue>
568       <Parameters>
569         <Parameter Name="relation" Type="System.Data.DataRelation" />
570       </Parameters>
571       <Docs>
572         <returns>To be added: an object of type 'DataRow []'</returns>
573         <remarks>
574           <attribution license="cc4" from="Microsoft" modified="false" />
575           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
576           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
577         </remarks>
578         <summary>
579           <attribution license="cc4" from="Microsoft" modified="false" />
580           <para>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</para>
581         </summary>
582         <param name="relation">
583           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
584       </Docs>
585       <AssemblyInfo>
586         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
587         <AssemblyVersion>2.0.0.0</AssemblyVersion>
588       </AssemblyInfo>
589     </Member>
590     <Member MemberName="GetParentRows">
591       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetParentRows (string relationName);" />
592       <MemberType>Method</MemberType>
593       <ReturnValue>
594         <ReturnType>System.Data.DataRow[]</ReturnType>
595       </ReturnValue>
596       <Parameters>
597         <Parameter Name="relationName" Type="System.String" />
598       </Parameters>
599       <Docs>
600         <returns>To be added: an object of type 'DataRow []'</returns>
601         <remarks>
602           <attribution license="cc4" from="Microsoft" modified="false" />
603           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
604           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
605         </remarks>
606         <summary>
607           <attribution license="cc4" from="Microsoft" modified="false" />
608           <para>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</para>
609         </summary>
610         <param name="relationName">
611           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />. </param>
612       </Docs>
613       <AssemblyInfo>
614         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
615         <AssemblyVersion>2.0.0.0</AssemblyVersion>
616       </AssemblyInfo>
617     </Member>
618     <Member MemberName="GetParentRows">
619       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetParentRows (System.Data.DataRelation relation, System.Data.DataRowVersion version);" />
620       <MemberType>Method</MemberType>
621       <ReturnValue>
622         <ReturnType>System.Data.DataRow[]</ReturnType>
623       </ReturnValue>
624       <Parameters>
625         <Parameter Name="relation" Type="System.Data.DataRelation" />
626         <Parameter Name="version" Type="System.Data.DataRowVersion" />
627       </Parameters>
628       <Docs>
629         <returns>To be added: an object of type 'DataRow []'</returns>
630         <remarks>
631           <attribution license="cc4" from="Microsoft" modified="false" />
632           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
633           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
634           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
635         </remarks>
636         <summary>
637           <attribution license="cc4" from="Microsoft" modified="false" />
638           <para>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
639         </summary>
640         <param name="relation">
641           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataRelation" /> to use. </param>
642         <param name="version">
643           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. </param>
644       </Docs>
645       <AssemblyInfo>
646         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
647         <AssemblyVersion>2.0.0.0</AssemblyVersion>
648       </AssemblyInfo>
649     </Member>
650     <Member MemberName="GetParentRows">
651       <MemberSignature Language="C#" Value="public System.Data.DataRow[] GetParentRows (string relationName, System.Data.DataRowVersion version);" />
652       <MemberType>Method</MemberType>
653       <ReturnValue>
654         <ReturnType>System.Data.DataRow[]</ReturnType>
655       </ReturnValue>
656       <Parameters>
657         <Parameter Name="relationName" Type="System.String" />
658         <Parameter Name="version" Type="System.Data.DataRowVersion" />
659       </Parameters>
660       <Docs>
661         <returns>To be added: an object of type 'DataRow []'</returns>
662         <remarks>
663           <attribution license="cc4" from="Microsoft" modified="false" />
664           <para>In a <see cref="T:System.Data.DataSet" />, the collection of all parent <see cref="T:System.Data.DataRelation" /> objects for the data set is returned by the <see cref="M:System.Data.DataRow.GetParentRows(System.String)" /> method.</para>
665           <para>The <see cref="T:System.Data.DataTable" /> also contains a collection of <see cref="T:System.Data.DataRelation" /> objects, returned by the <see cref="P:System.Data.DataTable.ParentRelations" /> property.</para>
666           <para>Use the <see cref="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)" /> property to determine whether the <see cref="T:System.Data.DataRowVersion" /> that you want exists.</para>
667         </remarks>
668         <summary>
669           <attribution license="cc4" from="Microsoft" modified="false" />
670           <para>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</para>
671         </summary>
672         <param name="relationName">
673           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />. </param>
674         <param name="version">
675           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed. </param>
676       </Docs>
677       <AssemblyInfo>
678         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
679         <AssemblyVersion>2.0.0.0</AssemblyVersion>
680       </AssemblyInfo>
681     </Member>
682     <Member MemberName="HasErrors">
683       <MemberSignature Language="C#" Value="public bool HasErrors { get; }" />
684       <MemberType>Property</MemberType>
685       <ReturnValue>
686         <ReturnType>System.Boolean</ReturnType>
687       </ReturnValue>
688       <Docs>
689         <value>To be added: an object of type 'bool'</value>
690         <remarks>
691           <attribution license="cc4" from="Microsoft" modified="false" />
692           <para>HasErrors returns true if any <see cref="T:System.Data.DataColumn" /> object in the row contains an error, or if the <see cref="P:System.Data.DataRow.RowError" /> property of the <see cref="T:System.Data.DataRow" /> is not an empty string.</para>
693           <para>When validating data, you can set an error on any column in a row. Such a column, when displayed in the <see cref="T:System.Windows.Forms.DataGrid" /> control, is marked with a red exclamation point to signal to the user that the column is in error.</para>
694           <para>Use <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" /> to set an error on any column.</para>
695           <para>Use the <see cref="M:System.Data.DataRow.GetColumnError(System.Int32)" /> and GetColumnsInError methods to return columns with errors.</para>
696           <para>The <see cref="M:System.Data.DataRow.ClearErrors" /> method clears all errors for the row.</para>
697         </remarks>
698         <summary>
699           <attribution license="cc4" from="Microsoft" modified="false" />
700           <para>Gets a value that indicates whether there are errors in a row.</para>
701         </summary>
702       </Docs>
703       <AssemblyInfo>
704         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
705         <AssemblyVersion>2.0.0.0</AssemblyVersion>
706       </AssemblyInfo>
707     </Member>
708     <Member MemberName="HasVersion">
709       <MemberSignature Language="C#" Value="public bool HasVersion (System.Data.DataRowVersion version);" />
710       <MemberType>Method</MemberType>
711       <ReturnValue>
712         <ReturnType>System.Boolean</ReturnType>
713       </ReturnValue>
714       <Parameters>
715         <Parameter Name="version" Type="System.Data.DataRowVersion" />
716       </Parameters>
717       <Docs>
718         <returns>To be added: an object of type 'bool'</returns>
719         <remarks>
720           <attribution license="cc4" from="Microsoft" modified="false" />
721           <para>See the <see cref="M:System.Data.DataRow.BeginEdit" /> method for more information.</para>
722         </remarks>
723         <summary>
724           <attribution license="cc4" from="Microsoft" modified="false" />
725           <para>Gets a value that indicates whether a specified version exists.</para>
726         </summary>
727         <param name="version">
728           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version. </param>
729       </Docs>
730       <AssemblyInfo>
731         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
732         <AssemblyVersion>2.0.0.0</AssemblyVersion>
733       </AssemblyInfo>
734     </Member>
735     <Member MemberName="IsNull">
736       <MemberSignature Language="C#" Value="public bool IsNull (System.Data.DataColumn column);" />
737       <MemberType>Method</MemberType>
738       <ReturnValue>
739         <ReturnType>System.Boolean</ReturnType>
740       </ReturnValue>
741       <Parameters>
742         <Parameter Name="column" Type="System.Data.DataColumn" />
743       </Parameters>
744       <Docs>
745         <returns>To be added: an object of type 'bool'</returns>
746         <remarks>To be added</remarks>
747         <summary>
748           <attribution license="cc4" from="Microsoft" modified="false" />
749           <para>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn" /> contains a null value.</para>
750         </summary>
751         <param name="column">
752           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumn" />. </param>
753       </Docs>
754       <AssemblyInfo>
755         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
756         <AssemblyVersion>2.0.0.0</AssemblyVersion>
757       </AssemblyInfo>
758     </Member>
759     <Member MemberName="IsNull">
760       <MemberSignature Language="C#" Value="public bool IsNull (int columnIndex);" />
761       <MemberType>Method</MemberType>
762       <ReturnValue>
763         <ReturnType>System.Boolean</ReturnType>
764       </ReturnValue>
765       <Parameters>
766         <Parameter Name="columnIndex" Type="System.Int32" />
767       </Parameters>
768       <Docs>
769         <returns>To be added: an object of type 'bool'</returns>
770         <remarks>To be added</remarks>
771         <summary>
772           <attribution license="cc4" from="Microsoft" modified="false" />
773           <para>Gets a value that indicates whether the column at the specified index contains a null value.</para>
774         </summary>
775         <param name="columnIndex">
776           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the column. </param>
777       </Docs>
778       <AssemblyInfo>
779         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
780         <AssemblyVersion>2.0.0.0</AssemblyVersion>
781       </AssemblyInfo>
782     </Member>
783     <Member MemberName="IsNull">
784       <MemberSignature Language="C#" Value="public bool IsNull (string columnName);" />
785       <MemberType>Method</MemberType>
786       <ReturnValue>
787         <ReturnType>System.Boolean</ReturnType>
788       </ReturnValue>
789       <Parameters>
790         <Parameter Name="columnName" Type="System.String" />
791       </Parameters>
792       <Docs>
793         <returns>To be added: an object of type 'bool'</returns>
794         <remarks>To be added</remarks>
795         <summary>
796           <attribution license="cc4" from="Microsoft" modified="false" />
797           <para>Gets a value that indicates whether the named column contains a null value.</para>
798         </summary>
799         <param name="columnName">
800           <attribution license="cc4" from="Microsoft" modified="false" />The name of the column. </param>
801       </Docs>
802       <AssemblyInfo>
803         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
804         <AssemblyVersion>2.0.0.0</AssemblyVersion>
805       </AssemblyInfo>
806     </Member>
807     <Member MemberName="IsNull">
808       <MemberSignature Language="C#" Value="public bool IsNull (System.Data.DataColumn column, System.Data.DataRowVersion version);" />
809       <MemberType>Method</MemberType>
810       <ReturnValue>
811         <ReturnType>System.Boolean</ReturnType>
812       </ReturnValue>
813       <Parameters>
814         <Parameter Name="column" Type="System.Data.DataColumn" />
815         <Parameter Name="version" Type="System.Data.DataRowVersion" />
816       </Parameters>
817       <Docs>
818         <returns>To be added: an object of type 'bool'</returns>
819         <remarks>To be added</remarks>
820         <summary>
821           <attribution license="cc4" from="Microsoft" modified="false" />
822           <para>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn" /> and <see cref="T:System.Data.DataRowVersion" /> contains a null value.</para>
823         </summary>
824         <param name="column">
825           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumn" />. </param>
826         <param name="version">
827           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version. Possible values are Default, Original, Current, and Proposed. </param>
828       </Docs>
829       <AssemblyInfo>
830         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
831         <AssemblyVersion>2.0.0.0</AssemblyVersion>
832       </AssemblyInfo>
833     </Member>
834     <Member MemberName="Item">
835       <MemberSignature Language="C#" Value="public object this[System.Data.DataColumn column] { set; get; }" />
836       <MemberType>Property</MemberType>
837       <ReturnValue>
838         <ReturnType>System.Object</ReturnType>
839       </ReturnValue>
840       <Parameters>
841         <Parameter Name="column" Type="System.Data.DataColumn" />
842       </Parameters>
843       <Docs>
844         <param name="column">To be added: an object of type 'DataColumn'</param>
845         <summary>To be added</summary>
846         <value>To be added: an object of type 'object'</value>
847         <remarks>To be added</remarks>
848       </Docs>
849       <AssemblyInfo>
850         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
851         <AssemblyVersion>2.0.0.0</AssemblyVersion>
852       </AssemblyInfo>
853     </Member>
854     <Member MemberName="Item">
855       <MemberSignature Language="C#" Value="public object this[int columnIndex] { set; get; }" />
856       <MemberType>Property</MemberType>
857       <ReturnValue>
858         <ReturnType>System.Object</ReturnType>
859       </ReturnValue>
860       <Parameters>
861         <Parameter Name="columnIndex" Type="System.Int32" />
862       </Parameters>
863       <Docs>
864         <param name="columnIndex">To be added: an object of type 'int'</param>
865         <summary>To be added</summary>
866         <value>To be added: an object of type 'object'</value>
867         <remarks>To be added</remarks>
868       </Docs>
869       <AssemblyInfo>
870         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
871         <AssemblyVersion>2.0.0.0</AssemblyVersion>
872       </AssemblyInfo>
873     </Member>
874     <Member MemberName="Item">
875       <MemberSignature Language="C#" Value="public object this[string columnName] { set; get; }" />
876       <MemberType>Property</MemberType>
877       <ReturnValue>
878         <ReturnType>System.Object</ReturnType>
879       </ReturnValue>
880       <Parameters>
881         <Parameter Name="columnName" Type="System.String" />
882       </Parameters>
883       <Docs>
884         <param name="columnName">To be added: an object of type 'string'</param>
885         <summary>To be added</summary>
886         <value>To be added: an object of type 'object'</value>
887         <remarks>To be added</remarks>
888       </Docs>
889       <AssemblyInfo>
890         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
891         <AssemblyVersion>2.0.0.0</AssemblyVersion>
892       </AssemblyInfo>
893     </Member>
894     <Member MemberName="Item">
895       <MemberSignature Language="C#" Value="public object this[System.Data.DataColumn column, System.Data.DataRowVersion version] { get; }" />
896       <MemberType>Property</MemberType>
897       <AssemblyInfo>
898         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
899         <AssemblyVersion>2.0.0.0</AssemblyVersion>
900       </AssemblyInfo>
901       <ReturnValue>
902         <ReturnType>System.Object</ReturnType>
903       </ReturnValue>
904       <Parameters>
905         <Parameter Name="column" Type="System.Data.DataColumn" />
906         <Parameter Name="version" Type="System.Data.DataRowVersion" />
907       </Parameters>
908       <Docs>
909         <param name="column">To be added.</param>
910         <param name="version">To be added.</param>
911         <summary>To be added.</summary>
912         <value>To be added.</value>
913         <remarks>To be added.</remarks>
914       </Docs>
915     </Member>
916     <Member MemberName="Item">
917       <MemberSignature Language="C#" Value="public object this[int columnIndex, System.Data.DataRowVersion version] { get; }" />
918       <MemberType>Property</MemberType>
919       <AssemblyInfo>
920         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
921         <AssemblyVersion>2.0.0.0</AssemblyVersion>
922       </AssemblyInfo>
923       <ReturnValue>
924         <ReturnType>System.Object</ReturnType>
925       </ReturnValue>
926       <Parameters>
927         <Parameter Name="columnIndex" Type="System.Int32" />
928         <Parameter Name="version" Type="System.Data.DataRowVersion" />
929       </Parameters>
930       <Docs>
931         <param name="columnIndex">To be added.</param>
932         <param name="version">To be added.</param>
933         <summary>To be added.</summary>
934         <value>To be added.</value>
935         <remarks>To be added.</remarks>
936       </Docs>
937     </Member>
938     <Member MemberName="Item">
939       <MemberSignature Language="C#" Value="public object this[string columnName, System.Data.DataRowVersion version] { get; }" />
940       <MemberType>Property</MemberType>
941       <AssemblyInfo>
942         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
943         <AssemblyVersion>2.0.0.0</AssemblyVersion>
944       </AssemblyInfo>
945       <ReturnValue>
946         <ReturnType>System.Object</ReturnType>
947       </ReturnValue>
948       <Parameters>
949         <Parameter Name="columnName" Type="System.String" />
950         <Parameter Name="version" Type="System.Data.DataRowVersion" />
951       </Parameters>
952       <Docs>
953         <param name="columnName">To be added.</param>
954         <param name="version">To be added.</param>
955         <summary>To be added.</summary>
956         <value>To be added.</value>
957         <remarks>To be added.</remarks>
958       </Docs>
959     </Member>
960     <Member MemberName="ItemArray">
961       <MemberSignature Language="C#" Value="public object[] ItemArray { set; get; }" />
962       <MemberType>Property</MemberType>
963       <ReturnValue>
964         <ReturnType>System.Object[]</ReturnType>
965       </ReturnValue>
966       <Parameters>
967       </Parameters>
968       <Docs>
969         <value>To be added: an object of type 'object []'</value>
970         <remarks>
971           <attribution license="cc4" from="Microsoft" modified="false" />
972           <para>You can use this property to set or get values for this row through an array. If you use this property to set values, the array must have the same size and ordering as the column collection. Passing null in the <see cref="P:System.Data.DataRow.ItemArray" /> indicates that no value was specified.</para>
973           <para>Users can generate exceptions in the <see cref="E:System.Data.DataTable.ColumnChanging" /> event or the <see cref="E:System.Data.DataTable.RowChanging" /> event.</para>
974         </remarks>
975         <summary>
976           <attribution license="cc4" from="Microsoft" modified="false" />
977           <para>Gets or sets all the values for this row through an array.</para>
978         </summary>
979       </Docs>
980       <AssemblyInfo>
981         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
982         <AssemblyVersion>2.0.0.0</AssemblyVersion>
983       </AssemblyInfo>
984     </Member>
985     <Member MemberName="RejectChanges">
986       <MemberSignature Language="C#" Value="public void RejectChanges ();" />
987       <MemberType>Method</MemberType>
988       <ReturnValue>
989         <ReturnType>System.Void</ReturnType>
990       </ReturnValue>
991       <Parameters />
992       <Docs>
993         <remarks>
994           <attribution license="cc4" from="Microsoft" modified="false" />
995           <para>When you call the <see cref="M:System.Data.DataRow.RejectChanges" /> method, the <see cref="M:System.Data.DataRow.CancelEdit" /> method is implicitly called to cancel any edits. If <see cref="P:System.Data.DataRow.RowState" /> is deleted or modified, the row reverts to its previous values, and <see cref="P:System.Data.DataRow.RowState" /> becomes unchanged. If the <see cref="P:System.Data.DataRow.RowState" /> is added, the row is removed.</para>
996         </remarks>
997         <summary>
998           <attribution license="cc4" from="Microsoft" modified="false" />
999           <para>Rejects all changes made to the row since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</para>
1000         </summary>
1001       </Docs>
1002       <AssemblyInfo>
1003         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1004         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1005       </AssemblyInfo>
1006     </Member>
1007     <Member MemberName="RowError">
1008       <MemberSignature Language="C#" Value="public string RowError { set; get; }" />
1009       <MemberType>Property</MemberType>
1010       <ReturnValue>
1011         <ReturnType>System.String</ReturnType>
1012       </ReturnValue>
1013       <Parameters>
1014       </Parameters>
1015       <Docs>
1016         <value>To be added: an object of type 'string'</value>
1017         <remarks>
1018           <attribution license="cc4" from="Microsoft" modified="false" />
1019           <para>Uses the <see cref="P:System.Data.DataRow.HasErrors" /> property to first determine whether a <see cref="T:System.Data.DataRow" /> contains errors.</para>
1020         </remarks>
1021         <summary>
1022           <attribution license="cc4" from="Microsoft" modified="false" />
1023           <para>Gets or sets the custom error description for a row.</para>
1024         </summary>
1025       </Docs>
1026       <AssemblyInfo>
1027         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1028         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1029       </AssemblyInfo>
1030     </Member>
1031     <Member MemberName="RowState">
1032       <MemberSignature Language="C#" Value="public System.Data.DataRowState RowState { get; }" />
1033       <MemberType>Property</MemberType>
1034       <ReturnValue>
1035         <ReturnType>System.Data.DataRowState</ReturnType>
1036       </ReturnValue>
1037       <Docs>
1038         <value>To be added: an object of type 'DataRowState'</value>
1039         <remarks>
1040           <attribution license="cc4" from="Microsoft" modified="false" />
1041           <para>The value of the <see cref="P:System.Data.DataRow.RowState" /> depends on two factors: the kind of operation has been performed on the row, and whether <see cref="M:System.Data.DataRow.AcceptChanges" /> has been called on the <see cref="T:System.Data.DataRow" />.</para>
1042         </remarks>
1043         <summary>
1044           <attribution license="cc4" from="Microsoft" modified="false" />
1045           <para>Gets the current state of the row with regard to its relationship to the <see cref="T:System.Data.DataRowCollection" />.</para>
1046         </summary>
1047       </Docs>
1048       <AssemblyInfo>
1049         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1050         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1051       </AssemblyInfo>
1052     </Member>
1053     <Member MemberName="SetAdded">
1054       <MemberSignature Language="C#" Value="public void SetAdded ();" />
1055       <MemberType>Method</MemberType>
1056       <AssemblyInfo>
1057         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1058       </AssemblyInfo>
1059       <ReturnValue>
1060         <ReturnType>System.Void</ReturnType>
1061       </ReturnValue>
1062       <Parameters />
1063       <Docs>
1064         <remarks>
1065           <attribution license="cc4" from="Microsoft" modified="false" />
1066           <para>Changes the <see cref="P:System.Data.DataRow.RowState" /> of a <see cref="T:System.Data.DataRow" /> to Added. If the current row is not in either an Unchanged or an Added state, it throws an <see cref="T:System.InvalidOperationException" /> with the message that SetAdded can only be invoked on a DataRow instance where the RowState is Unchanged.</para>
1067         </remarks>
1068         <summary>
1069           <attribution license="cc4" from="Microsoft" modified="false" />
1070           <para>Changes the <see cref="P:System.Data.DataRow.Rowstate" /> of a <see cref="T:System.Data.DataRow" /> to Added. </para>
1071         </summary>
1072       </Docs>
1073     </Member>
1074     <Member MemberName="SetColumnError">
1075       <MemberSignature Language="C#" Value="public void SetColumnError (System.Data.DataColumn column, string error);" />
1076       <MemberType>Method</MemberType>
1077       <ReturnValue>
1078         <ReturnType>System.Void</ReturnType>
1079       </ReturnValue>
1080       <Parameters>
1081         <Parameter Name="column" Type="System.Data.DataColumn" />
1082         <Parameter Name="error" Type="System.String" />
1083       </Parameters>
1084       <Docs>
1085         <remarks>
1086           <attribution license="cc4" from="Microsoft" modified="false" />
1087           <para>To examine error descriptions, use the <see cref="M:System.Data.DataRow.GetColumnError(System.Int32)" /> method.</para>
1088           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> property. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors. </para>
1089           <para>If null or an empty string is passed in as the <paramref name="error" /> parameter, the <see cref="T:System.Data.DataRow" /> behaves as if no error was set and the <see cref="P:System.Data.DataRow.HasErrors" /> property will return false.</para>
1090           <para>To set a custom error description on the whole row, use the <see cref="P:System.Data.DataRow.RowError" /> property.</para>
1091           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method.</para>
1092           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
1093         </remarks>
1094         <summary>
1095           <attribution license="cc4" from="Microsoft" modified="false" />
1096           <para>Sets the error description for a column specified as a <see cref="T:System.Data.DataColumn" />.</para>
1097         </summary>
1098         <param name="column">
1099           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Data.DataColumn" /> to set the error description for. </param>
1100         <param name="error">
1101           <attribution license="cc4" from="Microsoft" modified="false" />The error description. </param>
1102       </Docs>
1103       <AssemblyInfo>
1104         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1105         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1106       </AssemblyInfo>
1107     </Member>
1108     <Member MemberName="SetColumnError">
1109       <MemberSignature Language="C#" Value="public void SetColumnError (int columnIndex, string error);" />
1110       <MemberType>Method</MemberType>
1111       <ReturnValue>
1112         <ReturnType>System.Void</ReturnType>
1113       </ReturnValue>
1114       <Parameters>
1115         <Parameter Name="columnIndex" Type="System.Int32" />
1116         <Parameter Name="error" Type="System.String" />
1117       </Parameters>
1118       <Docs>
1119         <remarks>
1120           <attribution license="cc4" from="Microsoft" modified="false" />
1121           <para>The method is used to set custom error descriptions on specified columns. You can use the <see cref="T:System.Windows.Forms.ErrorProvider" /> control to display the text of the error.</para>
1122           <para>To examine error descriptions, use the <see cref="M:System.Data.DataRow.GetColumnError(System.Int32)" /> method.</para>
1123           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> property. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors.</para>
1124           <para>If null or an empty string is passed in as the <paramref name="error" /> parameter, the <see cref="T:System.Data.DataRow" /> behaves as if no error was set and the <see cref="P:System.Data.DataRow.HasErrors" /> property will return false.</para>
1125           <para>To set a custom error description on the whole row, use the <see cref="P:System.Data.DataRow.RowError" /> property.</para>
1126           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
1127           <para>To set error text that applies to a whole row, set the <see cref="P:System.Data.DataRow.RowError" /> property.</para>
1128         </remarks>
1129         <summary>
1130           <attribution license="cc4" from="Microsoft" modified="false" />
1131           <para>Sets the error description for a column specified by index.</para>
1132         </summary>
1133         <param name="columnIndex">
1134           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the column. </param>
1135         <param name="error">
1136           <attribution license="cc4" from="Microsoft" modified="false" />The error description. </param>
1137       </Docs>
1138       <AssemblyInfo>
1139         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1140         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1141       </AssemblyInfo>
1142     </Member>
1143     <Member MemberName="SetColumnError">
1144       <MemberSignature Language="C#" Value="public void SetColumnError (string columnName, string error);" />
1145       <MemberType>Method</MemberType>
1146       <ReturnValue>
1147         <ReturnType>System.Void</ReturnType>
1148       </ReturnValue>
1149       <Parameters>
1150         <Parameter Name="columnName" Type="System.String" />
1151         <Parameter Name="error" Type="System.String" />
1152       </Parameters>
1153       <Docs>
1154         <remarks>
1155           <attribution license="cc4" from="Microsoft" modified="false" />
1156           <para>The name of a column is set with the <see cref="P:System.Data.DataColumn.ColumnName" /> property of the <see cref="T:System.Data.DataColumn" /> class.</para>
1157           <para>To examine error descriptions, use the <see cref="M:System.Data.DataRow.GetColumnError(System.Int32)" /> method.</para>
1158           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> property. Consequently, you can use the <see cref="M:System.Data.DataRow.GetColumnsInError" /> method to retrieve all the columns with errors.</para>
1159           <para>If null or an empty string is passed in as the <paramref name="error" /> parameter, the <see cref="T:System.Data.DataRow" /> behaves as if no error was set and the <see cref="P:System.Data.DataRow.HasErrors" /> property will return false.</para>
1160           <para>To set a custom error description on the whole row, use the <see cref="P:System.Data.DataRow.RowError" /> property.</para>
1161           <para>To determine whether any errors exist for the columns collection, use the <see cref="P:System.Data.DataRow.HasErrors" /> method.</para>
1162           <para>To clear all errors for the columns collection, use the <see cref="M:System.Data.DataRow.ClearErrors" /> method.</para>
1163         </remarks>
1164         <summary>
1165           <attribution license="cc4" from="Microsoft" modified="false" />
1166           <para>Sets the error description for a column specified by name.</para>
1167         </summary>
1168         <param name="columnName">
1169           <attribution license="cc4" from="Microsoft" modified="false" />The name of the column. </param>
1170         <param name="error">
1171           <attribution license="cc4" from="Microsoft" modified="false" />The error description. </param>
1172       </Docs>
1173       <AssemblyInfo>
1174         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1175         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1176       </AssemblyInfo>
1177     </Member>
1178     <Member MemberName="SetModified">
1179       <MemberSignature Language="C#" Value="public void SetModified ();" />
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       <Docs>
1189         <remarks>
1190           <attribution license="cc4" from="Microsoft" modified="false" />
1191           <para>Changes the <see cref="P:System.Data.DataRow.Rowstate" /> of a <see cref="T:System.Data.DataRow" /> to Modified. If the current row is not in either an Unchanged or an Added state, it throws an <see cref="T:System.InvalidOperationException" /> with the message that SetModified can only be invoked on a DataRow instance where the RowState is Unchanged.</para>
1192         </remarks>
1193         <summary>
1194           <attribution license="cc4" from="Microsoft" modified="false" />
1195           <para>Changes the <see cref="P:System.Data.DataRow.Rowstate" /> of a <see cref="T:System.Data.DataRow" /> to Modified. </para>
1196         </summary>
1197       </Docs>
1198     </Member>
1199     <Member MemberName="SetNull">
1200       <MemberSignature Language="C#" Value="protected void SetNull (System.Data.DataColumn column);" />
1201       <MemberType>Method</MemberType>
1202       <ReturnValue>
1203         <ReturnType>System.Void</ReturnType>
1204       </ReturnValue>
1205       <Parameters>
1206         <Parameter Name="column" Type="System.Data.DataColumn" />
1207       </Parameters>
1208       <Docs>
1209         <remarks>
1210           <attribution license="cc4" from="Microsoft" modified="false" />
1211           <para>Use the <see cref="M:System.Data.DataRow.IsNull(System.Int32)" /> method to determine whether a column contains a null value.</para>
1212         </remarks>
1213         <summary>
1214           <attribution license="cc4" from="Microsoft" modified="false" />
1215           <para>Sets the value of the specified <see cref="T:System.Data.DataColumn" /> to a null value.</para>
1216         </summary>
1217         <param name="column">
1218           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Data.DataColumn" />. </param>
1219       </Docs>
1220       <AssemblyInfo>
1221         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1222         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1223       </AssemblyInfo>
1224     </Member>
1225     <Member MemberName="SetParentRow">
1226       <MemberSignature Language="C#" Value="public void SetParentRow (System.Data.DataRow parentRow);" />
1227       <MemberType>Method</MemberType>
1228       <ReturnValue>
1229         <ReturnType>System.Void</ReturnType>
1230       </ReturnValue>
1231       <Parameters>
1232         <Parameter Name="parentRow" Type="System.Data.DataRow" />
1233       </Parameters>
1234       <Docs>
1235         <remarks>To be added</remarks>
1236         <summary>
1237           <attribution license="cc4" from="Microsoft" modified="false" />
1238           <para>Sets the parent row of a <see cref="T:System.Data.DataRow" /> with specified new parent <see cref="T:System.Data.DataRow" />.</para>
1239         </summary>
1240         <param name="parentRow">
1241           <attribution license="cc4" from="Microsoft" modified="false" />The new parent <see cref="T:System.Data.DataRow" />. </param>
1242       </Docs>
1243       <AssemblyInfo>
1244         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1245         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1246       </AssemblyInfo>
1247     </Member>
1248     <Member MemberName="SetParentRow">
1249       <MemberSignature Language="C#" Value="public void SetParentRow (System.Data.DataRow parentRow, System.Data.DataRelation relation);" />
1250       <MemberType>Method</MemberType>
1251       <ReturnValue>
1252         <ReturnType>System.Void</ReturnType>
1253       </ReturnValue>
1254       <Parameters>
1255         <Parameter Name="parentRow" Type="System.Data.DataRow" />
1256         <Parameter Name="relation" Type="System.Data.DataRelation" />
1257       </Parameters>
1258       <Docs>
1259         <remarks>To be added</remarks>
1260         <summary>
1261           <attribution license="cc4" from="Microsoft" modified="false" />
1262           <para>Sets the parent row of a <see cref="T:System.Data.DataRow" /> with specified new parent <see cref="T:System.Data.DataRow" /> and <see cref="T:System.Data.DataRelation" />.</para>
1263         </summary>
1264         <param name="parentRow">
1265           <attribution license="cc4" from="Microsoft" modified="false" />The new parent <see cref="T:System.Data.DataRow" />. </param>
1266         <param name="relation">
1267           <attribution license="cc4" from="Microsoft" modified="false" />The relation <see cref="T:System.Data.DataRelation" /> to use. </param>
1268       </Docs>
1269       <AssemblyInfo>
1270         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1271         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1272       </AssemblyInfo>
1273     </Member>
1274     <Member MemberName="Table">
1275       <MemberSignature Language="C#" Value="public System.Data.DataTable Table { get; }" />
1276       <MemberType>Property</MemberType>
1277       <ReturnValue>
1278         <ReturnType>System.Data.DataTable</ReturnType>
1279       </ReturnValue>
1280       <Docs>
1281         <value>To be added: an object of type 'DataTable'</value>
1282         <remarks>
1283           <attribution license="cc4" from="Microsoft" modified="false" />
1284           <para>A <see cref="T:System.Data.DataRow" /> does not necessarily belong to any table's collection of rows. This behavior occurs when the <see cref="T:System.Data.DataRow" /> has been created but not added to the <see cref="T:System.Data.DataRowCollection" />. If the <see cref="P:System.Data.DataRow.RowState" /> property returns DataRowState.Detached, the row is not in any collection.</para>
1285         </remarks>
1286         <summary>
1287           <attribution license="cc4" from="Microsoft" modified="false" />
1288           <para>Gets the <see cref="T:System.Data.DataTable" /> for which this row has a schema.</para>
1289         </summary>
1290       </Docs>
1291       <AssemblyInfo>
1292         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1293         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1294       </AssemblyInfo>
1295     </Member>
1296   </Members>
1297 </Type>