Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Data.Common.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Data.Common</name>
5   </assembly>
6   <members>
7     <member name="T:System.Data.AcceptRejectRule">
8       <summary>Determines the action that occurs when the <see cref="M:System.Data.DataSet.AcceptChanges" /> or <see cref="M:System.Data.DataTable.RejectChanges" /> method is invoked on a <see cref="T:System.Data.DataTable" /> with a <see cref="T:System.Data.ForeignKeyConstraint" />.</summary>
9     </member>
10     <member name="F:System.Data.AcceptRejectRule.Cascade">
11       <summary>Changes are cascaded across the relationship.</summary>
12     </member>
13     <member name="F:System.Data.AcceptRejectRule.None">
14       <summary>No action occurs (default).</summary>
15     </member>
16     <member name="T:System.Data.CommandBehavior">
17       <summary>Provides a description of the results of the query and its effect on the database.</summary>
18     </member>
19     <member name="F:System.Data.CommandBehavior.CloseConnection">
20       <summary>When the command is executed, the associated <see langword="Connection" /> object is closed when the associated <see langword="DataReader" /> object is closed.</summary>
21     </member>
22     <member name="F:System.Data.CommandBehavior.Default">
23       <summary>The query may return multiple result sets. Execution of the query may affect the database state. <see langword="Default" /> sets no <see cref="T:System.Data.CommandBehavior" /> flags, so calling <see langword="ExecuteReader(CommandBehavior.Default)" /> is functionally equivalent to calling <see langword="ExecuteReader()" />.</summary>
24     </member>
25     <member name="F:System.Data.CommandBehavior.KeyInfo">
26       <summary>The query returns column and primary key information. The provider appends extra columns to the result set for existing primary key and timestamp columns.</summary>
27     </member>
28     <member name="F:System.Data.CommandBehavior.SchemaOnly">
29       <summary>The query returns column information only. When using <see cref="F:System.Data.CommandBehavior.SchemaOnly" />, the .NET Framework Data Provider for SQL Server precedes the statement being executed with SET FMTONLY ON.</summary>
30     </member>
31     <member name="F:System.Data.CommandBehavior.SequentialAccess">
32       <summary>Provides a way for the <see langword="DataReader" /> to handle rows that contain columns with large binary values. Rather than loading the entire row, <see langword="SequentialAccess" /> enables the <see langword="DataReader" /> to load data as a stream. You can then use the <see langword="GetBytes" /> or <see langword="GetChars" /> method to specify a byte location to start the read operation, and a limited buffer size for the data being returned.</summary>
33     </member>
34     <member name="F:System.Data.CommandBehavior.SingleResult">
35       <summary>The query returns a single result set.</summary>
36     </member>
37     <member name="F:System.Data.CommandBehavior.SingleRow">
38       <summary>The query is expected to return a single row of the first result set. Execution of the query may affect the database state. Some .NET Framework data providers may, but are not required to, use this information to optimize the performance of the command. When you specify <see cref="F:System.Data.CommandBehavior.SingleRow" /> with the <see cref="M:System.Data.OleDb.OleDbCommand.ExecuteReader" /> method of the <see cref="T:System.Data.OleDb.OleDbCommand" /> object, the .NET Framework Data Provider for OLE DB performs binding using the OLE DB <see langword="IRow" /> interface if it is available. Otherwise, it uses the <see langword="IRowset" /> interface. If your SQL statement is expected to return only a single row, specifying <see cref="F:System.Data.CommandBehavior.SingleRow" /> can also improve application performance. It is possible to specify <see langword="SingleRow" /> when executing queries that are expected to return multiple result sets.  In that case, where both a multi-result set SQL query and single row are specified, the result returned will contain only the first row of the first result set. The other result sets of the query will not be returned.</summary>
39     </member>
40     <member name="T:System.Data.CommandType">
41       <summary>Specifies how a command string is interpreted.</summary>
42     </member>
43     <member name="F:System.Data.CommandType.StoredProcedure">
44       <summary>The name of a stored procedure.</summary>
45     </member>
46     <member name="F:System.Data.CommandType.TableDirect">
47       <summary>The name of a table.</summary>
48     </member>
49     <member name="F:System.Data.CommandType.Text">
50       <summary>An SQL text command. (Default.)</summary>
51     </member>
52     <member name="T:System.Data.Common.CatalogLocation">
53       <summary>Indicates the position of the catalog name in a qualified table name in a text command.</summary>
54     </member>
55     <member name="F:System.Data.Common.CatalogLocation.End">
56       <summary>Indicates that the position of the catalog name occurs after the schema portion of a fully qualified table name in a text command. <c>End</c> and <c>Start</c> are mutually exclusive.</summary>
57     </member>
58     <member name="F:System.Data.Common.CatalogLocation.Start">
59       <summary>Indicates that the position of the catalog name occurs before the schema portion of a fully qualified table name in a text command. <c>Start</c> and <c>End</c> are mutually exclusive.</summary>
60     </member>
61     <member name="T:System.Data.Common.DataAdapter">
62       <summary>Represents a set of SQL commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet" /> and update the data source.</summary>
63     </member>
64     <member name="M:System.Data.Common.DataAdapter.#ctor">
65       <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter" /> class.</summary>
66     </member>
67     <member name="M:System.Data.Common.DataAdapter.#ctor(System.Data.Common.DataAdapter)">
68       <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter" /> class from an existing object of the same type.</summary>
69       <param name="from">A <see cref="T:System.Data.Common.DataAdapter" /> object used to create the new <see cref="T:System.Data.Common.DataAdapter" />.</param>
70     </member>
71     <member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill">
72       <summary>Gets or sets a value indicating whether <see cref="M:System.Data.DataRow.AcceptChanges" /> is called on a <see cref="T:System.Data.DataRow" /> after it is added to the <see cref="T:System.Data.DataTable" /> during any of the Fill operations.</summary>
73       <returns>
74         <see langword="true" /> if <see cref="M:System.Data.DataRow.AcceptChanges" /> is called on the <see cref="T:System.Data.DataRow" />; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
75     </member>
76     <member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringUpdate">
77       <summary>Gets or sets whether <see cref="M:System.Data.DataRow.AcceptChanges" /> is called during a <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)" />.</summary>
78       <returns>
79         <see langword="true" /> if <see cref="M:System.Data.DataRow.AcceptChanges" /> is called during an <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)" />; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
80     </member>
81     <member name="M:System.Data.Common.DataAdapter.CloneInternals">
82       <summary>Creates a copy of this instance of <see cref="T:System.Data.Common.DataAdapter" />.</summary>
83       <returns>The cloned instance of <see cref="T:System.Data.Common.DataAdapter" />.</returns>
84     </member>
85     <member name="P:System.Data.Common.DataAdapter.ContinueUpdateOnError">
86       <summary>Gets or sets a value that specifies whether to generate an exception when an error is encountered during a row update.</summary>
87       <returns>
88         <see langword="true" /> to continue the update without generating an exception; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
89     </member>
90     <member name="M:System.Data.Common.DataAdapter.CreateTableMappings">
91       <summary>Creates a new <see cref="T:System.Data.Common.DataTableMappingCollection" />.</summary>
92       <returns>A new table mapping collection.</returns>
93     </member>
94     <member name="M:System.Data.Common.DataAdapter.Dispose(System.Boolean)">
95       <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DataAdapter" /> and optionally releases the managed resources.</summary>
96       <param name="disposing">
97         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
98     </member>
99     <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)">
100       <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source.</summary>
101       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
102       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
103     </member>
104     <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet,System.String,System.Data.IDataReader,System.Int32,System.Int32)">
105       <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
106       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records.</param>
107       <param name="srcTable">A string indicating the name of the source table.</param>
108       <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
109       <param name="startRecord">The zero-based index of the starting record.</param>
110       <param name="maxRecords">An integer indicating the maximum number of records.</param>
111       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
112     </member>
113     <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable,System.Data.IDataReader)">
114       <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataTable" /> to match those in the data source using the <see cref="T:System.Data.DataTable" /> name and the specified <see cref="T:System.Data.IDataReader" />.</summary>
115       <param name="dataTable">A <see cref="T:System.Data.DataTable" /> to fill with records.</param>
116       <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
117       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
118     </member>
119     <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable[],System.Data.IDataReader,System.Int32,System.Int32)">
120       <summary>Adds or refreshes rows in a specified range in the collection of <see cref="T:System.Data.DataTable" /> objects to match those in the data source.</summary>
121       <param name="dataTables">A collection of <see cref="T:System.Data.DataTable" /> objects to fill with records.</param>
122       <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
123       <param name="startRecord">The zero-based index of the starting record.</param>
124       <param name="maxRecords">An integer indicating the maximum number of records.</param>
125       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
126     </member>
127     <member name="E:System.Data.Common.DataAdapter.FillError">
128       <summary>Returned when an error occurs during a fill operation.</summary>
129     </member>
130     <member name="P:System.Data.Common.DataAdapter.FillLoadOption">
131       <summary>Gets or sets the <see cref="T:System.Data.LoadOption" /> that determines how the adapter fills the <see cref="T:System.Data.DataTable" /> from the <see cref="T:System.Data.Common.DbDataReader" />.</summary>
132       <returns>A <see cref="T:System.Data.LoadOption" /> value.</returns>
133     </member>
134     <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
135       <summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
136       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
137       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
138       <returns>A <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
139     </member>
140     <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)">
141       <summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" />.</summary>
142       <param name="dataSet">The <see cref="T:System.Data.DataTable" /> to be filled from the <see cref="T:System.Data.IDataReader" />.</param>
143       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
144       <param name="srcTable">The name of the source table to use for table mapping.</param>
145       <param name="dataReader">The <see cref="T:System.Data.IDataReader" /> to be used as the data source when filling the <see cref="T:System.Data.DataTable" />.</param>
146       <returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
147     </member>
148     <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader)">
149       <summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" />.</summary>
150       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled from the <see cref="T:System.Data.IDataReader" />.</param>
151       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
152       <param name="dataReader">The <see cref="T:System.Data.IDataReader" /> to be used as the data source when filling the <see cref="T:System.Data.DataTable" />.</param>
153       <returns>A <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
154     </member>
155     <member name="M:System.Data.Common.DataAdapter.GetFillParameters">
156       <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
157       <returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
158     </member>
159     <member name="M:System.Data.Common.DataAdapter.HasTableMappings">
160       <summary>Indicates whether a <see cref="T:System.Data.Common.DataTableMappingCollection" /> has been created.</summary>
161       <returns>
162         <see langword="true" /> if a <see cref="T:System.Data.Common.DataTableMappingCollection" /> has been created; otherwise <see langword="false" />.</returns>
163     </member>
164     <member name="P:System.Data.Common.DataAdapter.MissingMappingAction">
165       <summary>Determines the action to take when incoming data does not have a matching table or column.</summary>
166       <returns>One of the <see cref="T:System.Data.MissingMappingAction" /> values. The default is <see langword="Passthrough" />.</returns>
167       <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction" /> values.</exception>
168     </member>
169     <member name="P:System.Data.Common.DataAdapter.MissingSchemaAction">
170       <summary>Determines the action to take when existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</summary>
171       <returns>One of the <see cref="T:System.Data.MissingSchemaAction" /> values. The default is <see langword="Add" />.</returns>
172       <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction" /> values.</exception>
173     </member>
174     <member name="M:System.Data.Common.DataAdapter.OnFillError(System.Data.FillErrorEventArgs)">
175       <summary>Invoked when an error occurs during a <see langword="Fill" />.</summary>
176       <param name="value">A <see cref="T:System.Data.FillErrorEventArgs" /> object.</param>
177     </member>
178     <member name="M:System.Data.Common.DataAdapter.ResetFillLoadOption">
179       <summary>Resets <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> to its default state and causes <see cref="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)" /> to honor <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" />.</summary>
180     </member>
181     <member name="P:System.Data.Common.DataAdapter.ReturnProviderSpecificTypes">
182       <summary>Gets or sets whether the <see langword="Fill" /> method should return provider-specific values or common CLS-compliant values.</summary>
183       <returns>
184         <see langword="true" /> if the <see langword="Fill" /> method should return provider-specific values; otherwise <see langword="false" /> to return common CLS-compliant values.</returns>
185     </member>
186     <member name="M:System.Data.Common.DataAdapter.ShouldSerializeAcceptChangesDuringFill">
187       <summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" /> property should be persisted.</summary>
188       <returns>
189         <see langword="true" /> if the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" /> property is persisted; otherwise <see langword="false" />.</returns>
190     </member>
191     <member name="M:System.Data.Common.DataAdapter.ShouldSerializeFillLoadOption">
192       <summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> property should be persisted.</summary>
193       <returns>
194         <see langword="true" /> if the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> property is persisted; otherwise <see langword="false" />.</returns>
195     </member>
196     <member name="M:System.Data.Common.DataAdapter.ShouldSerializeTableMappings">
197       <summary>Determines whether one or more <see cref="T:System.Data.Common.DataTableMapping" /> objects exist and they should be persisted.</summary>
198       <returns>
199         <see langword="true" /> if one or more <see cref="T:System.Data.Common.DataTableMapping" /> objects exist; otherwise <see langword="false" />.</returns>
200     </member>
201     <member name="P:System.Data.Common.DataAdapter.System#Data#IDataAdapter#TableMappings">
202       <summary>Indicates how a source table is mapped to a dataset table.</summary>
203       <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
204     </member>
205     <member name="P:System.Data.Common.DataAdapter.TableMappings">
206       <summary>Gets a collection that provides the master mapping between a source table and a <see cref="T:System.Data.DataTable" />.</summary>
207       <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
208     </member>
209     <member name="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)">
210       <summary>Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" /> from a <see cref="T:System.Data.DataTable" /> named "Table."</summary>
211       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
212       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
213       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
214       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
215     </member>
216     <member name="T:System.Data.Common.DataColumnMapping">
217       <summary>Contains a generic column mapping for an object that inherits from <see cref="T:System.Data.Common.DataAdapter" />. This class cannot be inherited.</summary>
218     </member>
219     <member name="M:System.Data.Common.DataColumnMapping.#ctor">
220       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping" /> class.</summary>
221     </member>
222     <member name="M:System.Data.Common.DataColumnMapping.#ctor(System.String,System.String)">
223       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping" /> class with the specified source column name and <see cref="T:System.Data.DataSet" /> column name to map to.</summary>
224       <param name="sourceColumn">The case-sensitive column name from a data source.</param>
225       <param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet" /> to map to.</param>
226     </member>
227     <member name="P:System.Data.Common.DataColumnMapping.DataSetColumn">
228       <summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet" /> to map to.</summary>
229       <returns>The name of the column within the <see cref="T:System.Data.DataSet" /> to map to. The name is not case sensitive.</returns>
230     </member>
231     <member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
232       <summary>Gets a <see cref="T:System.Data.DataColumn" /> from the given <see cref="T:System.Data.DataTable" /> using the <see cref="T:System.Data.MissingSchemaAction" /> and the <see cref="P:System.Data.Common.DataColumnMapping.DataSetColumn" /> property.</summary>
233       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> to get the column from.</param>
234       <param name="dataType">The <see cref="T:System.Type" /> of the data column.</param>
235       <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
236       <returns>A data column.</returns>
237     </member>
238     <member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.String,System.String,System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
239       <summary>A static version of <see cref="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)" /> that can be called without instantiating a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</summary>
240       <param name="sourceColumn">The case-sensitive column name from a data source.</param>
241       <param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet" /> to map to.</param>
242       <param name="dataTable">An instance of <see cref="T:System.Data.DataTable" />.</param>
243       <param name="dataType">The data type for the column being mapped.</param>
244       <param name="schemaAction">Determines the action to take when existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</param>
245       <returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
246     </member>
247     <member name="P:System.Data.Common.DataColumnMapping.SourceColumn">
248       <summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
249       <returns>The case-sensitive name of the column in the data source.</returns>
250     </member>
251     <member name="M:System.Data.Common.DataColumnMapping.System#ICloneable#Clone">
252       <summary>Creates a new object that is a copy of the current instance.</summary>
253       <returns>A copy of the current object.</returns>
254     </member>
255     <member name="M:System.Data.Common.DataColumnMapping.ToString">
256       <summary>Converts the current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn" /> name to a string.</summary>
257       <returns>The current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn" /> name as a string.</returns>
258     </member>
259     <member name="T:System.Data.Common.DataColumnMappingCollection">
260       <summary>Contains a collection of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</summary>
261     </member>
262     <member name="M:System.Data.Common.DataColumnMappingCollection.#ctor">
263       <summary>Creates an empty <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</summary>
264     </member>
265     <member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.Object)">
266       <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the collection.</summary>
267       <param name="value">A <see langword="DataColumnMapping" /> object to add to the collection.</param>
268       <returns>The index of the <see langword="DataColumnMapping" /> object that was added to the collection.</returns>
269       <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
270     </member>
271     <member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.String,System.String)">
272       <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the collection when given a source column name and a <see cref="T:System.Data.DataSet" /> column name.</summary>
273       <param name="sourceColumn">The case-sensitive name of the source column to map to.</param>
274       <param name="dataSetColumn">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to map to.</param>
275       <returns>The <see langword="DataColumnMapping" /> object that was added to the collection.</returns>
276     </member>
277     <member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Array)">
278       <summary>Copies the elements of the specified <see cref="T:System.Array" /> to the end of the collection.</summary>
279       <param name="values">The <see cref="T:System.Array" /> to add to the collection.</param>
280     </member>
281     <member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Data.Common.DataColumnMapping[])">
282       <summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> array to the end of the collection.</summary>
283       <param name="values">The array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects to add to the collection.</param>
284     </member>
285     <member name="M:System.Data.Common.DataColumnMappingCollection.Clear">
286       <summary>Removes all <see cref="T:System.Data.Common.DataColumnMapping" /> objects from the collection.</summary>
287     </member>
288     <member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.Object)">
289       <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the given <see cref="T:System.Object" /> exists in the collection.</summary>
290       <param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" />.</param>
291       <returns>
292         <see langword="true" /> if the collection contains the specified <see cref="T:System.Data.Common.DataColumnMapping" /> object; otherwise, <see langword="false" />.</returns>
293       <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
294     </member>
295     <member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.String)">
296       <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the given source column name exists in the collection.</summary>
297       <param name="value">The case-sensitive source column name of the <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
298       <returns>
299         <see langword="true" /> if collection contains a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name; otherwise, <see langword="false" />.</returns>
300     </member>
301     <member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Array,System.Int32)">
302       <summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> to the specified array.</summary>
303       <param name="array">An <see cref="T:System.Array" /> to which to copy <see cref="T:System.Data.Common.DataColumnMappingCollection" /> elements.</param>
304       <param name="index">The starting index of the array.</param>
305     </member>
306     <member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Data.Common.DataColumnMapping[],System.Int32)">
307       <summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> to the specified <see cref="T:System.Data.Common.DataColumnMapping" /> array.</summary>
308       <param name="array">A <see cref="T:System.Data.Common.DataColumnMapping" /> array to which to copy the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> elements.</param>
309       <param name="index">The zero-based index in the <paramref name="array" /> at which copying begins.</param>
310     </member>
311     <member name="P:System.Data.Common.DataColumnMappingCollection.Count">
312       <summary>Gets the number of <see cref="T:System.Data.Common.DataColumnMapping" /> objects in the collection.</summary>
313       <returns>The number of items in the collection.</returns>
314     </member>
315     <member name="M:System.Data.Common.DataColumnMappingCollection.GetByDataSetColumn(System.String)">
316       <summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
317       <param name="value">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to find.</param>
318       <returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> column name.</returns>
319     </member>
320     <member name="M:System.Data.Common.DataColumnMappingCollection.GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection,System.String,System.Data.MissingMappingAction)">
321       <summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping" /> for the specified <see cref="T:System.Data.Common.DataColumnMappingCollection" />, source column name, and <see cref="T:System.Data.MissingMappingAction" />.</summary>
322       <param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</param>
323       <param name="sourceColumn">The case-sensitive source column name to find.</param>
324       <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
325       <returns>A <see cref="T:System.Data.Common.DataColumnMapping" /> object.</returns>
326       <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
327     </member>
328     <member name="M:System.Data.Common.DataColumnMappingCollection.GetDataColumn(System.Data.Common.DataColumnMappingCollection,System.String,System.Type,System.Data.DataTable,System.Data.MissingMappingAction,System.Data.MissingSchemaAction)">
329       <summary>A static method that returns a <see cref="T:System.Data.DataColumn" /> object without instantiating a <see cref="T:System.Data.Common.DataColumnMappingCollection" /> object.</summary>
330       <param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</param>
331       <param name="sourceColumn">The case-sensitive column name from a data source.</param>
332       <param name="dataType">The data type for the column being mapped.</param>
333       <param name="dataTable">An instance of <see cref="T:System.Data.DataTable" />.</param>
334       <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
335       <param name="schemaAction">Determines the action to take when the existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</param>
336       <returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
337     </member>
338     <member name="M:System.Data.Common.DataColumnMappingCollection.GetEnumerator">
339       <summary>Gets an enumerator that can iterate through the collection.</summary>
340       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
341     </member>
342     <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.Object)">
343       <summary>Gets the location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> within the collection.</summary>
344       <param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" /> to find.</param>
345       <returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> within the collection.</returns>
346     </member>
347     <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.String)">
348       <summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping" /> with the specified source column name.</summary>
349       <param name="sourceColumn">The case-sensitive name of the source column.</param>
350       <returns>The zero-based location of the <see cref="T:System.Data.Common.DataColumnMapping" /> with the specified case-sensitive source column name.</returns>
351     </member>
352     <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOfDataSetColumn(System.String)">
353       <summary>Gets the location of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> with the given <see cref="T:System.Data.DataSet" /> column name.</summary>
354       <param name="dataSetColumn">The name, which is not case-sensitive, of the data set column to find.</param>
355       <returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> with the given <see langword="DataSet" /> column name, or -1 if the <see langword="DataColumnMapping" /> object does not exist in the collection.</returns>
356     </member>
357     <member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Data.Common.DataColumnMapping)">
358       <summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping" /> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> at the specified index.</summary>
359       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to insert.</param>
360       <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
361     </member>
362     <member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Object)">
363       <summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping" /> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> at the specified index.</summary>
364       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to insert.</param>
365       <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
366     </member>
367     <member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.Int32)">
368       <summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping" /> object at the specified index.</summary>
369       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to find.</param>
370       <returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object at the specified index.</returns>
371     </member>
372     <member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.String)">
373       <summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</summary>
374       <param name="sourceColumn">The case-sensitive name of the source column.</param>
375       <returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</returns>
376     </member>
377     <member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Data.Common.DataColumnMapping)">
378       <summary>Removes the specified <see cref="T:System.Data.Common.DataColumnMapping" /> from the collection.</summary>
379       <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> to remove.</param>
380     </member>
381     <member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Object)">
382       <summary>Removes the <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> from the collection.</summary>
383       <param name="value">The <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" /> to remove.</param>
384       <exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
385       <exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
386     </member>
387     <member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.Int32)">
388       <summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified index from the collection.</summary>
389       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to remove.</param>
390       <exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified index.</exception>
391     </member>
392     <member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.String)">
393       <summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name from the collection.</summary>
394       <param name="sourceColumn">The case-sensitive source column name.</param>
395       <exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</exception>
396     </member>
397     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#IsSynchronized">
398       <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
399       <returns>
400         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
401     </member>
402     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#SyncRoot">
403       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
404       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
405     </member>
406     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsFixedSize">
407       <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary>
408       <returns>
409         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
410     </member>
411     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsReadOnly">
412       <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList" /> is read-only.</summary>
413       <returns>
414         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</returns>
415     </member>
416     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#Item(System.Int32)">
417       <summary>Gets or sets the element at the specified index.</summary>
418       <param name="index">The zero-based index of the element to get or set.</param>
419       <returns>The element at the specified index.</returns>
420     </member>
421     <member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Add(System.String,System.String)">
422       <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> by using the source column and <see cref="T:System.Data.DataSet" /> column names.</summary>
423       <param name="sourceColumnName">The case-sensitive name of the source column.</param>
424       <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column.</param>
425       <returns>The ColumnMapping object that was added to the collection.</returns>
426     </member>
427     <member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#GetByDataSetColumn(System.String)">
428       <summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping" /> object that has the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
429       <param name="dataSetColumnName">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to find.</param>
430       <returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object that  has the specified <see cref="T:System.Data.DataSet" /> column name.</returns>
431     </member>
432     <member name="P:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Item(System.String)">
433       <summary>Gets or sets the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</summary>
434       <param name="index">Index of the element.</param>
435       <returns>The <see langword="IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</returns>
436     </member>
437     <member name="T:System.Data.Common.DataTableMapping">
438       <summary>Contains a description of a mapped relationship between a source table and a <see cref="T:System.Data.DataTable" />. This class is used by a <see cref="T:System.Data.Common.DataAdapter" /> when populating a <see cref="T:System.Data.DataSet" />.</summary>
439     </member>
440     <member name="M:System.Data.Common.DataTableMapping.#ctor">
441       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class.</summary>
442     </member>
443     <member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String)">
444       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class with a source when given a source table name and a <see cref="T:System.Data.DataTable" /> name.</summary>
445       <param name="sourceTable">The case-sensitive source table name from a data source.</param>
446       <param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
447     </member>
448     <member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String,System.Data.Common.DataColumnMapping[])">
449       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class when given a source table name, a <see cref="T:System.Data.DataTable" /> name, and an array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</summary>
450       <param name="sourceTable">The case-sensitive source table name from a data source.</param>
451       <param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
452       <param name="columnMappings">An array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</param>
453     </member>
454     <member name="P:System.Data.Common.DataTableMapping.ColumnMappings">
455       <summary>Gets the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
456       <returns>A data column mapping collection.</returns>
457     </member>
458     <member name="P:System.Data.Common.DataTableMapping.DataSetTable">
459       <summary>Gets or sets the table name from a <see cref="T:System.Data.DataSet" />.</summary>
460       <returns>The table name from a <see cref="T:System.Data.DataSet" />.</returns>
461     </member>
462     <member name="M:System.Data.Common.DataTableMapping.GetColumnMappingBySchemaAction(System.String,System.Data.MissingMappingAction)">
463       <summary>Gets a <see cref="T:System.Data.DataColumn" /> from the specified <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Data.MissingMappingAction" /> value and the name of the <see cref="T:System.Data.DataColumn" />.</summary>
464       <param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn" />.</param>
465       <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
466       <returns>A data column.</returns>
467       <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
468     </member>
469     <member name="M:System.Data.Common.DataTableMapping.GetDataColumn(System.String,System.Type,System.Data.DataTable,System.Data.MissingMappingAction,System.Data.MissingSchemaAction)">
470       <summary>Returns a <see cref="T:System.Data.DataColumn" /> object for a given column name.</summary>
471       <param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn" />.</param>
472       <param name="dataType">The data type for <paramref name="sourceColumn" />.</param>
473       <param name="dataTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
474       <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
475       <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
476       <returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
477     </member>
478     <member name="M:System.Data.Common.DataTableMapping.GetDataTableBySchemaAction(System.Data.DataSet,System.Data.MissingSchemaAction)">
479       <summary>Gets the current <see cref="T:System.Data.DataTable" /> for the specified <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Data.MissingSchemaAction" /> value.</summary>
480       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> from which to get the <see cref="T:System.Data.DataTable" />.</param>
481       <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
482       <returns>A data table.</returns>
483     </member>
484     <member name="P:System.Data.Common.DataTableMapping.SourceTable">
485       <summary>Gets or sets the case-sensitive source table name from a data source.</summary>
486       <returns>The case-sensitive source table name from a data source.</returns>
487     </member>
488     <member name="P:System.Data.Common.DataTableMapping.System#Data#ITableMapping#ColumnMappings">
489       <summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
490       <returns>A data column mapping collection.</returns>
491     </member>
492     <member name="M:System.Data.Common.DataTableMapping.System#ICloneable#Clone">
493       <summary>Creates a new object that is a copy of the current instance.</summary>
494       <returns>A new object that is a copy of the current instance.</returns>
495     </member>
496     <member name="M:System.Data.Common.DataTableMapping.ToString">
497       <summary>Converts the current <see cref="P:System.Data.Common.DataTableMapping.SourceTable" /> name to a string.</summary>
498       <returns>The current <see cref="P:System.Data.Common.DataTableMapping.SourceTable" /> name, as a string.</returns>
499     </member>
500     <member name="T:System.Data.Common.DataTableMappingCollection">
501       <summary>A collection of <see cref="T:System.Data.Common.DataTableMapping" /> objects. This class cannot be inherited.</summary>
502     </member>
503     <member name="M:System.Data.Common.DataTableMappingCollection.#ctor">
504       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMappingCollection" /> class. This new instance is empty, that is, it does not yet contain any <see cref="T:System.Data.Common.DataTableMapping" /> objects.</summary>
505     </member>
506     <member name="M:System.Data.Common.DataTableMappingCollection.Add(System.Object)">
507       <summary>Adds an <see cref="T:System.Object" /> that is a table mapping to the collection.</summary>
508       <param name="value">A <see langword="DataTableMapping" /> object to add to the collection.</param>
509       <returns>The index of the <see langword="DataTableMapping" /> object added to the collection.</returns>
510       <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataTableMapping" /> object.</exception>
511     </member>
512     <member name="M:System.Data.Common.DataTableMappingCollection.Add(System.String,System.String)">
513       <summary>Adds a <see cref="T:System.Data.Common.DataTableMapping" /> object to the collection when given a source table name and a <see cref="T:System.Data.DataSet" /> table name.</summary>
514       <param name="sourceTable">The case-sensitive name of the source table to map from.</param>
515       <param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> table to map to.</param>
516       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object that was added to the collection.</returns>
517     </member>
518     <member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Array)">
519       <summary>Copies the elements of the specified <see cref="T:System.Array" /> to the end of the collection.</summary>
520       <param name="values">An <see cref="T:System.Array" /> of values to add to the collection.</param>
521     </member>
522     <member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Data.Common.DataTableMapping[])">
523       <summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataTableMapping" /> array to the end of the collection.</summary>
524       <param name="values">The array of <see cref="T:System.Data.Common.DataTableMapping" /> objects to add to the collection.</param>
525     </member>
526     <member name="M:System.Data.Common.DataTableMappingCollection.Clear">
527       <summary>Removes all <see cref="T:System.Data.Common.DataTableMapping" /> objects from the collection.</summary>
528     </member>
529     <member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.Object)">
530       <summary>Gets a value indicating whether the given <see cref="T:System.Data.Common.DataTableMapping" /> object exists in the collection.</summary>
531       <param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataTableMapping" />.</param>
532       <returns>
533         <see langword="true" /> if this collection contains the specified <see cref="T:System.Data.Common.DataTableMapping" />; otherwise <see langword="false" />.</returns>
534     </member>
535     <member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.String)">
536       <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name exists in the collection.</summary>
537       <param name="value">The case-sensitive source table name containing the <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
538       <returns>
539         <see langword="true" /> if the collection contains a <see cref="T:System.Data.Common.DataTableMapping" /> object with this source table name; otherwise <see langword="false" />.</returns>
540     </member>
541     <member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Array,System.Int32)">
542       <summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMappingCollection" /> to the specified array.</summary>
543       <param name="array">An <see cref="T:System.Array" /> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection" /> elements.</param>
544       <param name="index">The starting index of the array.</param>
545     </member>
546     <member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Data.Common.DataTableMapping[],System.Int32)">
547       <summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMapping" /> to the specified array.</summary>
548       <param name="array">A <see cref="T:System.Data.Common.DataTableMapping" /> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection" /> elements.</param>
549       <param name="index">The starting index of the array.</param>
550     </member>
551     <member name="P:System.Data.Common.DataTableMappingCollection.Count">
552       <summary>Gets the number of <see cref="T:System.Data.Common.DataTableMapping" /> objects in the collection.</summary>
553       <returns>The number of <see langword="DataTableMapping" /> objects in the collection.</returns>
554     </member>
555     <member name="M:System.Data.Common.DataTableMappingCollection.GetByDataSetTable(System.String)">
556       <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
557       <param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> table to find.</param>
558       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</returns>
559     </member>
560     <member name="M:System.Data.Common.DataTableMappingCollection.GetEnumerator">
561       <summary>Gets an enumerator that can iterate through the collection.</summary>
562       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
563     </member>
564     <member name="M:System.Data.Common.DataTableMappingCollection.GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection,System.String,System.String,System.Data.MissingMappingAction)">
565       <summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source table name and <see cref="T:System.Data.DataSet" /> table name, using the given <see cref="T:System.Data.MissingMappingAction" />.</summary>
566       <param name="tableMappings">The <see cref="T:System.Data.Common.DataTableMappingCollection" /> collection to search.</param>
567       <param name="sourceTable">The case-sensitive name of the mapped source table.</param>
568       <param name="dataSetTable">The name, which is not case-sensitive, of the mapped <see cref="T:System.Data.DataSet" /> table.</param>
569       <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
570       <returns>A <see cref="T:System.Data.Common.DataTableMapping" /> object.</returns>
571       <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
572     </member>
573     <member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.Object)">
574       <summary>Gets the location of the specified <see cref="T:System.Data.Common.DataTableMapping" /> object within the collection.</summary>
575       <param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataTableMapping" /> object to find.</param>
576       <returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataTableMapping" /> object within the collection.</returns>
577     </member>
578     <member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.String)">
579       <summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</summary>
580       <param name="sourceTable">The case-sensitive name of the source table.</param>
581       <returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</returns>
582     </member>
583     <member name="M:System.Data.Common.DataTableMappingCollection.IndexOfDataSetTable(System.String)">
584       <summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
585       <param name="dataSetTable">The name, which is not case-sensitive, of the <see langword="DataSet" /> table to find.</param>
586       <returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the given <see cref="T:System.Data.DataSet" /> table name, or -1 if the <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist in the collection.</returns>
587     </member>
588     <member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Data.Common.DataTableMapping)">
589       <summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping" /> object into the <see cref="T:System.Data.Common.DataTableMappingCollection" /> at the specified index.</summary>
590       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
591       <param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
592     </member>
593     <member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Object)">
594       <summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping" /> object into the <see cref="T:System.Data.Common.DataTableMappingCollection" /> at the specified index.</summary>
595       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
596       <param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
597     </member>
598     <member name="P:System.Data.Common.DataTableMappingCollection.Item(System.Int32)">
599       <summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping" /> object at the specified index.</summary>
600       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to return.</param>
601       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object at the specified index.</returns>
602     </member>
603     <member name="P:System.Data.Common.DataTableMappingCollection.Item(System.String)">
604       <summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</summary>
605       <param name="sourceTable">The case-sensitive name of the source table.</param>
606       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</returns>
607     </member>
608     <member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Data.Common.DataTableMapping)">
609       <summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping" /> object from the collection.</summary>
610       <param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
611     </member>
612     <member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Object)">
613       <summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping" /> object from the collection.</summary>
614       <param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
615       <exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataTableMapping" /> object.</exception>
616       <exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
617     </member>
618     <member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.Int32)">
619       <summary>Removes the <see cref="T:System.Data.Common.DataTableMapping" /> object located at the specified index from the collection.</summary>
620       <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
621       <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist with the specified index.</exception>
622     </member>
623     <member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.String)">
624       <summary>Removes the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name from the collection.</summary>
625       <param name="sourceTable">The case-sensitive source table name to find.</param>
626       <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist with the specified source table name.</exception>
627     </member>
628     <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#IsSynchronized">
629       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
630       <returns>
631         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
632     </member>
633     <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#SyncRoot">
634       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
635       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
636     </member>
637     <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsFixedSize">
638       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary>
639       <returns>
640         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
641     </member>
642     <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsReadOnly">
643       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only.</summary>
644       <returns>
645         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</returns>
646     </member>
647     <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#Item(System.Int32)">
648       <summary>Gets or sets an item from the collection at a specified index.</summary>
649       <param name="index">The zero-based index of the item to get or set.</param>
650       <returns>The element at the specified index.</returns>
651     </member>
652     <member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Add(System.String,System.String)">
653       <summary>Adds a table mapping to the collection.</summary>
654       <param name="sourceTableName">The case-sensitive name of the source table.</param>
655       <param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet" /> table.</param>
656       <returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping" /> object.</returns>
657     </member>
658     <member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#GetByDataSetTable(System.String)">
659       <summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
660       <param name="dataSetTableName">The name of the <see langword="DataSet" /> table within the collection.</param>
661       <returns>The TableMapping object with the specified <see langword="DataSet" /> table name.</returns>
662     </member>
663     <member name="P:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Item(System.String)">
664       <summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name.</summary>
665       <param name="index">The <see langword="SourceTable" /> name of the <see cref="T:System.Data.ITableMapping" />.</param>
666       <returns>The instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see langword="SourceTable" /> name.</returns>
667     </member>
668     <member name="T:System.Data.Common.DbColumn">
669       <summary>Represents a column within a data source.</summary>
670     </member>
671     <member name="M:System.Data.Common.DbColumn.#ctor">
672       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbColumn" /> class.</summary>
673     </member>
674     <member name="P:System.Data.Common.DbColumn.AllowDBNull">
675       <summary>Gets a nullable boolean value that indicates whether <see langword="DBNull" /> values are allowed in this column, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether <see langword="DBNull" /> values are allowed in this column, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
676       <returns>Returns <see langword="true" /> if <see langword="DBNull" /> values are allowed in this column; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
677     </member>
678     <member name="P:System.Data.Common.DbColumn.BaseCatalogName">
679       <summary>Gets the catalog name associated with the data source; otherwise, <see langword="null" /> if no value is set. Can be set to either the catalog name or <see langword="null" /> when overridden in a derived class.</summary>
680       <returns>The catalog name associated with the data source; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
681     </member>
682     <member name="P:System.Data.Common.DbColumn.BaseColumnName">
683       <summary>Gets the base column name; otherwise, <see langword="null" /> if no value is set. Can be set to either the column name or <see langword="null" /> when overridden in a derived class.</summary>
684       <returns>The base column name; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
685     </member>
686     <member name="P:System.Data.Common.DbColumn.BaseSchemaName">
687       <summary>Gets the schema name associated with the data source; otherwise, <see langword="null" /> if no value is set. Can be set to either the schema name or <see langword="null" /> when overridden in a derived class.</summary>
688       <returns>The schema name associated with the data source; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
689     </member>
690     <member name="P:System.Data.Common.DbColumn.BaseServerName">
691       <summary>Gets the server name associated with the column; otherwise, <see langword="null" /> if no value is set. Can be set to either the server name or <see langword="null" /> when overridden in a derived class.</summary>
692       <returns>The server name associated with the column; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
693     </member>
694     <member name="P:System.Data.Common.DbColumn.BaseTableName">
695       <summary>Gets the table name in the schema; otherwise, <see langword="null" /> if no value is set. Can be set to either the table name or <see langword="null" /> when overridden in a derived class.</summary>
696       <returns>The table name in the schema; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
697     </member>
698     <member name="P:System.Data.Common.DbColumn.ColumnName">
699       <summary>Gets the name of the column. Can be set to the column name when overridden in a derived class.</summary>
700       <returns>The name of the column.</returns>
701     </member>
702     <member name="P:System.Data.Common.DbColumn.ColumnOrdinal">
703       <summary>Gets the column position (ordinal) in the datasource row; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the column position or <see langword="null" /> when overridden in a derived class.</summary>
704       <returns>An <see langword="int32" /> value for column ordinal; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
705     </member>
706     <member name="P:System.Data.Common.DbColumn.ColumnSize">
707       <summary>Gets the column size; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the column size or <see langword="null" /> when overridden in a derived class.</summary>
708       <returns>An <see langword="int32" /> value for column size; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
709     </member>
710     <member name="P:System.Data.Common.DbColumn.DataType">
711       <summary>Gets the type of data stored in the column. Can be set to a <see cref="T:System.Type" /> object that represents the type of data in the column when overridden in a derived class.</summary>
712       <returns>A <see cref="T:System.Type" /> object that represents the type of data the column contains.</returns>
713     </member>
714     <member name="P:System.Data.Common.DbColumn.DataTypeName">
715       <summary>Gets the name of the data type; otherwise, <see langword="null" /> if no value is set. Can be set to either the data type name or <see langword="null" /> when overridden in a derived class.</summary>
716       <returns>The name of the data type; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
717     </member>
718     <member name="P:System.Data.Common.DbColumn.IsAliased">
719       <summary>Gets a nullable boolean value that indicates whether this column is aliased, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is aliased, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
720       <returns>Returns <see langword="true" /> if this column is aliased; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
721     </member>
722     <member name="P:System.Data.Common.DbColumn.IsAutoIncrement">
723       <summary>Gets a nullable boolean value that indicates whether values in this column are automatically incremented, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether values in this column are automatically incremented, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
724       <returns>Returns <see langword="true" /> if values in this column are automatically incremented; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
725     </member>
726     <member name="P:System.Data.Common.DbColumn.IsExpression">
727       <summary>Gets a nullable boolean value that indicates whether this column is an expression, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is an expression, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
728       <returns>Returns <see langword="true" /> if this column is an expression; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
729     </member>
730     <member name="P:System.Data.Common.DbColumn.IsHidden">
731       <summary>Gets a nullable boolean value that indicates whether this column is hidden, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is hidden, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
732       <returns>Returns <see langword="true" /> if this column is hidden; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
733     </member>
734     <member name="P:System.Data.Common.DbColumn.IsIdentity">
735       <summary>Gets a nullable boolean value that indicates whether this column is an identity, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is an identity, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
736       <returns>Returns <see langword="true" /> if this column is an identity; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
737     </member>
738     <member name="P:System.Data.Common.DbColumn.IsKey">
739       <summary>Gets a nullable boolean value that indicates whether this column is a key, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is a key, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
740       <returns>Returns <see langword="true" /> if this column is a key; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
741     </member>
742     <member name="P:System.Data.Common.DbColumn.IsLong">
743       <summary>Gets a nullable boolean value that indicates whether this column contains long data, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column contains long data, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
744       <returns>Returns <see langword="true" /> if this column contains long data; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
745     </member>
746     <member name="P:System.Data.Common.DbColumn.IsReadOnly">
747       <summary>Gets a nullable boolean value that indicates whether this column is read-only, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is read-only, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
748       <returns>Returns <see langword="true" /> if this column is read-only; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
749     </member>
750     <member name="P:System.Data.Common.DbColumn.IsUnique">
751       <summary>Gets a nullable boolean value that indicates whether a unique constraint applies to this column, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether a unique constraint applies to this column, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
752       <returns>Returns <see langword="true" /> if a unique constraint applies to this column; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
753     </member>
754     <member name="P:System.Data.Common.DbColumn.Item(System.String)">
755       <summary>Gets the object based on the column property name.</summary>
756       <param name="property">The column property name.</param>
757       <returns>The object based on the column property name.</returns>
758     </member>
759     <member name="P:System.Data.Common.DbColumn.NumericPrecision">
760       <summary>Gets the numeric precision of the column data; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the numeric precision of the column data or <see langword="null" /> when overridden in a derived class.</summary>
761       <returns>An <see langword="int32" /> value that specifies the precision of the column data, if the data is numeric; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
762     </member>
763     <member name="P:System.Data.Common.DbColumn.NumericScale">
764       <summary>Gets a nullable <see langword="int32" /> value that either returns <see langword="null" /> or the numeric scale of the column data. Can be set to either <see langword="null" /> or an <see langword="int32" /> value for the numeric scale of the column data when overridden in a derived class.</summary>
765       <returns>A null reference (<see langword="Nothing" /> in Visual Basic) if no value is set; otherwise, a <see langword="int32" /> value that specifies the scale of the column data, if the data is numeric.</returns>
766     </member>
767     <member name="P:System.Data.Common.DbColumn.UdtAssemblyQualifiedName">
768       <summary>Gets the assembly-qualified name of the <see cref="T:System.Type" /> object that represents the type of data in the column; otherwise, <see langword="null" /> if no value is set. Can be set to either the assembly-qualified name or <see langword="null" /> when overridden in a derived class.</summary>
769       <returns>The assembly-qualified name of the <see cref="T:System.Type" /> object that represents the type of data in the column; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
770     </member>
771     <member name="T:System.Data.Common.DbCommand">
772       <summary>Represents an SQL statement or stored procedure to execute against a data source. Provides a base class for database-specific classes that represent commands. <see cref="Overload:System.Data.Common.DbCommand.ExecuteNonQueryAsync" /></summary>
773     </member>
774     <member name="M:System.Data.Common.DbCommand.#ctor">
775       <summary>Constructs an instance of the <see cref="T:System.Data.Common.DbCommand" /> object.</summary>
776     </member>
777     <member name="M:System.Data.Common.DbCommand.Cancel">
778       <summary>When overridden in a derived class, attempts to cancel the execution of a <see cref="T:System.Data.Common.DbCommand" />.</summary>
779     </member>
780     <member name="P:System.Data.Common.DbCommand.CommandText">
781       <summary>When overridden in a derived class, gets or sets the text command to run against the data source.</summary>
782       <returns>The text command to execute. The default value is an empty string ("").</returns>
783     </member>
784     <member name="P:System.Data.Common.DbCommand.CommandTimeout">
785       <summary>When overridden in a derived class, gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
786       <returns>The time in seconds to wait for the command to execute.</returns>
787     </member>
788     <member name="P:System.Data.Common.DbCommand.CommandType">
789       <summary>When overridden in a derived class, gets or sets how the <see cref="P:System.Data.Common.DbCommand.CommandText" /> property is interpreted.</summary>
790       <returns>One of the enumeration values that specifies how a command string is interpreted. The default is <see langword="Text" />.</returns>
791     </member>
792     <member name="P:System.Data.Common.DbCommand.Connection">
793       <summary>Gets or sets the <see cref="T:System.Data.Common.DbConnection" /> used by this <see cref="T:System.Data.Common.DbCommand" />.</summary>
794       <returns>The connection to the data source.</returns>
795     </member>
796     <member name="M:System.Data.Common.DbCommand.CreateDbParameter">
797       <summary>When overridden in a derived class, creates a new instance of a <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
798       <returns>A <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
799     </member>
800     <member name="M:System.Data.Common.DbCommand.CreateParameter">
801       <summary>Creates a new instance of a <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
802       <returns>A <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
803     </member>
804     <member name="P:System.Data.Common.DbCommand.DbConnection">
805       <summary>When overridden in a derived class, gets or sets the <see cref="T:System.Data.Common.DbConnection" /> used by this <see cref="T:System.Data.Common.DbCommand" />.</summary>
806       <returns>The connection to the data source.</returns>
807     </member>
808     <member name="P:System.Data.Common.DbCommand.DbParameterCollection">
809       <summary>When overridden in a derived class, gets the collection of <see cref="T:System.Data.Common.DbParameter" /> objects.</summary>
810       <returns>The parameters of the SQL statement or stored procedure.</returns>
811     </member>
812     <member name="P:System.Data.Common.DbCommand.DbTransaction">
813       <summary>When overridden in a derived class, gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
814       <returns>The transaction within which a command object of a .NET data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
815     </member>
816     <member name="P:System.Data.Common.DbCommand.DesignTimeVisible">
817       <summary>When overridden in a derived class, gets or sets a value indicating whether the command object should be visible in a customized interface control.</summary>
818       <returns>
819         <see langword="true" />, if the command object should be visible in a control; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
820     </member>
821     <member name="M:System.Data.Common.DbCommand.DisposeAsync">
822       <summary>Asynchronously diposes the command object.</summary>
823       <returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> representing the asynchronous operation.</returns>
824     </member>
825     <member name="M:System.Data.Common.DbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)">
826       <summary>When overridden in a derived class, executes the command text against the connection.</summary>
827       <param name="behavior">An instance of <see cref="T:System.Data.CommandBehavior" />.</param>
828       <returns>A task representing the operation.</returns>
829       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
830       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
831     </member>
832     <member name="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
833       <summary>Providers should implement this method to provide a non-default implementation for <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" /> overloads.
834 The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteReader will be communicated via the returned Task Exception property.
835 This method accepts a cancellation token that can be used to request the operation to be cancelled early. Implementations may ignore this request.</summary>
836       <param name="behavior">Options for statement execution and data retrieval.</param>
837       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
838       <returns>A task representing the asynchronous operation.</returns>
839       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
840       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
841     </member>
842     <member name="M:System.Data.Common.DbCommand.ExecuteNonQuery">
843       <summary>When overridden in a derived class, executes a SQL statement against a connection object.</summary>
844       <returns>The number of rows affected.</returns>
845     </member>
846     <member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync">
847       <summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" />, which executes a SQL statement against a connection object.
848 Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
849       <returns>A task representing the asynchronous operation.</returns>
850       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
851     </member>
852     <member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)">
853       <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" />. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored.
854 The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token.  Exceptions thrown by <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" /> will be communicated via the returned Task Exception property.
855 Do not invoke other methods and properties of the <see langword="DbCommand" /> object until the returned Task is complete.</summary>
856       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
857       <returns>A task representing the asynchronous operation.</returns>
858       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
859     </member>
860     <member name="M:System.Data.Common.DbCommand.ExecuteReader">
861       <summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" />, and returns an <see cref="T:System.Data.Common.DbDataReader" />.</summary>
862       <returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
863     </member>
864     <member name="M:System.Data.Common.DbCommand.ExecuteReader(System.Data.CommandBehavior)">
865       <summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" />, and returns an <see cref="T:System.Data.Common.DbDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
866       <param name="behavior">One of the enumeration values that specifies the command behavior.</param>
867       <returns>An <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
868     </member>
869     <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync">
870       <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />.
871 Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
872       <returns>A task representing the asynchronous operation.</returns>
873       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
874       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
875     </member>
876     <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior)">
877       <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />.
878 Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
879       <param name="behavior">One of the enumeration values that specified the command behavior.</param>
880       <returns>A task representing the asynchronous operation.</returns>
881       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
882       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
883     </member>
884     <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
885       <summary>Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
886       <param name="behavior">One of the enumeration values that specifies the command behavior.</param>
887       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
888       <returns>A task representing the asynchronous operation.</returns>
889       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
890       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
891     </member>
892     <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Threading.CancellationToken)">
893       <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />. This method propagates a notification that operations should be canceled.
894 Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
895       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
896       <returns>A task representing the asynchronous operation.</returns>
897       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
898       <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
899     </member>
900     <member name="M:System.Data.Common.DbCommand.ExecuteScalar">
901       <summary>When overridden in a derived class, executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored.</summary>
902       <returns>The first column of the first row in the result set.</returns>
903     </member>
904     <member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync">
905       <summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" />, which executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored.
906 Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
907       <returns>A task representing the asynchronous operation.</returns>
908       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
909     </member>
910     <member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)">
911       <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" />. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored.
912 The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteScalar will be communicated via the returned Task Exception property.
913 Do not invoke other methods and properties of the <see langword="DbCommand" /> object until the returned Task is complete.</summary>
914       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
915       <returns>A task representing the asynchronous operation.</returns>
916       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
917     </member>
918     <member name="P:System.Data.Common.DbCommand.Parameters">
919       <summary>Gets the collection of <see cref="T:System.Data.Common.DbParameter" /> objects. For more information on parameters, see Configuring Parameters and Parameter Data Types.</summary>
920       <returns>The parameters of the SQL statement or stored procedure.</returns>
921     </member>
922     <member name="M:System.Data.Common.DbCommand.Prepare">
923       <summary>When overridden in a derived class, creates a prepared (or compiled) version of the command on the data source.</summary>
924     </member>
925     <member name="M:System.Data.Common.DbCommand.PrepareAsync(System.Threading.CancellationToken)">
926       <summary>Asynchronously creates a prepared (or compiled) version of the command on the data source.</summary>
927       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
928       <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns>
929     </member>
930     <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Connection">
931       <summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used by this instance of the <see cref="T:System.Data.IDbCommand" />.</summary>
932       <returns>The connection to the data source.</returns>
933     </member>
934     <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#CreateParameter">
935       <summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter" /> object.</summary>
936       <returns>An <see langword="IDbDataParameter" /> object.</returns>
937     </member>
938     <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader">
939       <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" /> and builds an <see cref="T:System.Data.IDataReader" />.</summary>
940       <returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
941     </member>
942     <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)">
943       <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" />, and builds an <see cref="T:System.Data.IDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
944       <param name="behavior">One of the enumeration values that specifies the command behavior.</param>
945       <returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
946     </member>
947     <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Parameters">
948       <summary>Gets the <see cref="T:System.Data.IDataParameterCollection" />.</summary>
949       <returns>The parameters of the SQL statement or stored procedure.</returns>
950     </member>
951     <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Transaction">
952       <summary>Gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
953       <returns>The transaction within which a <see langword="Command" /> object of a .NET Framework data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
954     </member>
955     <member name="P:System.Data.Common.DbCommand.Transaction">
956       <summary>Gets or sets the <see cref="T:System.Data.Common.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
957       <returns>The transaction within which a <see langword="Command" /> object of a .NET Framework data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
958     </member>
959     <member name="P:System.Data.Common.DbCommand.UpdatedRowSource">
960       <summary>When overridden in a derived class, gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the Update method of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
961       <returns>One of the enumeration values that indicates how command results are applied. The default is <see langword="Both" /> unless the command is automatically generated. Then the default is <see langword="None" />.</returns>
962     </member>
963     <member name="T:System.Data.Common.DbCommandBuilder">
964       <summary>Automatically generates single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated database. This is an abstract class that can only be inherited.</summary>
965     </member>
966     <member name="M:System.Data.Common.DbCommandBuilder.#ctor">
967       <summary>Initializes a new instance of a class that inherits from the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
968     </member>
969     <member name="M:System.Data.Common.DbCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)">
970       <summary>Allows the provider implementation of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class to handle additional parameter properties.</summary>
971       <param name="parameter">A <see cref="T:System.Data.Common.DbParameter" /> to which the additional modifications are applied.</param>
972       <param name="row">The <see cref="T:System.Data.DataRow" /> from the schema table provided by <see cref="M:System.Data.Common.DbDataReader.GetSchemaTable" />.</param>
973       <param name="statementType">The type of command being generated; INSERT, UPDATE or DELETE.</param>
974       <param name="whereClause">
975         <see langword="true" /> if the parameter is part of the update or delete WHERE clause, <see langword="false" /> if it is part of the insert or update values.</param>
976     </member>
977     <member name="P:System.Data.Common.DbCommandBuilder.CatalogLocation">
978       <summary>Sets or gets the <see cref="T:System.Data.Common.CatalogLocation" /> for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
979       <returns>A <see cref="T:System.Data.Common.CatalogLocation" /> object.</returns>
980     </member>
981     <member name="P:System.Data.Common.DbCommandBuilder.CatalogSeparator">
982       <summary>Sets or gets a string used as the catalog separator for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
983       <returns>A string indicating the catalog separator for use with an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</returns>
984     </member>
985     <member name="P:System.Data.Common.DbCommandBuilder.ConflictOption">
986       <summary>Specifies which <see cref="T:System.Data.ConflictOption" /> is to be used by the <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
987       <returns>Returns one of the <see cref="T:System.Data.ConflictOption" /> values describing the behavior of this <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
988     </member>
989     <member name="P:System.Data.Common.DbCommandBuilder.DataAdapter">
990       <summary>Gets or sets a <see cref="T:System.Data.Common.DbDataAdapter" /> object for which Transact-SQL statements are automatically generated.</summary>
991       <returns>A <see cref="T:System.Data.Common.DbDataAdapter" /> object.</returns>
992     </member>
993     <member name="M:System.Data.Common.DbCommandBuilder.Dispose(System.Boolean)">
994       <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbCommandBuilder" /> and optionally releases the managed resources.</summary>
995       <param name="disposing">
996         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
997     </member>
998     <member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand">
999       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions at the data source.</summary>
1000       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions.</returns>
1001     </member>
1002     <member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand(System.Boolean)">
1003       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions at the data source, optionally using columns for parameter names.</summary>
1004       <param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate <c>@p1</c>, <c>@p2</c>, and so on.</param>
1005       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions.</returns>
1006     </member>
1007     <member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand">
1008       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions at the data source.</summary>
1009       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions.</returns>
1010     </member>
1011     <member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand(System.Boolean)">
1012       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions at the data source, optionally using columns for parameter names.</summary>
1013       <param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate <c>@p1</c>, <c>@p2</c>, and so on.</param>
1014       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions.</returns>
1015     </member>
1016     <member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.Int32)">
1017       <summary>Returns the name of the specified parameter in the format of <c>@p#</c>. Use when building a custom command builder.</summary>
1018       <param name="parameterOrdinal">The number to be included as part of the parameter's name.</param>
1019       <returns>The name of the parameter with the specified number appended as part of the parameter name.</returns>
1020     </member>
1021     <member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.String)">
1022       <summary>Returns the full parameter name, given the partial parameter name.</summary>
1023       <param name="parameterName">The partial name of the parameter.</param>
1024       <returns>The full parameter name corresponding to the partial parameter name requested.</returns>
1025     </member>
1026     <member name="M:System.Data.Common.DbCommandBuilder.GetParameterPlaceholder(System.Int32)">
1027       <summary>Returns the placeholder for the parameter in the associated SQL statement.</summary>
1028       <param name="parameterOrdinal">The number to be included as part of the parameter's name.</param>
1029       <returns>The name of the parameter with the specified number appended.</returns>
1030     </member>
1031     <member name="M:System.Data.Common.DbCommandBuilder.GetSchemaTable(System.Data.Common.DbCommand)">
1032       <summary>Returns the schema table for the <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
1033       <param name="sourceCommand">The <see cref="T:System.Data.Common.DbCommand" /> for which to retrieve the corresponding schema table.</param>
1034       <returns>A <see cref="T:System.Data.DataTable" /> that represents the schema for the specific <see cref="T:System.Data.Common.DbCommand" />.</returns>
1035     </member>
1036     <member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand">
1037       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates at the data source.</summary>
1038       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates.</returns>
1039     </member>
1040     <member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand(System.Boolean)">
1041       <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates at the data source, optionally using columns for parameter names.</summary>
1042       <param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate <c>@p1</c>, <c>@p2</c>, and so on.</param>
1043       <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates.</returns>
1044     </member>
1045     <member name="M:System.Data.Common.DbCommandBuilder.InitializeCommand(System.Data.Common.DbCommand)">
1046       <summary>Resets the <see cref="P:System.Data.Common.DbCommand.CommandTimeout" />, <see cref="P:System.Data.Common.DbCommand.Transaction" />, <see cref="P:System.Data.Common.DbCommand.CommandType" />, and <see cref="T:System.Data.UpdateRowSource" /> properties on the <see cref="T:System.Data.Common.DbCommand" />.</summary>
1047       <param name="command">The <see cref="T:System.Data.Common.DbCommand" /> to be used by the command builder for the corresponding insert, update, or delete command.</param>
1048       <returns>A <see cref="T:System.Data.Common.DbCommand" /> instance to use for each insert, update, or delete operation. Passing a null value allows the <see cref="M:System.Data.Common.DbCommandBuilder.InitializeCommand(System.Data.Common.DbCommand)" /> method to create a <see cref="T:System.Data.Common.DbCommand" /> object based on the Select command associated with the <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
1049     </member>
1050     <member name="M:System.Data.Common.DbCommandBuilder.QuoteIdentifier(System.String)">
1051       <summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier.</summary>
1052       <param name="unquotedIdentifier">The original unquoted identifier.</param>
1053       <returns>The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.</returns>
1054     </member>
1055     <member name="P:System.Data.Common.DbCommandBuilder.QuotePrefix">
1056       <summary>Gets or sets the beginning character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
1057       <returns>The beginning character or characters to use. The default is an empty string.</returns>
1058       <exception cref="T:System.InvalidOperationException">This property cannot be changed after an insert, update, or delete command has been generated.</exception>
1059     </member>
1060     <member name="P:System.Data.Common.DbCommandBuilder.QuoteSuffix">
1061       <summary>Gets or sets the ending character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
1062       <returns>The ending character or characters to use. The default is an empty string.</returns>
1063     </member>
1064     <member name="M:System.Data.Common.DbCommandBuilder.RefreshSchema">
1065       <summary>Clears the commands associated with this <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
1066     </member>
1067     <member name="M:System.Data.Common.DbCommandBuilder.RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs)">
1068       <summary>Adds an event handler for the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event.</summary>
1069       <param name="rowUpdatingEvent">A <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> instance containing information about the event.</param>
1070     </member>
1071     <member name="P:System.Data.Common.DbCommandBuilder.SchemaSeparator">
1072       <summary>Gets or sets the character to be used for the separator between the schema identifier and any other identifiers.</summary>
1073       <returns>The character to be used as the schema separator.</returns>
1074     </member>
1075     <member name="P:System.Data.Common.DbCommandBuilder.SetAllValues">
1076       <summary>Specifies whether all column values in an update statement are included or only changed ones.</summary>
1077       <returns>
1078         <see langword="true" /> if the UPDATE statement generated by the <see cref="T:System.Data.Common.DbCommandBuilder" /> includes all columns; <see langword="false" /> if it includes only changed columns.</returns>
1079     </member>
1080     <member name="M:System.Data.Common.DbCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)">
1081       <summary>Registers the <see cref="T:System.Data.Common.DbCommandBuilder" /> to handle the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event for a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
1082       <param name="adapter">The <see cref="T:System.Data.Common.DbDataAdapter" /> to be used for the update.</param>
1083     </member>
1084     <member name="M:System.Data.Common.DbCommandBuilder.UnquoteIdentifier(System.String)">
1085       <summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.</summary>
1086       <param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
1087       <returns>The unquoted identifier, with embedded quotes properly un-escaped.</returns>
1088     </member>
1089     <member name="T:System.Data.Common.DbConnection">
1090       <summary>Defines the core behavior of database connections and provides a base class for database-specific connections.</summary>
1091     </member>
1092     <member name="M:System.Data.Common.DbConnection.#ctor">
1093       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnection" /> class.</summary>
1094     </member>
1095     <member name="M:System.Data.Common.DbConnection.BeginDbTransaction(System.Data.IsolationLevel)">
1096       <summary>When overridden in a derived class, starts a database transaction.</summary>
1097       <param name="isolationLevel">One of the enumeration values that specifies the isolation level for the transaction to use.</param>
1098       <returns>An object representing the new transaction.</returns>
1099     </member>
1100     <member name="M:System.Data.Common.DbConnection.BeginDbTransactionAsync(System.Data.IsolationLevel,System.Threading.CancellationToken)">
1101       <summary>Asynchronously starts a database transaction.</summary>
1102       <param name="isolationLevel">One of the enumeration values that specifies the isolation level for the transaction to use.</param>
1103       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
1104       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is an object representing the new transaction.</returns>
1105     </member>
1106     <member name="M:System.Data.Common.DbConnection.BeginTransaction">
1107       <summary>Starts a database transaction.</summary>
1108       <returns>An object representing the new transaction.</returns>
1109     </member>
1110     <member name="M:System.Data.Common.DbConnection.BeginTransaction(System.Data.IsolationLevel)">
1111       <summary>Starts a database transaction with the specified isolation level.</summary>
1112       <param name="isolationLevel">One of the enumeration values that specifies the isolation level for the transaction to use.</param>
1113       <returns>An object representing the new transaction.</returns>
1114     </member>
1115     <member name="M:System.Data.Common.DbConnection.BeginTransactionAsync(System.Data.IsolationLevel,System.Threading.CancellationToken)">
1116       <summary>Asynchronously begins a database transaction.</summary>
1117       <param name="isolationLevel">One of the enumeration values that specifies the isolation level for the transaction to use.</param>
1118       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1119       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is an object representing the new transaction.</returns>
1120     </member>
1121     <member name="M:System.Data.Common.DbConnection.BeginTransactionAsync(System.Threading.CancellationToken)">
1122       <summary>Asynchronously begins a database transaction.</summary>
1123       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1124       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is an object representing the new transaction.</returns>
1125     </member>
1126     <member name="M:System.Data.Common.DbConnection.ChangeDatabase(System.String)">
1127       <summary>When overridden in a derived class, changes the current database for an open connection.</summary>
1128       <param name="databaseName">The name of the database for the connection to use.</param>
1129     </member>
1130     <member name="M:System.Data.Common.DbConnection.ChangeDatabaseAsync(System.String,System.Threading.CancellationToken)">
1131       <summary>Asynchronously changes the current database for an open connection.</summary>
1132       <param name="databaseName">The name of the database for the connection to use.</param>
1133       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
1134       <returns>A task representing the asynchronous operation.</returns>
1135     </member>
1136     <member name="M:System.Data.Common.DbConnection.Close">
1137       <summary>When overridden in a derived class, closes the connection to the database.</summary>
1138     </member>
1139     <member name="M:System.Data.Common.DbConnection.CloseAsync">
1140       <summary>Asynchronously closes the connection to the database.</summary>
1141       <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns>
1142     </member>
1143     <member name="P:System.Data.Common.DbConnection.ConnectionString">
1144       <summary>When overridden in a derived class, gets or sets the string used to open the connection.</summary>
1145       <returns>The connection string used to establish the initial connection. The exact contents of the connection string depend on the specific data source for this connection. The default value is an empty string.</returns>
1146     </member>
1147     <member name="P:System.Data.Common.DbConnection.ConnectionTimeout">
1148       <summary>Gets the time to wait while establishing a connection before terminating the attempt and generating an error.</summary>
1149       <returns>The time (in seconds) to wait for a connection to open. The default value is determined by the specific type of connection that you are using.</returns>
1150     </member>
1151     <member name="M:System.Data.Common.DbConnection.CreateCommand">
1152       <summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object associated with the current connection.</summary>
1153       <returns>A <see cref="T:System.Data.Common.DbCommand" /> object.</returns>
1154     </member>
1155     <member name="M:System.Data.Common.DbConnection.CreateDbCommand">
1156       <summary>When overridden in a derived class, creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object associated with the current connection.</summary>
1157       <returns>A <see cref="T:System.Data.Common.DbCommand" /> object.</returns>
1158     </member>
1159     <member name="P:System.Data.Common.DbConnection.Database">
1160       <summary>When overridden in a derived class, gets the name of the current database after a connection is opened, or the database name specified in the connection string before the connection is opened.</summary>
1161       <returns>The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.</returns>
1162     </member>
1163     <member name="P:System.Data.Common.DbConnection.DataSource">
1164       <summary>When overridden in a derived class, gets the name of the database server to which to connect.</summary>
1165       <returns>The name of the database server to which to connect. The default value is an empty string.</returns>
1166     </member>
1167     <member name="P:System.Data.Common.DbConnection.DbProviderFactory">
1168       <summary>Gets the <see cref="T:System.Data.Common.DbProviderFactory" /> for this <see cref="T:System.Data.Common.DbConnection" />.</summary>
1169       <returns>A set of methods for creating instances of a provider's implementation of the data source classes.</returns>
1170     </member>
1171     <member name="M:System.Data.Common.DbConnection.DisposeAsync">
1172       <summary>Asynchronously diposes the connection object.</summary>
1173       <returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> representing the asynchronous operation.</returns>
1174     </member>
1175     <member name="M:System.Data.Common.DbConnection.EnlistTransaction(System.Transactions.Transaction)">
1176       <summary>Enlists in the specified transaction.</summary>
1177       <param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
1178     </member>
1179     <member name="M:System.Data.Common.DbConnection.GetSchema">
1180       <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" />.</summary>
1181       <returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
1182     </member>
1183     <member name="M:System.Data.Common.DbConnection.GetSchema(System.String)">
1184       <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" /> using the specified string for the schema name.</summary>
1185       <param name="collectionName">Specifies the name of the schema to return.</param>
1186       <returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
1187       <exception cref="T:System.ArgumentException">
1188         <paramref name="collectionName" /> is specified as null.</exception>
1189     </member>
1190     <member name="M:System.Data.Common.DbConnection.GetSchema(System.String,System.String[])">
1191       <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
1192       <param name="collectionName">Specifies the name of the schema to return.</param>
1193       <param name="restrictionValues">Specifies a set of restriction values for the requested schema.</param>
1194       <returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
1195       <exception cref="T:System.ArgumentException">
1196         <paramref name="collectionName" /> is specified as null.</exception>
1197     </member>
1198     <member name="M:System.Data.Common.DbConnection.OnStateChange(System.Data.StateChangeEventArgs)">
1199       <summary>Raises the <see cref="E:System.Data.Common.DbConnection.StateChange" /> event.</summary>
1200       <param name="stateChange">A <see cref="T:System.Data.StateChangeEventArgs" /> that contains the event data.</param>
1201     </member>
1202     <member name="M:System.Data.Common.DbConnection.Open">
1203       <summary>When overridden in a derived class, opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString" />.</summary>
1204     </member>
1205     <member name="M:System.Data.Common.DbConnection.OpenAsync">
1206       <summary>An asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open" />, which opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString" />. This method invokes the virtual method <see cref="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
1207       <returns>A task representing the asynchronous operation.</returns>
1208     </member>
1209     <member name="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)">
1210       <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open" />. Providers should override with an appropriate implementation. The cancellation token can optionally be honored.
1211 The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbConnection.Open" /> call and returns a completed task. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Open will be communicated via the returned Task Exception property.
1212 Do not invoke other methods and properties of the <see langword="DbConnection" /> object until the returned Task is complete.</summary>
1213       <param name="cancellationToken">The cancellation instruction.</param>
1214       <returns>A task representing the asynchronous operation.</returns>
1215     </member>
1216     <member name="P:System.Data.Common.DbConnection.ServerVersion">
1217       <summary>When overridden in a derived class, gets a string that represents the version of the server to which the object is connected.</summary>
1218       <returns>The version of the database. The format of the string returned depends on the specific type of connection you are using.</returns>
1219       <exception cref="T:System.InvalidOperationException">
1220         <see cref="P:System.Data.Common.DbConnection.ServerVersion" /> was called while the returned Task was not completed and the connection was not opened after a call to <see cref="Overload:System.Data.Common.DbConnection.OpenAsync" />.</exception>
1221     </member>
1222     <member name="P:System.Data.Common.DbConnection.State">
1223       <summary>Gets a string that describes the state of the connection.</summary>
1224       <returns>The state of the connection. The format of the string returned depends on the specific type of connection you are using.</returns>
1225     </member>
1226     <member name="E:System.Data.Common.DbConnection.StateChange">
1227       <summary>Occurs when the state of the event changes.</summary>
1228     </member>
1229     <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction">
1230       <summary>Begins a database transaction.</summary>
1231       <returns>An object that represents the new transaction.</returns>
1232     </member>
1233     <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction(System.Data.IsolationLevel)">
1234       <summary>Begins a database transaction with the specified isolation level.</summary>
1235       <param name="isolationLevel">One of the enumeration values that specifies the isolation level for the transaction to use.</param>
1236       <returns>An object that represents the new transaction.</returns>
1237     </member>
1238     <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#CreateCommand">
1239       <summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object that is associated with the current connection.</summary>
1240       <returns>A <see cref="T:System.Data.Common.DbCommand" /> object that is associated with the connection.</returns>
1241     </member>
1242     <member name="T:System.Data.Common.DbConnectionStringBuilder">
1243       <summary>Provides a base class for strongly typed connection string builders.</summary>
1244     </member>
1245     <member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor">
1246       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.</summary>
1247     </member>
1248     <member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor(System.Boolean)">
1249       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class, optionally using ODBC rules for quoting values.</summary>
1250       <param name="useOdbcRules">
1251         <see langword="true" /> to use {} to delimit fields; <see langword="false" /> to use quotation marks.</param>
1252     </member>
1253     <member name="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)">
1254       <summary>Adds an entry with the specified key and value into the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1255       <param name="keyword">The key to add to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
1256       <param name="value">The value for the specified key.</param>
1257       <exception cref="T:System.ArgumentNullException">
1258         <paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
1259       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.
1260 -or-
1261 The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
1262     </member>
1263     <member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String)">
1264       <summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</summary>
1265       <param name="builder">The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
1266       <param name="keyword">The key to be added.</param>
1267       <param name="value">The value for the supplied key.</param>
1268     </member>
1269     <member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String,System.Boolean)">
1270       <summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</summary>
1271       <param name="builder">The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
1272       <param name="keyword">The key to be added.</param>
1273       <param name="value">The value for the supplied key.</param>
1274       <param name="useOdbcRules">
1275         <see langword="true" /> to use {} to delimit fields, <see langword="false" /> to use quotation marks.</param>
1276     </member>
1277     <member name="P:System.Data.Common.DbConnectionStringBuilder.BrowsableConnectionString">
1278       <summary>Gets or sets a value that indicates whether the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property is visible in Visual Studio designers.</summary>
1279       <returns>
1280         <see langword="true" /> if the connection string is visible within designers; <see langword="false" /> otherwise. The default is <see langword="true" />.</returns>
1281     </member>
1282     <member name="M:System.Data.Common.DbConnectionStringBuilder.Clear">
1283       <summary>Clears the contents of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
1284       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.</exception>
1285     </member>
1286     <member name="M:System.Data.Common.DbConnectionStringBuilder.ClearPropertyDescriptors">
1287       <summary>Clears the collection of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects on the associated <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1288     </member>
1289     <member name="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString">
1290       <summary>Gets or sets the connection string associated with the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1291       <returns>The current connection string, created from the key/value pairs that are contained within the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />. The default value is an empty string.</returns>
1292       <exception cref="T:System.ArgumentException">An invalid connection string argument has been supplied.</exception>
1293     </member>
1294     <member name="M:System.Data.Common.DbConnectionStringBuilder.ContainsKey(System.String)">
1295       <summary>Determines whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains a specific key.</summary>
1296       <param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
1297       <returns>
1298         <see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains an entry with the specified key; otherwise <see langword="false" />.</returns>
1299       <exception cref="T:System.ArgumentNullException">
1300         <paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
1301     </member>
1302     <member name="P:System.Data.Common.DbConnectionStringBuilder.Count">
1303       <summary>Gets the current number of keys that are contained within the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property.</summary>
1304       <returns>The number of keys that are contained within the connection string maintained by the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</returns>
1305     </member>
1306     <member name="M:System.Data.Common.DbConnectionStringBuilder.EquivalentTo(System.Data.Common.DbConnectionStringBuilder)">
1307       <summary>Compares the connection information in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object with the connection information in the supplied object.</summary>
1308       <param name="connectionStringBuilder">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> to be compared with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object.</param>
1309       <returns>
1310         <see langword="true" /> if the connection information in both of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> objects causes an equivalent connection string; otherwise <see langword="false" />.</returns>
1311     </member>
1312     <member name="M:System.Data.Common.DbConnectionStringBuilder.GetProperties(System.Collections.Hashtable)">
1313       <summary>Fills a supplied <see cref="T:System.Collections.Hashtable" /> with information about all the properties of this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1314       <param name="propertyDescriptors">The <see cref="T:System.Collections.Hashtable" /> to be filled with information about this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
1315     </member>
1316     <member name="P:System.Data.Common.DbConnectionStringBuilder.IsFixedSize">
1317       <summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</summary>
1318       <returns>
1319         <see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size; otherwise <see langword="false" />.</returns>
1320     </member>
1321     <member name="P:System.Data.Common.DbConnectionStringBuilder.IsReadOnly">
1322       <summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.</summary>
1323       <returns>
1324         <see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
1325     </member>
1326     <member name="P:System.Data.Common.DbConnectionStringBuilder.Item(System.String)">
1327       <summary>Gets or sets the value associated with the specified key.</summary>
1328       <param name="keyword">The key of the item to get or set.</param>
1329       <returns>The value associated with the specified key. If the specified key is not found, trying to get it returns a null reference (<see langword="Nothing" /> in Visual Basic), and trying to set it creates a new element using the specified key.
1330 Passing a null (<see langword="Nothing" /> in Visual Basic) key throws an <see cref="T:System.ArgumentNullException" />. Assigning a null value removes the key/value pair.</returns>
1331       <exception cref="T:System.ArgumentNullException">
1332         <paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
1333       <exception cref="T:System.NotSupportedException">The property is set, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.
1334 -or-
1335 The property is set, <paramref name="keyword" /> does not exist in the collection, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
1336     </member>
1337     <member name="P:System.Data.Common.DbConnectionStringBuilder.Keys">
1338       <summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1339       <returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
1340     </member>
1341     <member name="M:System.Data.Common.DbConnectionStringBuilder.Remove(System.String)">
1342       <summary>Removes the entry with the specified key from the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
1343       <param name="keyword">The key of the key/value pair to be removed from the connection string in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
1344       <returns>
1345         <see langword="true" /> if the key existed within the connection string and was removed; <see langword="false" /> if the key did not exist.</returns>
1346       <exception cref="T:System.ArgumentNullException">
1347         <paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic)</exception>
1348       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only, or the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
1349     </member>
1350     <member name="M:System.Data.Common.DbConnectionStringBuilder.ShouldSerialize(System.String)">
1351       <summary>Indicates whether the specified key exists in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
1352       <param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
1353       <returns>
1354         <see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains an entry with the specified key; otherwise <see langword="false" />.</returns>
1355     </member>
1356     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1357       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
1358       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1359       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1360     </member>
1361     <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#IsSynchronized">
1362       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
1363       <returns>
1364         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
1365     </member>
1366     <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#SyncRoot">
1367       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
1368       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
1369     </member>
1370     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Add(System.Object,System.Object)">
1371       <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" /> object.</summary>
1372       <param name="keyword">The <see cref="T:System.Object" /> to use as the key of the element to add.</param>
1373       <param name="value">The <see cref="T:System.Object" /> to use as the value of the element to add.</param>
1374     </member>
1375     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Contains(System.Object)">
1376       <summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> object contains an element with the specified key.</summary>
1377       <param name="keyword">The key to locate in the <see cref="T:System.Collections.IDictionary" /> object.</param>
1378       <returns>
1379         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
1380     </member>
1381     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#GetEnumerator">
1382       <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object.</summary>
1383       <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object.</returns>
1384     </member>
1385     <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Item(System.Object)">
1386       <summary>Gets or sets the element with the specified key.</summary>
1387       <param name="keyword">The key of the element to get or set.</param>
1388       <returns>The element with the specified key.</returns>
1389     </member>
1390     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Remove(System.Object)">
1391       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" /> object.</summary>
1392       <param name="keyword">The key of the element to remove.</param>
1393     </member>
1394     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IEnumerable#GetEnumerator">
1395       <summary>Returns an enumerator that iterates through a collection.</summary>
1396       <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
1397     </member>
1398     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
1399       <summary>Returns a collection of custom attributes for this instance of a component.</summary>
1400       <returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> containing the attributes for this object.</returns>
1401     </member>
1402     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
1403       <summary>Returns the class name of this instance of a component.</summary>
1404       <returns>The class name of the object, or <see langword="null" /> if the class does not have a name.</returns>
1405     </member>
1406     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
1407       <summary>Returns the name of this instance of a component.</summary>
1408       <returns>The name of the object, or <see langword="null" /> if the object does not have a name.</returns>
1409     </member>
1410     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
1411       <summary>Returns a type converter for this instance of a component.</summary>
1412       <returns>A <see cref="T:System.ComponentModel.TypeConverter" /> that is the converter for this object, or <see langword="null" /> if there is no <see cref="T:System.ComponentModel.TypeConverter" /> for this object.</returns>
1413     </member>
1414     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
1415       <summary>Returns the default event for this instance of a component.</summary>
1416       <returns>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for this object, or <see langword="null" /> if this object does not have events.</returns>
1417     </member>
1418     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
1419       <summary>Returns the default property for this instance of a component.</summary>
1420       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for this object, or <see langword="null" /> if this object does not have properties.</returns>
1421     </member>
1422     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
1423       <summary>Returns an editor of the specified type for this instance of a component.</summary>
1424       <param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
1425       <returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
1426     </member>
1427     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
1428       <summary>Returns the events for this instance of a component.</summary>
1429       <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for this component instance.</returns>
1430     </member>
1431     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
1432       <summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
1433       <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
1434       <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the filtered events for this component instance.</returns>
1435     </member>
1436     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
1437       <summary>Returns the properties for this instance of a component.</summary>
1438       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties for this component instance.</returns>
1439     </member>
1440     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
1441       <summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
1442       <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
1443       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the filtered properties for this component instance.</returns>
1444     </member>
1445     <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
1446       <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
1447       <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
1448       <returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
1449     </member>
1450     <member name="M:System.Data.Common.DbConnectionStringBuilder.ToString">
1451       <summary>Returns the connection string associated with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1452       <returns>The current <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property.</returns>
1453     </member>
1454     <member name="M:System.Data.Common.DbConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
1455       <summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1456       <param name="keyword">The key of the item to retrieve.</param>
1457       <param name="value">The value corresponding to the <paramref name="keyword" />.</param>
1458       <returns>
1459         <see langword="true" /> if <paramref name="keyword" /> was found within the connection string, <see langword="false" /> otherwise.</returns>
1460       <exception cref="T:System.ArgumentNullException">
1461         <paramref name="keyword" /> contains a null value (<see langword="Nothing" /> in Visual Basic).</exception>
1462     </member>
1463     <member name="P:System.Data.Common.DbConnectionStringBuilder.Values">
1464       <summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
1465       <returns>An <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
1466     </member>
1467     <member name="T:System.Data.Common.DbDataAdapter">
1468       <summary>Aids implementation of the <see cref="T:System.Data.IDbDataAdapter" /> interface. Inheritors of <see cref="T:System.Data.Common.DbDataAdapter" /> implement a set of functions to provide strong typing, but inherit most of the functionality needed to fully implement a DataAdapter.</summary>
1469     </member>
1470     <member name="M:System.Data.Common.DbDataAdapter.#ctor">
1471       <summary>Initializes a new instance of a DataAdapter class.</summary>
1472     </member>
1473     <member name="M:System.Data.Common.DbDataAdapter.#ctor(System.Data.Common.DbDataAdapter)">
1474       <summary>Initializes a new instance of a <see langword="DataAdapter" /> class from an existing object of the same type.</summary>
1475       <param name="adapter">A <see langword="DataAdapter" /> object used to create the new <see langword="DataAdapter" />.</param>
1476     </member>
1477     <member name="M:System.Data.Common.DbDataAdapter.AddToBatch(System.Data.IDbCommand)">
1478       <summary>Adds a <see cref="T:System.Data.IDbCommand" /> to the current batch.</summary>
1479       <param name="command">The <see cref="T:System.Data.IDbCommand" /> to add to the batch.</param>
1480       <returns>The number of commands in the batch before adding the <see cref="T:System.Data.IDbCommand" />.</returns>
1481       <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
1482     </member>
1483     <member name="M:System.Data.Common.DbDataAdapter.ClearBatch">
1484       <summary>Removes all <see cref="T:System.Data.IDbCommand" /> objects from the batch.</summary>
1485       <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
1486     </member>
1487     <member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
1488       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</summary>
1489       <param name="dataRow">The <see cref="T:System.Data.DataRow" /> used to update the data source.</param>
1490       <param name="command">The <see cref="T:System.Data.IDbCommand" /> executed during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" />.</param>
1491       <param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
1492       <param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
1493       <returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</returns>
1494     </member>
1495     <member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
1496       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</summary>
1497       <param name="dataRow">The <see cref="T:System.Data.DataRow" /> that updates the data source.</param>
1498       <param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" />.</param>
1499       <param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
1500       <param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
1501       <returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</returns>
1502     </member>
1503     <member name="F:System.Data.Common.DbDataAdapter.DefaultSourceTableName">
1504       <summary>The default name used by the <see cref="T:System.Data.Common.DataAdapter" /> object for table mappings.</summary>
1505     </member>
1506     <member name="P:System.Data.Common.DbDataAdapter.DeleteCommand">
1507       <summary>Gets or sets a command for deleting records from the data set.</summary>
1508       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
1509     </member>
1510     <member name="M:System.Data.Common.DbDataAdapter.Dispose(System.Boolean)">
1511       <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbDataAdapter" /> and optionally releases the managed resources.</summary>
1512       <param name="disposing">
1513         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
1514     </member>
1515     <member name="M:System.Data.Common.DbDataAdapter.ExecuteBatch">
1516       <summary>Executes the current batch.</summary>
1517       <returns>The return value from the last command in the batch.</returns>
1518     </member>
1519     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)">
1520       <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" />.</summary>
1521       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
1522       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
1523     </member>
1524     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String)">
1525       <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
1526       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
1527       <param name="startRecord">The zero-based record number to start with.</param>
1528       <param name="maxRecords">The maximum number of records to retrieve.</param>
1529       <param name="srcTable">The name of the source table to use for table mapping.</param>
1530       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
1531       <exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1532       <exception cref="T:System.InvalidOperationException">The source table is invalid.
1533 -or-
1534 The connection is invalid.</exception>
1535       <exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
1536       <exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
1537 -or-
1538 The <paramref name="maxRecords" /> parameter is less than 0.</exception>
1539     </member>
1540     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String,System.Data.IDbCommand,System.Data.CommandBehavior)">
1541       <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and source table names, command string, and command behavior.</summary>
1542       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
1543       <param name="startRecord">The zero-based record number to start with.</param>
1544       <param name="maxRecords">The maximum number of records to retrieve.</param>
1545       <param name="srcTable">The name of the source table to use for table mapping.</param>
1546       <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
1547       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
1548       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
1549       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1550       <exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
1551 -or-
1552 The <paramref name="maxRecords" /> parameter is less than 0.</exception>
1553     </member>
1554     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.String)">
1555       <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
1556       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
1557       <param name="srcTable">The name of the source table to use for table mapping.</param>
1558       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
1559       <exception cref="T:System.SystemException">The source table is invalid.</exception>
1560     </member>
1561     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)">
1562       <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataTable" /> name.</summary>
1563       <param name="dataTable">The name of the <see cref="T:System.Data.DataTable" /> to use for table mapping.</param>
1564       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
1565       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1566     </member>
1567     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable,System.Data.IDbCommand,System.Data.CommandBehavior)">
1568       <summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable" /> to match those in the data source using the specified <see cref="T:System.Data.DataTable" />, <see cref="T:System.Data.IDbCommand" /> and <see cref="T:System.Data.CommandBehavior" />.</summary>
1569       <param name="dataTable">A <see cref="T:System.Data.DataTable" /> to fill with records and, if necessary, schema.</param>
1570       <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
1571       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
1572       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
1573     </member>
1574     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable[],System.Int32,System.Int32,System.Data.IDbCommand,System.Data.CommandBehavior)">
1575       <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
1576       <param name="dataTables">The <see cref="T:System.Data.DataTable" /> objects to fill from the data source.</param>
1577       <param name="startRecord">The zero-based record number to start with.</param>
1578       <param name="maxRecords">The maximum number of records to retrieve.</param>
1579       <param name="command">The <see cref="T:System.Data.IDbCommand" /> executed to fill the <see cref="T:System.Data.DataTable" /> objects.</param>
1580       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
1581       <returns>The number of rows added to or refreshed in the data tables.</returns>
1582       <exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1583       <exception cref="T:System.InvalidOperationException">The source table is invalid.
1584 -or-
1585 The connection is invalid.</exception>
1586       <exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
1587       <exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
1588 -or-
1589 The <paramref name="maxRecords" /> parameter is less than 0.</exception>
1590     </member>
1591     <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Int32,System.Int32,System.Data.DataTable[])">
1592       <summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable" /> to match those in the data source starting at the specified record and retrieving up to the specified maximum number of records.</summary>
1593       <param name="startRecord">The zero-based record number to start with.</param>
1594       <param name="maxRecords">The maximum number of records to retrieve.</param>
1595       <param name="dataTables">The <see cref="T:System.Data.DataTable" /> objects to fill from the data source.</param>
1596       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This value does not include rows affected by statements that do not return rows.</returns>
1597     </member>
1598     <member name="P:System.Data.Common.DbDataAdapter.FillCommandBehavior">
1599       <summary>Gets or sets the behavior of the command used to fill the data adapter.</summary>
1600       <returns>The <see cref="T:System.Data.CommandBehavior" /> of the command used to fill the data adapter.</returns>
1601     </member>
1602     <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
1603       <summary>Adds a <see cref="T:System.Data.DataTable" /> named "Table" to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
1604       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to insert the schema in.</param>
1605       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values that specify how to insert the schema.</param>
1606       <returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
1607     </member>
1608     <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)">
1609       <summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
1610       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
1611       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
1612       <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
1613       <param name="srcTable">The name of the source table to use for table mapping.</param>
1614       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
1615       <returns>An array of <see cref="T:System.Data.DataTable" /> objects that contain schema information returned from the data source.</returns>
1616     </member>
1617     <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String)">
1618       <summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based upon the specified <see cref="T:System.Data.SchemaType" /> and <see cref="T:System.Data.DataTable" />.</summary>
1619       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to insert the schema in.</param>
1620       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values that specify how to insert the schema.</param>
1621       <param name="srcTable">The name of the source table to use for table mapping.</param>
1622       <returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
1623       <exception cref="T:System.ArgumentException">A source table from which to get the schema could not be found.</exception>
1624     </member>
1625     <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType)">
1626       <summary>Configures the schema of the specified <see cref="T:System.Data.DataTable" /> based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
1627       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled with the schema from the data source.</param>
1628       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
1629       <returns>A <see cref="T:System.Data.DataTable" /> that contains schema information returned from the data source.</returns>
1630     </member>
1631     <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior)">
1632       <summary>Configures the schema of the specified <see cref="T:System.Data.DataTable" /> based on the specified <see cref="T:System.Data.SchemaType" />, command string, and <see cref="T:System.Data.CommandBehavior" /> values.</summary>
1633       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled with the schema from the data source.</param>
1634       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
1635       <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
1636       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
1637       <returns>A of <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
1638     </member>
1639     <member name="M:System.Data.Common.DbDataAdapter.GetBatchedParameter(System.Int32,System.Int32)">
1640       <summary>Returns a <see cref="T:System.Data.IDataParameter" /> from one of the commands in the current batch.</summary>
1641       <param name="commandIdentifier">The index of the command to retrieve the parameter from.</param>
1642       <param name="parameterIndex">The index of the parameter within the command.</param>
1643       <returns>The <see cref="T:System.Data.IDataParameter" /> specified.</returns>
1644       <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
1645     </member>
1646     <member name="M:System.Data.Common.DbDataAdapter.GetBatchedRecordsAffected(System.Int32,System.Int32@,System.Exception@)">
1647       <summary>Returns information about an individual update attempt within a larger batched update.</summary>
1648       <param name="commandIdentifier">The zero-based column ordinal of the individual command within the batch.</param>
1649       <param name="recordsAffected">The number of rows affected in the data store by the specified command within the batch.</param>
1650       <param name="error">An <see cref="T:System.Exception" /> thrown during execution of the specified command. Returns <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) if no exception is thrown.</param>
1651       <returns>Information about an individual update attempt within a larger batched update.</returns>
1652     </member>
1653     <member name="M:System.Data.Common.DbDataAdapter.GetFillParameters">
1654       <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
1655       <returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
1656     </member>
1657     <member name="M:System.Data.Common.DbDataAdapter.InitializeBatching">
1658       <summary>Initializes batching for the <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
1659       <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
1660     </member>
1661     <member name="P:System.Data.Common.DbDataAdapter.InsertCommand">
1662       <summary>Gets or sets a command used to insert new records into the data source.</summary>
1663       <returns>A <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
1664     </member>
1665     <member name="M:System.Data.Common.DbDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)">
1666       <summary>Raises the <see langword="RowUpdated" /> event of a .NET Framework data provider.</summary>
1667       <param name="value">A <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> that contains the event data.</param>
1668     </member>
1669     <member name="M:System.Data.Common.DbDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)">
1670       <summary>Raises the <see langword="RowUpdating" /> event of a .NET Framework data provider.</summary>
1671       <param name="value">An <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> that contains the event data.</param>
1672     </member>
1673     <member name="P:System.Data.Common.DbDataAdapter.SelectCommand">
1674       <summary>Gets or sets a command used to select records in the data source.</summary>
1675       <returns>A <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
1676     </member>
1677     <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
1678       <summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
1679       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
1680     </member>
1681     <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
1682       <summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
1683       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
1684     </member>
1685     <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
1686       <summary>Gets or sets an SQL statement used to select records in the data source.</summary>
1687       <returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
1688     </member>
1689     <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
1690       <summary>Gets or sets an SQL statement used to update records in the data source.</summary>
1691       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
1692     </member>
1693     <member name="M:System.Data.Common.DbDataAdapter.System#ICloneable#Clone">
1694       <summary>Creates a new object that is a copy of the current instance.</summary>
1695       <returns>A new object that is a copy of this instance.</returns>
1696     </member>
1697     <member name="M:System.Data.Common.DbDataAdapter.TerminateBatching">
1698       <summary>Ends batching for the <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
1699       <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
1700     </member>
1701     <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[])">
1702       <summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array in the <see cref="T:System.Data.DataSet" />.</summary>
1703       <param name="dataRows">An array of <see cref="T:System.Data.DataRow" /> objects used to update the data source.</param>
1704       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
1705       <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1706       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1707       <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
1708 -or-
1709 No <see cref="T:System.Data.DataTable" /> exists to update.
1710 -or-
1711 No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
1712       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
1713     </member>
1714     <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping)">
1715       <summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of <see cref="T:System.Data.DataSet" /> objects.</summary>
1716       <param name="dataRows">An array of <see cref="T:System.Data.DataRow" /> objects used to update the data source.</param>
1717       <param name="tableMapping">The <see cref="P:System.Data.IDataAdapter.TableMappings" /> collection to use.</param>
1718       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
1719       <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1720       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1721       <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
1722 -or-
1723 No <see cref="T:System.Data.DataTable" /> exists to update.
1724 -or-
1725 No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
1726       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
1727     </member>
1728     <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)">
1729       <summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" />.</summary>
1730       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
1731       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
1732       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1733       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
1734     </member>
1735     <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet,System.String)">
1736       <summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the <see cref="T:System.Data.DataSet" /> with the specified <see cref="T:System.Data.DataTable" /> name.</summary>
1737       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> to use to update the data source.</param>
1738       <param name="srcTable">The name of the source table to use for table mapping.</param>
1739       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
1740       <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1741       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1742       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
1743     </member>
1744     <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataTable)">
1745       <summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataTable" />.</summary>
1746       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> used to update the data source.</param>
1747       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataTable" />.</returns>
1748       <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
1749       <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
1750       <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
1751 -or-
1752 No <see cref="T:System.Data.DataTable" /> exists to update.
1753 -or-
1754 No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
1755       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
1756     </member>
1757     <member name="P:System.Data.Common.DbDataAdapter.UpdateBatchSize">
1758       <summary>Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.</summary>
1759       <returns>The number of rows to process per batch.
1760   Value is  
1761   
1762   Effect  
1763   
1764   0  
1765   
1766   There is no limit on the batch size.  
1767   
1768   1  
1769   
1770   Disables batch updating.  
1771   
1772   &gt; 1  
1773   
1774   Changes are sent using batches of <see cref="P:System.Data.Common.DbDataAdapter.UpdateBatchSize" /> operations at a time.  
1775   
1776    
1777 When setting this to a value other than 1, all the commands associated with the <see cref="T:System.Data.Common.DbDataAdapter" /> must have their <see cref="P:System.Data.IDbCommand.UpdatedRowSource" /> property set to None or OutputParameters. An exception will be thrown otherwise.</returns>
1778     </member>
1779     <member name="P:System.Data.Common.DbDataAdapter.UpdateCommand">
1780       <summary>Gets or sets a command used to update records in the data source.</summary>
1781       <returns>A <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
1782     </member>
1783     <member name="T:System.Data.Common.DbDataReader">
1784       <summary>Reads a forward-only stream of rows from a data source.</summary>
1785     </member>
1786     <member name="M:System.Data.Common.DbDataReader.#ctor">
1787       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataReader" /> class.</summary>
1788     </member>
1789     <member name="M:System.Data.Common.DbDataReader.Close">
1790       <summary>Closes the <see cref="T:System.Data.Common.DbDataReader" /> object.</summary>
1791     </member>
1792     <member name="M:System.Data.Common.DbDataReader.CloseAsync">
1793       <summary>Asynchronously closes the <see cref="T:System.Data.Common.DbDataReader" /> object.</summary>
1794       <returns>A task representing the asynchronous operation.</returns>
1795     </member>
1796     <member name="P:System.Data.Common.DbDataReader.Depth">
1797       <summary>Gets a value indicating the depth of nesting for the current row.</summary>
1798       <returns>The depth of nesting for the current row.</returns>
1799     </member>
1800     <member name="M:System.Data.Common.DbDataReader.Dispose">
1801       <summary>Releases all resources used by the current instance of the <see cref="T:System.Data.Common.DbDataReader" /> class.</summary>
1802     </member>
1803     <member name="M:System.Data.Common.DbDataReader.Dispose(System.Boolean)">
1804       <summary>Releases the managed resources used by the <see cref="T:System.Data.Common.DbDataReader" /> and optionally releases the unmanaged resources.</summary>
1805       <param name="disposing">
1806         <see langword="true" /> to release managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
1807     </member>
1808     <member name="M:System.Data.Common.DbDataReader.DisposeAsync">
1809       <summary>Asynchronously releases all resources used by the current instance of the <see cref="T:System.Data.Common.DbDataReader" /> class.</summary>
1810       <returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> representing the asynchronous operation.</returns>
1811     </member>
1812     <member name="P:System.Data.Common.DbDataReader.FieldCount">
1813       <summary>When overridden in a derived class, gets the number of columns in the current row.</summary>
1814       <returns>The number of columns in the current row.</returns>
1815       <exception cref="T:System.NotSupportedException">There is no current connection to an instance of SQL Server.</exception>
1816     </member>
1817     <member name="M:System.Data.Common.DbDataReader.GetBoolean(System.Int32)">
1818       <summary>When overridden in a derived class, gets the value of the specified column as a Boolean.</summary>
1819       <param name="ordinal">The zero-based column ordinal.</param>
1820       <returns>The value of the specified column.</returns>
1821       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1822       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1823     </member>
1824     <member name="M:System.Data.Common.DbDataReader.GetByte(System.Int32)">
1825       <summary>When overridden in a derived class, gets the value of the specified column as a byte.</summary>
1826       <param name="ordinal">The zero-based column ordinal.</param>
1827       <returns>The value of the specified column.</returns>
1828       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1829       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1830     </member>
1831     <member name="M:System.Data.Common.DbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
1832       <summary>When overridden in a derived class, reads a specified number of bytes from the specified column starting at a specified index and writes them to a buffer starting at a specified position in the buffer.</summary>
1833       <param name="ordinal">The zero-based column ordinal.</param>
1834       <param name="dataOffset">The index within the row from which to begin the read operation.</param>
1835       <param name="buffer">The buffer into which to copy the data.</param>
1836       <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
1837       <param name="length">The maximum number of characters to read.</param>
1838       <returns>The actual number of bytes read.</returns>
1839       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1840       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1841     </member>
1842     <member name="M:System.Data.Common.DbDataReader.GetChar(System.Int32)">
1843       <summary>When overridden in a derived class, gets the value of the specified column as a single character.</summary>
1844       <param name="ordinal">The zero-based column ordinal.</param>
1845       <returns>The value of the specified column.</returns>
1846       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1847       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1848     </member>
1849     <member name="M:System.Data.Common.DbDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
1850       <summary>When overridden in a derived class, reads a specified number of characters from a specified column starting at a specified index, and writes them to a buffer starting at a specified position.</summary>
1851       <param name="ordinal">The zero-based column ordinal.</param>
1852       <param name="dataOffset">The index within the row from which to begin the read operation.</param>
1853       <param name="buffer">The buffer into which to copy the data.</param>
1854       <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
1855       <param name="length">The maximum number of characters to read.</param>
1856       <returns>The actual number of characters read.</returns>
1857     </member>
1858     <member name="M:System.Data.Common.DbDataReader.GetData(System.Int32)">
1859       <summary>Returns a nested data reader for the requested column.</summary>
1860       <param name="ordinal">The zero-based column ordinal.</param>
1861       <returns>A data reader.</returns>
1862       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1863     </member>
1864     <member name="M:System.Data.Common.DbDataReader.GetDataTypeName(System.Int32)">
1865       <summary>When overridden in a derived class, gets name of the data type of the specified column.</summary>
1866       <param name="ordinal">The zero-based column ordinal.</param>
1867       <returns>The name of the data type.</returns>
1868       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1869     </member>
1870     <member name="M:System.Data.Common.DbDataReader.GetDateTime(System.Int32)">
1871       <summary>When overridden in a derived class, gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
1872       <param name="ordinal">The zero-based column ordinal.</param>
1873       <returns>The value of the specified column.</returns>
1874       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1875       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1876     </member>
1877     <member name="M:System.Data.Common.DbDataReader.GetDbDataReader(System.Int32)">
1878       <summary>Returns a <see cref="T:System.Data.Common.DbDataReader" /> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
1879       <param name="ordinal">The zero-based column ordinal.</param>
1880       <returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
1881     </member>
1882     <member name="M:System.Data.Common.DbDataReader.GetDecimal(System.Int32)">
1883       <summary>When overridden in a derived class, gets the value of the specified column as a <see cref="T:System.Decimal" />.</summary>
1884       <param name="ordinal">The zero-based column ordinal.</param>
1885       <returns>The value of the specified column.</returns>
1886       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1887       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1888     </member>
1889     <member name="M:System.Data.Common.DbDataReader.GetDouble(System.Int32)">
1890       <summary>When overridden in a derived class, gets the value of the specified column as a double-precision floating point number.</summary>
1891       <param name="ordinal">The zero-based column ordinal.</param>
1892       <returns>The value of the specified column.</returns>
1893       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1894     </member>
1895     <member name="M:System.Data.Common.DbDataReader.GetEnumerator">
1896       <summary>When overridden in a derived class, returns an enumerator that can be used to iterate through the rows in the data reader.</summary>
1897       <returns>An enumerator that can be used to iterate through the rows in the data reader.</returns>
1898     </member>
1899     <member name="M:System.Data.Common.DbDataReader.GetFieldType(System.Int32)">
1900       <summary>When overridden in a derived class, gets the data type of the specified column.</summary>
1901       <param name="ordinal">The zero-based column ordinal.</param>
1902       <returns>The data type of the specified column.</returns>
1903       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1904       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1905     </member>
1906     <member name="M:System.Data.Common.DbDataReader.GetFieldValue``1(System.Int32)">
1907       <summary>Gets the value of the specified column as the requested type.</summary>
1908       <param name="ordinal">The zero-based column ordinal.</param>
1909       <typeparam name="T">The type of the value to be returned.</typeparam>
1910       <returns>The value of the specified column.</returns>
1911       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during data retrieval.
1912 -or-
1913 The data reader was closed during data retrieval.
1914 -or-
1915 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or it returned <see langword="false" />).
1916 -or-
1917 The reader tried to read a previously-read column in sequential mode.
1918 -or-
1919 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
1920       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1921       <exception cref="T:System.InvalidCastException">The value returned by the database doesn't match or cannot be cast to <typeparamref name="T" />.</exception>
1922     </member>
1923     <member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32)">
1924       <summary>Asynchronously gets the value of the specified column as the requested type.</summary>
1925       <param name="ordinal">The zero-based column ordinal.</param>
1926       <typeparam name="T">The type of the value to be returned.</typeparam>
1927       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> contains the value of the specified column.</returns>
1928       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during data retrieval.
1929 -or-
1930 The data reader was closed during the data retrieval.
1931 -or-
1932 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or it returned <see langword="false" />).
1933 -or-
1934 Tried to read a previously-read column in sequential mode.
1935 -or-
1936 There was an asynchronous operation in progress. This applies to all Get_*_ methods when running in sequential mode, as they could be called while reading a stream.</exception>
1937       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1938       <exception cref="T:System.InvalidCastException">The value returned by the database doesn't match or cannot be cast to <typeparamref name="T" />.</exception>
1939     </member>
1940     <member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32,System.Threading.CancellationToken)">
1941       <summary>Asynchronously gets the value of the specified column as the requested type.</summary>
1942       <param name="ordinal">The zero-based column ordinal.</param>
1943       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
1944       <typeparam name="T">The type of the value to be returned.</typeparam>
1945       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> contains the value of the specified column.</returns>
1946       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during data retrieval.
1947 -or-
1948 The data reader was closed during the data retrieval.
1949 -or-
1950 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or it returned <see langword="false" />).
1951 -or-
1952 Tried to read a previously-read column in sequential mode.
1953 -or-
1954 There was an asynchronous operation in progress. This applies to all Get_*_ methods when running in sequential mode, as they could be called while reading a stream.</exception>
1955       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1956       <exception cref="T:System.InvalidCastException">The value returned by the database doesn't match or cannot be cast to <typeparamref name="T" />.</exception>
1957     </member>
1958     <member name="M:System.Data.Common.DbDataReader.GetFloat(System.Int32)">
1959       <summary>When overridden in a derived class, gets the value of the specified column as a single-precision floating point number.</summary>
1960       <param name="ordinal">The zero-based column ordinal.</param>
1961       <returns>The value of the specified column.</returns>
1962       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1963       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1964     </member>
1965     <member name="M:System.Data.Common.DbDataReader.GetGuid(System.Int32)">
1966       <summary>When overridden in a derived class, gets the value of the specified column as a globally unique identifier (GUID).</summary>
1967       <param name="ordinal">The zero-based column ordinal.</param>
1968       <returns>The value of the specified column.</returns>
1969       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1970       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1971     </member>
1972     <member name="M:System.Data.Common.DbDataReader.GetInt16(System.Int32)">
1973       <summary>When overridden in a derived class, gets the value of the specified column as a 16-bit signed integer.</summary>
1974       <param name="ordinal">The zero-based column ordinal.</param>
1975       <returns>The value of the specified column.</returns>
1976       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1977       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1978     </member>
1979     <member name="M:System.Data.Common.DbDataReader.GetInt32(System.Int32)">
1980       <summary>When overridden in a derived class, gets the value of the specified column as a 32-bit signed integer.</summary>
1981       <param name="ordinal">The zero-based column ordinal.</param>
1982       <returns>The value of the specified column.</returns>
1983       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1984       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1985     </member>
1986     <member name="M:System.Data.Common.DbDataReader.GetInt64(System.Int32)">
1987       <summary>When overridden in a derived class, gets the value of the specified column as a 64-bit signed integer.</summary>
1988       <param name="ordinal">The zero-based column ordinal.</param>
1989       <returns>The value of the specified column.</returns>
1990       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
1991       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
1992     </member>
1993     <member name="M:System.Data.Common.DbDataReader.GetName(System.Int32)">
1994       <summary>When overridden in a derived class, gets the name of the column, given the zero-based column ordinal.</summary>
1995       <param name="ordinal">The zero-based column ordinal.</param>
1996       <returns>The name of the specified column.</returns>
1997     </member>
1998     <member name="M:System.Data.Common.DbDataReader.GetOrdinal(System.String)">
1999       <summary>When overridden in a derived class, gets the column ordinal given the name of the column.</summary>
2000       <param name="name">The name of the column.</param>
2001       <returns>The zero-based column ordinal.</returns>
2002       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
2003     </member>
2004     <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificFieldType(System.Int32)">
2005       <summary>Gets the provider-specific type of the specified column.</summary>
2006       <param name="ordinal">The zero-based column ordinal.</param>
2007       <returns>A provider-specific .NET type.</returns>
2008       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2009     </member>
2010     <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValue(System.Int32)">
2011       <summary>Gets the value of the specified column as an instance of a provider-specific type.</summary>
2012       <param name="ordinal">The zero-based column ordinal.</param>
2013       <returns>The value of the specified column.</returns>
2014     </member>
2015     <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValues(System.Object[])">
2016       <summary>Gets all provider-specific attribute columns in the collection for the current row.</summary>
2017       <param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute columns.</param>
2018       <returns>The number of instances of elements in the array.</returns>
2019     </member>
2020     <member name="M:System.Data.Common.DbDataReader.GetSchemaTable">
2021       <summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.Common.DbDataReader" />.</summary>
2022       <returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
2023       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.Common.DbDataReader" /> is closed.</exception>
2024       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2025       <exception cref="T:System.NotSupportedException">.NET Core only: This member is not supported.</exception>
2026     </member>
2027     <member name="M:System.Data.Common.DbDataReader.GetStream(System.Int32)">
2028       <summary>Gets a stream to retrieve data from the specified column.</summary>
2029       <param name="ordinal">The zero-based column ordinal.</param>
2030       <returns>A stream.</returns>
2031       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
2032 -or-
2033 The data reader is closed during the data retrieval.
2034 -or-
2035 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
2036 -or-
2037 The data reader tried to read a previously-read column in sequential mode.
2038 -or-
2039 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
2040       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2041       <exception cref="T:System.InvalidCastException">The specified column isn't a binary type that supports reading with a <see cref="T:System.IO.Stream" />.</exception>
2042     </member>
2043     <member name="M:System.Data.Common.DbDataReader.GetString(System.Int32)">
2044       <summary>When overridden in a derived class, gets the value of the specified column as an instance of <see cref="T:System.String" />.</summary>
2045       <param name="ordinal">The zero-based column ordinal.</param>
2046       <returns>The value of the specified column.</returns>
2047       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2048       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
2049     </member>
2050     <member name="M:System.Data.Common.DbDataReader.GetTextReader(System.Int32)">
2051       <summary>Gets a text reader to retrieve data from the column.</summary>
2052       <param name="ordinal">The zero-based column ordinal.</param>
2053       <returns>A text reader.</returns>
2054       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
2055 -or-
2056 The data reader is closed during the data retrieval.
2057 -or-
2058 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
2059 -or-
2060 The data reader tried to read a previously-read column in sequential mode.
2061 -or-
2062 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
2063       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2064       <exception cref="T:System.InvalidCastException">The specified column isn't a text type that supports reading with a <see cref="T:System.IO.TextReader" />.</exception>
2065     </member>
2066     <member name="M:System.Data.Common.DbDataReader.GetValue(System.Int32)">
2067       <summary>When overridden in a derived class, gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
2068       <param name="ordinal">The zero-based column ordinal.</param>
2069       <returns>The value of the specified column.</returns>
2070       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2071     </member>
2072     <member name="M:System.Data.Common.DbDataReader.GetValues(System.Object[])">
2073       <summary>When overridden in a derived class, populates an array of objects with the column values of the current row.</summary>
2074       <param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute columns.</param>
2075       <returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
2076     </member>
2077     <member name="P:System.Data.Common.DbDataReader.HasRows">
2078       <summary>When overridden in a derived class, gets a value that indicates whether this <see cref="T:System.Data.Common.DbDataReader" /> contains one or more rows.</summary>
2079       <returns>
2080         <see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> contains one or more rows; otherwise, <see langword="false" />.</returns>
2081     </member>
2082     <member name="P:System.Data.Common.DbDataReader.IsClosed">
2083       <summary>When overridden in a derived class, gets a value indicating whether the <see cref="T:System.Data.Common.DbDataReader" /> is closed.</summary>
2084       <returns>
2085         <see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> is closed; otherwise, <see langword="false" />.</returns>
2086       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.Common.DbDataReader" /> is closed.</exception>
2087     </member>
2088     <member name="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)">
2089       <summary>When overridden in a derived class, gets a value that indicates whether the column contains nonexistent or missing values.</summary>
2090       <param name="ordinal">The zero-based column ordinal.</param>
2091       <returns>
2092         <see langword="true" /> if the specified column is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
2093       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2094     </member>
2095     <member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32)">
2096       <summary>Asynchronously gets a value that indicates whether the column contains non-existent or missing values.</summary>
2097       <param name="ordinal">The zero-based column to be retrieved.</param>
2098       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> or <see langword="false" /> if it is not.</returns>
2099       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
2100 -or-
2101 The data reader is closed during the data retrieval.
2102 -or-
2103 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
2104 -or-
2105 Trying to read a previously read column in sequential mode.
2106 -or-
2107 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
2108       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2109     </member>
2110     <member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32,System.Threading.CancellationToken)">
2111       <summary>Asynchronously gets a value that indicates whether the column contains non-existent or missing values.</summary>
2112       <param name="ordinal">The zero-based column to be retrieved.</param>
2113       <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
2114       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> or <see langword="false" /> if it is not.</returns>
2115       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
2116 -or-
2117 The data reader is closed during the data retrieval.
2118 -or-
2119 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
2120 -or-
2121 Trying to read a previously read column in sequential mode.
2122 -or-
2123 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
2124       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2125     </member>
2126     <member name="P:System.Data.Common.DbDataReader.Item(System.Int32)">
2127       <summary>When overridden in a derived class, gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
2128       <param name="ordinal">The zero-based column ordinal.</param>
2129       <returns>The value of the specified column.</returns>
2130       <exception cref="T:System.IndexOutOfRangeException">The column index is out of range.</exception>
2131     </member>
2132     <member name="P:System.Data.Common.DbDataReader.Item(System.String)">
2133       <summary>When overridden in a derived class, gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
2134       <param name="name">The name of the column.</param>
2135       <returns>The value of the specified column.</returns>
2136       <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
2137     </member>
2138     <member name="M:System.Data.Common.DbDataReader.NextResult">
2139       <summary>When overridden in a derived class, advances the reader to the next result when reading the results of a batch of statements.</summary>
2140       <returns>
2141         <see langword="true" /> if there are more result sets; otherwise, <see langword="false" />.</returns>
2142     </member>
2143     <member name="M:System.Data.Common.DbDataReader.NextResultAsync">
2144       <summary>Asynchronously advances the reader to the next result when reading the results of a batch of statements.</summary>
2145       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if there are more result sets or <see langword="false" /> if there aren't.</returns>
2146       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
2147     </member>
2148     <member name="M:System.Data.Common.DbDataReader.NextResultAsync(System.Threading.CancellationToken)">
2149       <summary>Asynchronously advances the reader to the next result when reading the results of a batch of statements.</summary>
2150       <param name="cancellationToken">The cancellation instruction.</param>
2151       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if there are more result sets or <see langword="false" /> if there aren't.</returns>
2152       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
2153     </member>
2154     <member name="M:System.Data.Common.DbDataReader.Read">
2155       <summary>When overridden in a derived class, advances the reader to the next record in a result set.</summary>
2156       <returns>
2157         <see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
2158     </member>
2159     <member name="M:System.Data.Common.DbDataReader.ReadAsync">
2160       <summary>Asynchronously advances the reader to the next record in a result set.</summary>
2161       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if there are more rows or <see langword="false" /> if there aren't.</returns>
2162       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
2163     </member>
2164     <member name="M:System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken)">
2165       <summary>Asynchronously advances the reader to the next record in a result set.</summary>
2166       <param name="cancellationToken">The cancellation instruction.</param>
2167       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if there are more rows or <see langword="false" /> if there aren't.</returns>
2168       <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
2169     </member>
2170     <member name="P:System.Data.Common.DbDataReader.RecordsAffected">
2171       <summary>When overridden in a derived class, gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
2172       <returns>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected or the statement failed.</returns>
2173     </member>
2174     <member name="M:System.Data.Common.DbDataReader.System#Data#IDataRecord#GetData(System.Int32)">
2175       <summary>For a description of this member, see <see cref="M:System.Data.IDataRecord.GetData(System.Int32)" />.</summary>
2176       <param name="ordinal">The zero-based column ordinal.</param>
2177       <returns>An instance of <see cref="T:System.Data.IDataReader" /> to be used when the field points to more remote structured data.</returns>
2178     </member>
2179     <member name="P:System.Data.Common.DbDataReader.VisibleFieldCount">
2180       <summary>Gets the number of fields in the <see cref="T:System.Data.Common.DbDataReader" /> that are not hidden.</summary>
2181       <returns>The number of fields that are not hidden.</returns>
2182     </member>
2183     <member name="T:System.Data.Common.DbDataReaderExtensions">
2184       <summary>This class contains column schema extension methods for <see cref="T:System.Data.Common.DbDataReader" />.</summary>
2185     </member>
2186     <member name="M:System.Data.Common.DbDataReaderExtensions.CanGetColumnSchema(System.Data.Common.DbDataReader)">
2187       <summary>Gets a value that indicates whether a <see cref="T:System.Data.Common.DbDataReader" /> can get a column schema.</summary>
2188       <param name="reader">The <see cref="T:System.Data.Common.DbDataReader" /> to be checked for column schema support.</param>
2189       <returns>
2190         <see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> can get a column schema; otherwise, <see langword="false" />.</returns>
2191     </member>
2192     <member name="M:System.Data.Common.DbDataReaderExtensions.GetColumnSchema(System.Data.Common.DbDataReader)">
2193       <summary>Gets the column schema (<see cref="T:System.Data.Common.DbColumn" /> collection) for a <see cref="T:System.Data.Common.DbDataReader" />.</summary>
2194       <param name="reader">The <see cref="T:System.Data.Common.DbDataReader" /> to return the column schema.</param>
2195       <returns>The column schema (<see cref="T:System.Data.Common.DbColumn" /> collection) for a <see cref="T:System.Data.Common.DbDataReader" />.</returns>
2196     </member>
2197     <member name="T:System.Data.Common.DbDataRecord">
2198       <summary>Implements <see cref="T:System.Data.IDataRecord" /> and <see cref="T:System.ComponentModel.ICustomTypeDescriptor" />, and provides data binding support for <see cref="T:System.Data.Common.DbEnumerator" />.</summary>
2199     </member>
2200     <member name="M:System.Data.Common.DbDataRecord.#ctor">
2201       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataRecord" /> class.</summary>
2202     </member>
2203     <member name="P:System.Data.Common.DbDataRecord.FieldCount">
2204       <summary>Indicates the number of fields within the current record. This property is read-only.</summary>
2205       <returns>The number of fields within the current record.</returns>
2206       <exception cref="T:System.NotSupportedException">Not connected to a data source to read from.</exception>
2207     </member>
2208     <member name="M:System.Data.Common.DbDataRecord.GetBoolean(System.Int32)">
2209       <summary>Returns the value of the specified column as a Boolean.</summary>
2210       <param name="i">The column ordinal.</param>
2211       <returns>
2212         <see langword="true" /> if the Boolean is <see langword="true" />; otherwise <see langword="false" />.</returns>
2213     </member>
2214     <member name="M:System.Data.Common.DbDataRecord.GetByte(System.Int32)">
2215       <summary>Returns the value of the specified column as a byte.</summary>
2216       <param name="i">The column ordinal.</param>
2217       <returns>The value of the specified column.</returns>
2218     </member>
2219     <member name="M:System.Data.Common.DbDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
2220       <summary>Returns the value of the specified column as a byte array.</summary>
2221       <param name="i">The zero-based column ordinal.</param>
2222       <param name="dataIndex">The index within the field from which to start the read operation.</param>
2223       <param name="buffer">The buffer into which to read the stream of bytes.</param>
2224       <param name="bufferIndex">The index for <paramref name="buffer" /> to start the read operation.</param>
2225       <param name="length">The number of bytes to read.</param>
2226       <returns>The value of the specified column.</returns>
2227     </member>
2228     <member name="M:System.Data.Common.DbDataRecord.GetChar(System.Int32)">
2229       <summary>Returns the value of the specified column as a character.</summary>
2230       <param name="i">The column ordinal.</param>
2231       <returns>The value of the specified column.</returns>
2232     </member>
2233     <member name="M:System.Data.Common.DbDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
2234       <summary>Returns the value of the specified column as a character array.</summary>
2235       <param name="i">Column ordinal.</param>
2236       <param name="dataIndex">Buffer to copy data into.</param>
2237       <param name="buffer">Maximum length to copy into the buffer.</param>
2238       <param name="bufferIndex">Point to start from within the buffer.</param>
2239       <param name="length">Point to start from within the source data.</param>
2240       <returns>The value of the specified column.</returns>
2241     </member>
2242     <member name="M:System.Data.Common.DbDataRecord.GetData(System.Int32)">
2243       <summary>Not currently supported.</summary>
2244       <param name="i">Not currently supported.</param>
2245       <returns>Not currently supported.</returns>
2246     </member>
2247     <member name="M:System.Data.Common.DbDataRecord.GetDataTypeName(System.Int32)">
2248       <summary>Returns the name of the back-end data type.</summary>
2249       <param name="i">The column ordinal.</param>
2250       <returns>The name of the back-end data type.</returns>
2251     </member>
2252     <member name="M:System.Data.Common.DbDataRecord.GetDateTime(System.Int32)">
2253       <summary>Returns the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
2254       <param name="i">The column ordinal.</param>
2255       <returns>The value of the specified column.</returns>
2256     </member>
2257     <member name="M:System.Data.Common.DbDataRecord.GetDbDataReader(System.Int32)">
2258       <summary>Returns a <see cref="T:System.Data.Common.DbDataReader" /> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
2259       <param name="i">The zero-based column ordinal.</param>
2260       <returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
2261     </member>
2262     <member name="M:System.Data.Common.DbDataRecord.GetDecimal(System.Int32)">
2263       <summary>Returns the value of the specified column as a <see cref="T:System.Decimal" /> object.</summary>
2264       <param name="i">The column ordinal.</param>
2265       <returns>The value of the specified column.</returns>
2266     </member>
2267     <member name="M:System.Data.Common.DbDataRecord.GetDouble(System.Int32)">
2268       <summary>Returns the value of the specified column as a double-precision floating-point number.</summary>
2269       <param name="i">The column ordinal.</param>
2270       <returns>The value of the specified column.</returns>
2271     </member>
2272     <member name="M:System.Data.Common.DbDataRecord.GetFieldType(System.Int32)">
2273       <summary>Returns the <see cref="T:System.Type" /> that is the data type of the object.</summary>
2274       <param name="i">The column ordinal.</param>
2275       <returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
2276     </member>
2277     <member name="M:System.Data.Common.DbDataRecord.GetFloat(System.Int32)">
2278       <summary>Returns the value of the specified column as a single-precision floating-point number.</summary>
2279       <param name="i">The column ordinal.</param>
2280       <returns>The value of the specified column.</returns>
2281     </member>
2282     <member name="M:System.Data.Common.DbDataRecord.GetGuid(System.Int32)">
2283       <summary>Returns the GUID value of the specified field.</summary>
2284       <param name="i">The index of the field to return.</param>
2285       <returns>The GUID value of the specified field.</returns>
2286       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
2287     </member>
2288     <member name="M:System.Data.Common.DbDataRecord.GetInt16(System.Int32)">
2289       <summary>Returns the value of the specified column as a 16-bit signed integer.</summary>
2290       <param name="i">The column ordinal.</param>
2291       <returns>The value of the specified column.</returns>
2292     </member>
2293     <member name="M:System.Data.Common.DbDataRecord.GetInt32(System.Int32)">
2294       <summary>Returns the value of the specified column as a 32-bit signed integer.</summary>
2295       <param name="i">The column ordinal.</param>
2296       <returns>The value of the specified column.</returns>
2297     </member>
2298     <member name="M:System.Data.Common.DbDataRecord.GetInt64(System.Int32)">
2299       <summary>Returns the value of the specified column as a 64-bit signed integer.</summary>
2300       <param name="i">The column ordinal.</param>
2301       <returns>The value of the specified column.</returns>
2302     </member>
2303     <member name="M:System.Data.Common.DbDataRecord.GetName(System.Int32)">
2304       <summary>Returns the name of the specified column.</summary>
2305       <param name="i">The column ordinal.</param>
2306       <returns>The name of the specified column.</returns>
2307     </member>
2308     <member name="M:System.Data.Common.DbDataRecord.GetOrdinal(System.String)">
2309       <summary>Returns the column ordinal, given the name of the column.</summary>
2310       <param name="name">The name of the column.</param>
2311       <returns>The column ordinal.</returns>
2312     </member>
2313     <member name="M:System.Data.Common.DbDataRecord.GetString(System.Int32)">
2314       <summary>Returns the value of the specified column as a string.</summary>
2315       <param name="i">The column ordinal.</param>
2316       <returns>The value of the specified column.</returns>
2317     </member>
2318     <member name="M:System.Data.Common.DbDataRecord.GetValue(System.Int32)">
2319       <summary>Returns the value at the specified column in its native format.</summary>
2320       <param name="i">The column ordinal.</param>
2321       <returns>The value to return.</returns>
2322     </member>
2323     <member name="M:System.Data.Common.DbDataRecord.GetValues(System.Object[])">
2324       <summary>Populates an array of objects with the column values of the current record.</summary>
2325       <param name="values">An array of <see cref="T:System.Object" /> to copy the attribute fields into.</param>
2326       <returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
2327     </member>
2328     <member name="M:System.Data.Common.DbDataRecord.IsDBNull(System.Int32)">
2329       <summary>Used to indicate nonexistent values.</summary>
2330       <param name="i">The column ordinal.</param>
2331       <returns>
2332         <see langword="true" /> if the specified column is equivalent to <see cref="T:System.DBNull" />; otherwise <see langword="false" />.</returns>
2333     </member>
2334     <member name="P:System.Data.Common.DbDataRecord.Item(System.Int32)">
2335       <summary>Indicates the value at the specified column in its native format given the column ordinal. This property is read-only.</summary>
2336       <param name="i">The column ordinal.</param>
2337       <returns>The value at the specified column in its native format.</returns>
2338     </member>
2339     <member name="P:System.Data.Common.DbDataRecord.Item(System.String)">
2340       <summary>Indicates the value at the specified column in its native format given the column name. This property is read-only.</summary>
2341       <param name="name">The column name.</param>
2342       <returns>The value at the specified column in its native format.</returns>
2343     </member>
2344     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
2345       <summary>Returns a collection of custom attributes for this instance of a component.</summary>
2346       <returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> that contains the attributes for this object.</returns>
2347     </member>
2348     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
2349       <summary>Returns the class name of this instance of a component.</summary>
2350       <returns>The class name of the object, or <see langword="null" /> if the class does not have a name.</returns>
2351     </member>
2352     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
2353       <summary>Returns the name of this instance of a component.</summary>
2354       <returns>The name of the object, or <see langword="null" /> if the object does not have a name.</returns>
2355     </member>
2356     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
2357       <summary>Returns a type converter for this instance of a component.</summary>
2358       <returns>A <see cref="T:System.ComponentModel.TypeConverter" /> that is the converter for this object, or <see langword="null" /> if there is no <see cref="T:System.ComponentModel.TypeConverter" /> for this object.</returns>
2359     </member>
2360     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
2361       <summary>Returns the default event for this instance of a component.</summary>
2362       <returns>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for this object, or <see langword="null" /> if this object does not have events.</returns>
2363     </member>
2364     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
2365       <summary>Returns the default property for this instance of a component.</summary>
2366       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for this object, or <see langword="null" /> if this object does not have properties.</returns>
2367     </member>
2368     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
2369       <summary>Returns an editor of the specified type for this instance of a component.</summary>
2370       <param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
2371       <returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
2372     </member>
2373     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
2374       <summary>Returns the events for this instance of a component.</summary>
2375       <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for this component instance.</returns>
2376     </member>
2377     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
2378       <summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
2379       <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
2380       <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the filtered events for this component instance.</returns>
2381     </member>
2382     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
2383       <summary>Returns the properties for this instance of a component.</summary>
2384       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties for this component instance.</returns>
2385     </member>
2386     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
2387       <summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
2388       <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
2389       <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the filtered properties for this component instance.</returns>
2390     </member>
2391     <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
2392       <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
2393       <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
2394       <returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
2395     </member>
2396     <member name="T:System.Data.Common.DbDataSourceEnumerator">
2397       <summary>Provides a mechanism for enumerating all available instances of database servers within the local network.</summary>
2398     </member>
2399     <member name="M:System.Data.Common.DbDataSourceEnumerator.#ctor">
2400       <summary>Creates a new instance of the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
2401     </member>
2402     <member name="M:System.Data.Common.DbDataSourceEnumerator.GetDataSources">
2403       <summary>Retrieves a <see cref="T:System.Data.DataTable" /> containing information about all visible instances of the server represented by the strongly typed instance of this class.</summary>
2404       <returns>A <see cref="T:System.Data.DataTable" /> containing information about the visible instances of the associated data source.</returns>
2405     </member>
2406     <member name="T:System.Data.Common.DbEnumerator">
2407       <summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
2408     </member>
2409     <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader)">
2410       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class with the give n data reader.</summary>
2411       <param name="reader">The DataReader through which to iterate.</param>
2412     </member>
2413     <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader,System.Boolean)">
2414       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified reader and indicates whether to automatically close the reader after iterating through its data.</summary>
2415       <param name="reader">The DataReader through which to iterate.</param>
2416       <param name="closeReader">
2417         <see langword="true" /> to automatically close the DataReader after iterating through its data; otherwise, <see langword="false" />.</param>
2418     </member>
2419     <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader)">
2420       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified <see langword="DataReader" />.</summary>
2421       <param name="reader">The <see langword="DataReader" /> through which to iterate.</param>
2422     </member>
2423     <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader,System.Boolean)">
2424       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified <see langword="DataReader" />, and indicates whether to automatically close the <see langword="DataReader" /> after iterating through its data.</summary>
2425       <param name="reader">The <see langword="DataReader" /> through which to iterate.</param>
2426       <param name="closeReader">
2427         <see langword="true" /> to automatically close the <see langword="DataReader" /> after iterating through its data; otherwise, <see langword="false" />.</param>
2428     </member>
2429     <member name="P:System.Data.Common.DbEnumerator.Current">
2430       <summary>Gets the current element in the collection.</summary>
2431       <returns>The current element in the collection.</returns>
2432       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2433     </member>
2434     <member name="M:System.Data.Common.DbEnumerator.MoveNext">
2435       <summary>Advances the enumerator to the next element of the collection.</summary>
2436       <returns>
2437         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2438       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2439     </member>
2440     <member name="M:System.Data.Common.DbEnumerator.Reset">
2441       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
2442       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2443     </member>
2444     <member name="T:System.Data.Common.DbException">
2445       <summary>The base class for all exceptions thrown on behalf of the data source.</summary>
2446     </member>
2447     <member name="M:System.Data.Common.DbException.#ctor">
2448       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class.</summary>
2449     </member>
2450     <member name="M:System.Data.Common.DbException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2451       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified serialization information and context.</summary>
2452       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
2453       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
2454     </member>
2455     <member name="M:System.Data.Common.DbException.#ctor(System.String)">
2456       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message.</summary>
2457       <param name="message">The message to display for this exception.</param>
2458     </member>
2459     <member name="M:System.Data.Common.DbException.#ctor(System.String,System.Exception)">
2460       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message and a reference to the inner exception that is the cause of this exception.</summary>
2461       <param name="message">The error message string.</param>
2462       <param name="innerException">The inner exception reference.</param>
2463     </member>
2464     <member name="M:System.Data.Common.DbException.#ctor(System.String,System.Int32)">
2465       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message and error code.</summary>
2466       <param name="message">The error message that explains the reason for the exception.</param>
2467       <param name="errorCode">The error code for the exception.</param>
2468     </member>
2469     <member name="T:System.Data.Common.DbMetaDataCollectionNames">
2470       <summary>Provides a list of constants for the well-known MetaDataCollections: DataSourceInformation, DataTypes, MetaDataCollections, ReservedWords, and Restrictions.</summary>
2471     </member>
2472     <member name="F:System.Data.Common.DbMetaDataCollectionNames.DataSourceInformation">
2473       <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the DataSourceInformation collection.</summary>
2474     </member>
2475     <member name="F:System.Data.Common.DbMetaDataCollectionNames.DataTypes">
2476       <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the DataTypes collection.</summary>
2477     </member>
2478     <member name="F:System.Data.Common.DbMetaDataCollectionNames.MetaDataCollections">
2479       <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the MetaDataCollections collection.</summary>
2480     </member>
2481     <member name="F:System.Data.Common.DbMetaDataCollectionNames.ReservedWords">
2482       <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the ReservedWords collection.</summary>
2483     </member>
2484     <member name="F:System.Data.Common.DbMetaDataCollectionNames.Restrictions">
2485       <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the Restrictions collection.</summary>
2486     </member>
2487     <member name="T:System.Data.Common.DbMetaDataColumnNames">
2488       <summary>Provides static values that are used for the column names in the MetaDataCollection objects contained in the <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> is created by the GetSchema method.</summary>
2489     </member>
2490     <member name="F:System.Data.Common.DbMetaDataColumnNames.CollectionName">
2491       <summary>Used by the GetSchema method to create the CollectionName column in the DataTypes collection.</summary>
2492     </member>
2493     <member name="F:System.Data.Common.DbMetaDataColumnNames.ColumnSize">
2494       <summary>Used by the GetSchema method to create the ColumnSize column in the DataTypes collection.</summary>
2495     </member>
2496     <member name="F:System.Data.Common.DbMetaDataColumnNames.CompositeIdentifierSeparatorPattern">
2497       <summary>Used by the GetSchema method to create the CompositeIdentifierSeparatorPattern column in the DataSourceInformation collection.</summary>
2498     </member>
2499     <member name="F:System.Data.Common.DbMetaDataColumnNames.CreateFormat">
2500       <summary>Used by the GetSchema method to create the CreateFormat column in the DataTypes collection.</summary>
2501     </member>
2502     <member name="F:System.Data.Common.DbMetaDataColumnNames.CreateParameters">
2503       <summary>Used by the GetSchema method to create the CreateParameters column in the DataTypes collection.</summary>
2504     </member>
2505     <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductName">
2506       <summary>Used by the GetSchema method to create the DataSourceProductName column in the DataSourceInformation collection.</summary>
2507     </member>
2508     <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersion">
2509       <summary>Used by the GetSchema method to create the DataSourceProductVersion column in the DataSourceInformation collection.</summary>
2510     </member>
2511     <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersionNormalized">
2512       <summary>Used by the GetSchema method to create the DataSourceProductVersionNormalized column in the DataSourceInformation collection.</summary>
2513     </member>
2514     <member name="F:System.Data.Common.DbMetaDataColumnNames.DataType">
2515       <summary>Used by the GetSchema method to create the DataType column in the DataTypes collection.</summary>
2516     </member>
2517     <member name="F:System.Data.Common.DbMetaDataColumnNames.GroupByBehavior">
2518       <summary>Used by the GetSchema method to create the GroupByBehavior column in the DataSourceInformation collection.</summary>
2519     </member>
2520     <member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierCase">
2521       <summary>Used by the GetSchema method to create the IdentifierCase column in the DataSourceInformation collection.</summary>
2522     </member>
2523     <member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierPattern">
2524       <summary>Used by the GetSchema method to create the IdentifierPattern column in the DataSourceInformation collection.</summary>
2525     </member>
2526     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsAutoIncrementable">
2527       <summary>Used by the GetSchema method to create the IsAutoIncrementable column in the DataTypes collection.</summary>
2528     </member>
2529     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsBestMatch">
2530       <summary>Used by the GetSchema method to create the IsBestMatch column in the DataTypes collection.</summary>
2531     </member>
2532     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsCaseSensitive">
2533       <summary>Used by the GetSchema method to create the IsCaseSensitive column in the DataTypes collection.</summary>
2534     </member>
2535     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsConcurrencyType">
2536       <summary>Used by the GetSchema method to create the IsConcurrencyType column in the DataTypes collection.</summary>
2537     </member>
2538     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedLength">
2539       <summary>Used by the GetSchema method to create the IsFixedLength column in the DataTypes collection.</summary>
2540     </member>
2541     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedPrecisionScale">
2542       <summary>Used by the GetSchema method to create the IsFixedPrecisionScale column in the DataTypes collection.</summary>
2543     </member>
2544     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsLiteralSupported">
2545       <summary>Used by the GetSchema method to create the IsLiteralSupported column in the DataTypes collection.</summary>
2546     </member>
2547     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsLong">
2548       <summary>Used by the GetSchema method to create the IsLong column in the DataTypes collection.</summary>
2549     </member>
2550     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsNullable">
2551       <summary>Used by the GetSchema method to create the IsNullable column in the DataTypes collection.</summary>
2552     </member>
2553     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchable">
2554       <summary>Used by the GetSchema method to create the IsSearchable column in the DataTypes collection.</summary>
2555     </member>
2556     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchableWithLike">
2557       <summary>Used by the GetSchema method to create the IsSearchableWithLike column in the DataTypes collection.</summary>
2558     </member>
2559     <member name="F:System.Data.Common.DbMetaDataColumnNames.IsUnsigned">
2560       <summary>Used by the GetSchema method to create the IsUnsigned column in the DataTypes collection.</summary>
2561     </member>
2562     <member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralPrefix">
2563       <summary>Used by the GetSchema method to create the LiteralPrefix column in the DataTypes collection.</summary>
2564     </member>
2565     <member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralSuffix">
2566       <summary>Used by the GetSchema method to create the LiteralSuffix column in the DataTypes collection.</summary>
2567     </member>
2568     <member name="F:System.Data.Common.DbMetaDataColumnNames.MaximumScale">
2569       <summary>Used by the GetSchema method to create the MaximumScale column in the DataTypes collection.</summary>
2570     </member>
2571     <member name="F:System.Data.Common.DbMetaDataColumnNames.MinimumScale">
2572       <summary>Used by the GetSchema method to create the MinimumScale column in the DataTypes collection.</summary>
2573     </member>
2574     <member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfIdentifierParts">
2575       <summary>Used by the GetSchema method to create the NumberOfIdentifierParts column in the MetaDataCollections collection.</summary>
2576     </member>
2577     <member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfRestrictions">
2578       <summary>Used by the GetSchema method to create the NumberOfRestrictions column in the MetaDataCollections collection.</summary>
2579     </member>
2580     <member name="F:System.Data.Common.DbMetaDataColumnNames.OrderByColumnsInSelect">
2581       <summary>Used by the GetSchema method to create the OrderByColumnsInSelect column in the DataSourceInformation collection.</summary>
2582     </member>
2583     <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerFormat">
2584       <summary>Used by the GetSchema method to create the ParameterMarkerFormat column in the DataSourceInformation collection.</summary>
2585     </member>
2586     <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerPattern">
2587       <summary>Used by the GetSchema method to create the ParameterMarkerPattern column in the DataSourceInformation collection.</summary>
2588     </member>
2589     <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNameMaxLength">
2590       <summary>Used by the GetSchema method to create the ParameterNameMaxLength column in the DataSourceInformation collection.</summary>
2591     </member>
2592     <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNamePattern">
2593       <summary>Used by the GetSchema method to create the ParameterNamePattern column in the DataSourceInformation collection.</summary>
2594     </member>
2595     <member name="F:System.Data.Common.DbMetaDataColumnNames.ProviderDbType">
2596       <summary>Used by the GetSchema method to create the ProviderDbType column in the DataTypes collection.</summary>
2597     </member>
2598     <member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierCase">
2599       <summary>Used by the GetSchema method to create the QuotedIdentifierCase column in the DataSourceInformation collection.</summary>
2600     </member>
2601     <member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierPattern">
2602       <summary>Used by the GetSchema method to create the QuotedIdentifierPattern column in the DataSourceInformation collection.</summary>
2603     </member>
2604     <member name="F:System.Data.Common.DbMetaDataColumnNames.ReservedWord">
2605       <summary>Used by the GetSchema method to create the ReservedWord column in the ReservedWords collection.</summary>
2606     </member>
2607     <member name="F:System.Data.Common.DbMetaDataColumnNames.StatementSeparatorPattern">
2608       <summary>Used by the GetSchema method to create the StatementSeparatorPattern column in the DataSourceInformation collection.</summary>
2609     </member>
2610     <member name="F:System.Data.Common.DbMetaDataColumnNames.StringLiteralPattern">
2611       <summary>Used by the GetSchema method to create the StringLiteralPattern column in the DataSourceInformation collection.</summary>
2612     </member>
2613     <member name="F:System.Data.Common.DbMetaDataColumnNames.SupportedJoinOperators">
2614       <summary>Used by the GetSchema method to create the SupportedJoinOperators column in the DataSourceInformation collection.</summary>
2615     </member>
2616     <member name="F:System.Data.Common.DbMetaDataColumnNames.TypeName">
2617       <summary>Used by the GetSchema method to create the TypeName column in the DataTypes collection.</summary>
2618     </member>
2619     <member name="T:System.Data.Common.DbParameter">
2620       <summary>Represents a parameter to a <see cref="T:System.Data.Common.DbCommand" /> and optionally, its mapping to a <see cref="T:System.Data.DataSet" /> column. For more information on parameters, see Configuring Parameters and Parameter Data Types.</summary>
2621     </member>
2622     <member name="M:System.Data.Common.DbParameter.#ctor">
2623       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameter" /> class.</summary>
2624     </member>
2625     <member name="P:System.Data.Common.DbParameter.DbType">
2626       <summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
2627       <returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.String" />.</returns>
2628       <exception cref="T:System.ArgumentException">The property is not set to a valid <see cref="T:System.Data.DbType" />.</exception>
2629     </member>
2630     <member name="P:System.Data.Common.DbParameter.Direction">
2631       <summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
2632       <returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
2633       <exception cref="T:System.ArgumentException">The property is not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
2634     </member>
2635     <member name="P:System.Data.Common.DbParameter.IsNullable">
2636       <summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
2637       <returns>
2638         <see langword="true" /> if null values are accepted; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
2639     </member>
2640     <member name="P:System.Data.Common.DbParameter.ParameterName">
2641       <summary>Gets or sets the name of the <see cref="T:System.Data.Common.DbParameter" />.</summary>
2642       <returns>The name of the <see cref="T:System.Data.Common.DbParameter" />. The default is an empty string ("").</returns>
2643     </member>
2644     <member name="P:System.Data.Common.DbParameter.Precision">
2645       <summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value" /> property.</summary>
2646       <returns>The maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value" /> property.</returns>
2647     </member>
2648     <member name="M:System.Data.Common.DbParameter.ResetDbType">
2649       <summary>Resets the DbType property to its original settings.</summary>
2650     </member>
2651     <member name="P:System.Data.Common.DbParameter.Scale">
2652       <summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value" /> is resolved.</summary>
2653       <returns>The number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value" /> is resolved.</returns>
2654     </member>
2655     <member name="P:System.Data.Common.DbParameter.Size">
2656       <summary>Gets or sets the maximum size, in bytes, of the data within the column.</summary>
2657       <returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
2658     </member>
2659     <member name="P:System.Data.Common.DbParameter.SourceColumn">
2660       <summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.Common.DbParameter.Value" />.</summary>
2661       <returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string.</returns>
2662     </member>
2663     <member name="P:System.Data.Common.DbParameter.SourceColumnNullMapping">
2664       <summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.Common.DbCommandBuilder" /> to correctly generate Update statements for nullable columns.</summary>
2665       <returns>
2666         <see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</returns>
2667     </member>
2668     <member name="P:System.Data.Common.DbParameter.SourceVersion">
2669       <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when you load <see cref="P:System.Data.Common.DbParameter.Value" />.</summary>
2670       <returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
2671       <exception cref="T:System.ArgumentException">The property is not set to one of the <see cref="T:System.Data.DataRowVersion" /> values.</exception>
2672     </member>
2673     <member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Precision">
2674       <summary>Indicates the precision of numeric parameters.</summary>
2675       <returns>The maximum number of digits used to represent the <see langword="Value" /> property of a data provider <see langword="Parameter" /> object. The default value is 0, which indicates that a data provider sets the precision for <see langword="Value" />.</returns>
2676     </member>
2677     <member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Scale">
2678       <summary>For a description of this member, see <see cref="P:System.Data.IDbDataParameter.Scale" />.</summary>
2679       <returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved. The default is 0.</returns>
2680     </member>
2681     <member name="P:System.Data.Common.DbParameter.Value">
2682       <summary>Gets or sets the value of the parameter.</summary>
2683       <returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
2684     </member>
2685     <member name="T:System.Data.Common.DbParameterCollection">
2686       <summary>The base class for a collection of parameters relevant to a <see cref="T:System.Data.Common.DbCommand" />.</summary>
2687     </member>
2688     <member name="M:System.Data.Common.DbParameterCollection.#ctor">
2689       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameterCollection" /> class.</summary>
2690     </member>
2691     <member name="M:System.Data.Common.DbParameterCollection.Add(System.Object)">
2692       <summary>Adds the specified <see cref="T:System.Data.Common.DbParameter" /> object to the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
2693       <param name="value">The <see cref="P:System.Data.Common.DbParameter.Value" /> of the <see cref="T:System.Data.Common.DbParameter" /> to add to the collection.</param>
2694       <returns>The index of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</returns>
2695     </member>
2696     <member name="M:System.Data.Common.DbParameterCollection.AddRange(System.Array)">
2697       <summary>Adds an array of items with the specified values to the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
2698       <param name="values">An array of values of type <see cref="T:System.Data.Common.DbParameter" /> to add to the collection.</param>
2699     </member>
2700     <member name="M:System.Data.Common.DbParameterCollection.Clear">
2701       <summary>Removes all <see cref="T:System.Data.Common.DbParameter" /> values from the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
2702     </member>
2703     <member name="M:System.Data.Common.DbParameterCollection.Contains(System.Object)">
2704       <summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter" /> with the specified <see cref="P:System.Data.Common.DbParameter.Value" /> is contained in the collection.</summary>
2705       <param name="value">The <see cref="P:System.Data.Common.DbParameter.Value" /> of the <see cref="T:System.Data.Common.DbParameter" /> to look for in the collection.</param>
2706       <returns>
2707         <see langword="true" /> if the <see cref="T:System.Data.Common.DbParameter" /> is in the collection; otherwise <see langword="false" />.</returns>
2708     </member>
2709     <member name="M:System.Data.Common.DbParameterCollection.Contains(System.String)">
2710       <summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter" /> with the specified name exists in the collection.</summary>
2711       <param name="value">The name of the <see cref="T:System.Data.Common.DbParameter" /> to look for in the collection.</param>
2712       <returns>
2713         <see langword="true" /> if the <see cref="T:System.Data.Common.DbParameter" /> is in the collection; otherwise <see langword="false" />.</returns>
2714     </member>
2715     <member name="M:System.Data.Common.DbParameterCollection.CopyTo(System.Array,System.Int32)">
2716       <summary>Copies an array of items to the collection starting at the specified index.</summary>
2717       <param name="array">The array of items to copy to the collection.</param>
2718       <param name="index">The index in the collection to copy the items.</param>
2719     </member>
2720     <member name="P:System.Data.Common.DbParameterCollection.Count">
2721       <summary>Specifies the number of items in the collection.</summary>
2722       <returns>The number of items in the collection.</returns>
2723     </member>
2724     <member name="M:System.Data.Common.DbParameterCollection.GetEnumerator">
2725       <summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
2726       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2727     </member>
2728     <member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.Int32)">
2729       <summary>Returns the <see cref="T:System.Data.Common.DbParameter" /> object at the specified index in the collection.</summary>
2730       <param name="index">The index of the <see cref="T:System.Data.Common.DbParameter" /> in the collection.</param>
2731       <returns>The <see cref="T:System.Data.Common.DbParameter" /> object at the specified index in the collection.</returns>
2732     </member>
2733     <member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.String)">
2734       <summary>Returns <see cref="T:System.Data.Common.DbParameter" /> the object with the specified name.</summary>
2735       <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> in the collection.</param>
2736       <returns>The <see cref="T:System.Data.Common.DbParameter" /> the object with the specified name.</returns>
2737     </member>
2738     <member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.Object)">
2739       <summary>Returns the index of the specified <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
2740       <param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
2741       <returns>The index of the specified <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
2742     </member>
2743     <member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.String)">
2744       <summary>Returns the index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name.</summary>
2745       <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
2746       <returns>The index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name.</returns>
2747     </member>
2748     <member name="M:System.Data.Common.DbParameterCollection.Insert(System.Int32,System.Object)">
2749       <summary>Inserts the specified index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name into the collection at the specified index.</summary>
2750       <param name="index">The index at which to insert the <see cref="T:System.Data.Common.DbParameter" /> object.</param>
2751       <param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object to insert into the collection.</param>
2752     </member>
2753     <member name="P:System.Data.Common.DbParameterCollection.IsFixedSize">
2754       <summary>Specifies whether the collection is a fixed size.</summary>
2755       <returns>
2756         <see langword="true" /> if the collection is a fixed size; otherwise <see langword="false" />.</returns>
2757     </member>
2758     <member name="P:System.Data.Common.DbParameterCollection.IsReadOnly">
2759       <summary>Specifies whether the collection is read-only.</summary>
2760       <returns>
2761         <see langword="true" /> if the collection is read-only; otherwise <see langword="false" />.</returns>
2762     </member>
2763     <member name="P:System.Data.Common.DbParameterCollection.IsSynchronized">
2764       <summary>Specifies whether the collection is synchronized.</summary>
2765       <returns>
2766         <see langword="true" /> if the collection is synchronized; otherwise <see langword="false" />.</returns>
2767     </member>
2768     <member name="P:System.Data.Common.DbParameterCollection.Item(System.Int32)">
2769       <summary>Gets or sets the <see cref="T:System.Data.Common.DbParameter" /> at the specified index.</summary>
2770       <param name="index">The zero-based index of the parameter.</param>
2771       <returns>The <see cref="T:System.Data.Common.DbParameter" /> at the specified index.</returns>
2772       <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
2773     </member>
2774     <member name="P:System.Data.Common.DbParameterCollection.Item(System.String)">
2775       <summary>Gets or sets the <see cref="T:System.Data.Common.DbParameter" /> with the specified name.</summary>
2776       <param name="parameterName">The name of the parameter.</param>
2777       <returns>The <see cref="T:System.Data.Common.DbParameter" /> with the specified name.</returns>
2778       <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
2779     </member>
2780     <member name="M:System.Data.Common.DbParameterCollection.Remove(System.Object)">
2781       <summary>Removes the specified <see cref="T:System.Data.Common.DbParameter" /> object from the collection.</summary>
2782       <param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object to remove.</param>
2783     </member>
2784     <member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.Int32)">
2785       <summary>Removes the <see cref="T:System.Data.Common.DbParameter" /> object at the specified from the collection.</summary>
2786       <param name="index">The index where the <see cref="T:System.Data.Common.DbParameter" /> object is located.</param>
2787     </member>
2788     <member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.String)">
2789       <summary>Removes the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name from the collection.</summary>
2790       <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object to remove.</param>
2791     </member>
2792     <member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)">
2793       <summary>Sets the <see cref="T:System.Data.Common.DbParameter" /> object at the specified index to a new value.</summary>
2794       <param name="index">The index where the <see cref="T:System.Data.Common.DbParameter" /> object is located.</param>
2795       <param name="value">The new <see cref="T:System.Data.Common.DbParameter" /> value.</param>
2796     </member>
2797     <member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)">
2798       <summary>Sets the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name to a new value.</summary>
2799       <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
2800       <param name="value">The new <see cref="T:System.Data.Common.DbParameter" /> value.</param>
2801     </member>
2802     <member name="P:System.Data.Common.DbParameterCollection.SyncRoot">
2803       <summary>Specifies the <see cref="T:System.Object" /> to be used to synchronize access to the collection.</summary>
2804       <returns>A <see cref="T:System.Object" /> to be used to synchronize access to the <see cref="T:System.Data.Common.DbParameterCollection" />.</returns>
2805     </member>
2806     <member name="P:System.Data.Common.DbParameterCollection.System#Collections#IList#Item(System.Int32)">
2807       <summary>Gets or sets the element at the specified index.</summary>
2808       <param name="index">The zero-based index of the element to get or set.</param>
2809       <returns>The element at the specified index.</returns>
2810     </member>
2811     <member name="P:System.Data.Common.DbParameterCollection.System#Data#IDataParameterCollection#Item(System.String)">
2812       <summary>Gets or sets the parameter at the specified index.</summary>
2813       <param name="parameterName">The name of the parameter to retrieve.</param>
2814       <returns>An <see cref="T:System.Object" /> at the specified index.</returns>
2815     </member>
2816     <member name="T:System.Data.Common.DbProviderFactories">
2817       <summary>Represents a set of static methods for creating one or more instances of <see cref="T:System.Data.Common.DbProviderFactory" /> classes.</summary>
2818     </member>
2819     <member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.Data.Common.DbConnection)">
2820       <summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
2821       <param name="connection">The connection used.</param>
2822       <returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified connection.</returns>
2823     </member>
2824     <member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.Data.DataRow)">
2825       <summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
2826       <param name="providerRow">
2827         <see cref="T:System.Data.DataRow" /> containing the provider's configuration information.</param>
2828       <returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified <see cref="T:System.Data.DataRow" />.</returns>
2829     </member>
2830     <member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.String)">
2831       <summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
2832       <param name="providerInvariantName">Invariant name of a provider.</param>
2833       <returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified provider name.</returns>
2834     </member>
2835     <member name="M:System.Data.Common.DbProviderFactories.GetFactoryClasses">
2836       <summary>Returns a <see cref="T:System.Data.DataTable" /> that contains information about all installed providers that implement <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
2837       <returns>A <see cref="T:System.Data.DataTable" /> containing <see cref="T:System.Data.DataRow" /> objects that contain the following data:
2838   Column ordinal  
2839   
2840   Column name  
2841   
2842   Description  
2843   
2844   0  
2845   
2846   **Name**  
2847   
2848   Human-readable name for the data provider.  
2849   
2850   1  
2851   
2852   **Description**  
2853   
2854   Human-readable description of the data provider.  
2855   
2856   2  
2857   
2858   **InvariantName**  
2859   
2860   Name that can be used programmatically to refer to the data provider.  
2861   
2862   3  
2863   
2864   **AssemblyQualifiedName**  
2865   
2866   Fully qualified name of the factory class, which contains enough information to instantiate the object.</returns>
2867     </member>
2868     <member name="M:System.Data.Common.DbProviderFactories.GetProviderInvariantNames" />
2869     <member name="M:System.Data.Common.DbProviderFactories.RegisterFactory(System.String,System.Data.Common.DbProviderFactory)">
2870       <param name="providerInvariantName" />
2871       <param name="factory" />
2872     </member>
2873     <member name="M:System.Data.Common.DbProviderFactories.RegisterFactory(System.String,System.String)">
2874       <param name="providerInvariantName" />
2875       <param name="factoryTypeAssemblyQualifiedName" />
2876     </member>
2877     <member name="M:System.Data.Common.DbProviderFactories.RegisterFactory(System.String,System.Type)">
2878       <param name="providerInvariantName" />
2879       <param name="providerFactoryClass" />
2880     </member>
2881     <member name="M:System.Data.Common.DbProviderFactories.TryGetFactory(System.String,System.Data.Common.DbProviderFactory@)">
2882       <param name="providerInvariantName" />
2883       <param name="factory" />
2884     </member>
2885     <member name="M:System.Data.Common.DbProviderFactories.UnregisterFactory(System.String)">
2886       <param name="providerInvariantName" />
2887     </member>
2888     <member name="T:System.Data.Common.DbProviderFactory">
2889       <summary>Represents a set of methods for creating instances of a provider's implementation of the data source classes.</summary>
2890     </member>
2891     <member name="M:System.Data.Common.DbProviderFactory.#ctor">
2892       <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> class.</summary>
2893     </member>
2894     <member name="P:System.Data.Common.DbProviderFactory.CanCreateCommandBuilder">
2895       <summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbProviderFactory" /> instance supports the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
2896       <returns>
2897         <see langword="true" /> if this instance supports the <see cref="T:System.Data.Common.DbCommandBuilder" /> class; otherwise, <see langword="false" />.</returns>
2898     </member>
2899     <member name="P:System.Data.Common.DbProviderFactory.CanCreateDataAdapter">
2900       <summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbProviderFactory" /> instance supports the <see cref="T:System.Data.Common.DbDataAdapter" /> class.</summary>
2901       <returns>
2902         <see langword="true" /> if the instance supports the <see cref="T:System.Data.Common.DbDataAdapter" /> class; otherwise, <see langword="false" />.</returns>
2903     </member>
2904     <member name="P:System.Data.Common.DbProviderFactory.CanCreateDataSourceEnumerator">
2905       <summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbProviderFactory" /> instance supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
2906       <returns>
2907         <see langword="true" /> if the instance supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class; otherwise, <see langword="false" />.</returns>
2908     </member>
2909     <member name="M:System.Data.Common.DbProviderFactory.CreateCommand">
2910       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommand" /> class.</summary>
2911       <returns>A new instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
2912     </member>
2913     <member name="M:System.Data.Common.DbProviderFactory.CreateCommandBuilder">
2914       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
2915       <returns>A new instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
2916     </member>
2917     <member name="M:System.Data.Common.DbProviderFactory.CreateConnection">
2918       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnection" /> class.</summary>
2919       <returns>A new instance of <see cref="T:System.Data.Common.DbConnection" />.</returns>
2920     </member>
2921     <member name="M:System.Data.Common.DbProviderFactory.CreateConnectionStringBuilder">
2922       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.</summary>
2923       <returns>A new instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
2924     </member>
2925     <member name="M:System.Data.Common.DbProviderFactory.CreateDataAdapter">
2926       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataAdapter" /> class.</summary>
2927       <returns>A new instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
2928     </member>
2929     <member name="M:System.Data.Common.DbProviderFactory.CreateDataSourceEnumerator">
2930       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
2931       <returns>A new instance of <see cref="T:System.Data.Common.DbDataSourceEnumerator" />.</returns>
2932     </member>
2933     <member name="M:System.Data.Common.DbProviderFactory.CreateParameter">
2934       <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbParameter" /> class.</summary>
2935       <returns>A new instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
2936     </member>
2937     <member name="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute">
2938       <summary>Identifies which provider-specific property in the strongly typed parameter classes is to be used when setting a provider-specific type.</summary>
2939     </member>
2940     <member name="M:System.Data.Common.DbProviderSpecificTypePropertyAttribute.#ctor(System.Boolean)">
2941       <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute" /> class.</summary>
2942       <param name="isProviderSpecificTypeProperty">Specifies whether this property is a provider-specific property.</param>
2943     </member>
2944     <member name="P:System.Data.Common.DbProviderSpecificTypePropertyAttribute.IsProviderSpecificTypeProperty">
2945       <summary>Indicates whether the attributed property is a provider-specific type.</summary>
2946       <returns>
2947         <see langword="true" /> if the property that this attribute is applied to is a provider-specific type property; otherwise <see langword="false" />.</returns>
2948     </member>
2949     <member name="T:System.Data.Common.DbTransaction">
2950       <summary>Defines the core behavior of database transactions and provides a base class for database-specific transactions.</summary>
2951     </member>
2952     <member name="M:System.Data.Common.DbTransaction.#ctor">
2953       <summary>Initializes a new <see cref="T:System.Data.Common.DbTransaction" /> object.</summary>
2954     </member>
2955     <member name="M:System.Data.Common.DbTransaction.Commit">
2956       <summary>When overridden in a derived class, commits the database transaction.</summary>
2957     </member>
2958     <member name="M:System.Data.Common.DbTransaction.CommitAsync(System.Threading.CancellationToken)">
2959       <summary>Asynchronously commits the database transaction.</summary>
2960       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2961       <returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the asynchronous operation.</returns>
2962     </member>
2963     <member name="P:System.Data.Common.DbTransaction.Connection">
2964       <summary>Specifies the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</summary>
2965       <returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
2966     </member>
2967     <member name="P:System.Data.Common.DbTransaction.DbConnection">
2968       <summary>When overridden in a derived class, gets the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</summary>
2969       <returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
2970     </member>
2971     <member name="M:System.Data.Common.DbTransaction.Dispose">
2972       <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction" />.</summary>
2973     </member>
2974     <member name="M:System.Data.Common.DbTransaction.Dispose(System.Boolean)">
2975       <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction" /> and optionally releases the managed resources.</summary>
2976       <param name="disposing">If <see langword="true" />, this method releases all resources held by any managed objects that this <see cref="T:System.Data.Common.DbTransaction" /> references.</param>
2977     </member>
2978     <member name="M:System.Data.Common.DbTransaction.DisposeAsync">
2979       <summary>Asynchronously diposes the transaction object.</summary>
2980       <returns>A <see cref="T:System.Threading.Tasks.ValueTask" /> representing the asynchronous operation.</returns>
2981     </member>
2982     <member name="P:System.Data.Common.DbTransaction.IsolationLevel">
2983       <summary>When overridden in a derived class, gets the isolation level for this transaction.</summary>
2984       <returns>The isolation level for this transaction.</returns>
2985     </member>
2986     <member name="M:System.Data.Common.DbTransaction.Rollback">
2987       <summary>When overridden in a derived class, rolls back a transaction from a pending state.</summary>
2988     </member>
2989     <member name="M:System.Data.Common.DbTransaction.RollbackAsync(System.Threading.CancellationToken)">
2990       <summary>Asynchronously rolls back a transaction from a pending state.</summary>
2991       <param name="cancellationToken">An optional token to cancel the asynchronous operation. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
2992       <returns>A task representing the asynchronous operation.</returns>
2993     </member>
2994     <member name="P:System.Data.Common.DbTransaction.System#Data#IDbTransaction#Connection">
2995       <summary>Gets the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction, or a null reference if the transaction is no longer valid.</summary>
2996       <returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
2997     </member>
2998     <member name="T:System.Data.Common.GroupByBehavior">
2999       <summary>Specifies the relationship between the columns in a GROUP BY clause and the non-aggregated columns in the select-list of a SELECT statement.</summary>
3000     </member>
3001     <member name="F:System.Data.Common.GroupByBehavior.ExactMatch">
3002       <summary>The GROUP BY clause must contain all nonaggregated columns in the select list, and must not contain other columns not in the select list.</summary>
3003     </member>
3004     <member name="F:System.Data.Common.GroupByBehavior.MustContainAll">
3005       <summary>The GROUP BY clause must contain all nonaggregated columns in the select list, and can contain other columns not in the select list.</summary>
3006     </member>
3007     <member name="F:System.Data.Common.GroupByBehavior.NotSupported">
3008       <summary>The GROUP BY clause is not supported.</summary>
3009     </member>
3010     <member name="F:System.Data.Common.GroupByBehavior.Unknown">
3011       <summary>The support for the GROUP BY clause is unknown.</summary>
3012     </member>
3013     <member name="F:System.Data.Common.GroupByBehavior.Unrelated">
3014       <summary>There is no relationship between the columns in the GROUP BY clause and the nonaggregated columns in the SELECT list. You may group by any column.</summary>
3015     </member>
3016     <member name="T:System.Data.Common.IDbColumnSchemaGenerator">
3017       <summary>Generates a column schema.</summary>
3018     </member>
3019     <member name="M:System.Data.Common.IDbColumnSchemaGenerator.GetColumnSchema">
3020       <summary>Gets the column schema (<see cref="T:System.Data.Common.DbColumn" /> collection).</summary>
3021       <returns>The column schema (<see cref="T:System.Data.Common.DbColumn" /> collection).</returns>
3022     </member>
3023     <member name="T:System.Data.Common.IdentifierCase">
3024       <summary>Specifies how identifiers are treated by the data source when searching the system catalog.</summary>
3025     </member>
3026     <member name="F:System.Data.Common.IdentifierCase.Insensitive">
3027       <summary>The data source ignores identifier case when searching the system catalog. The identifiers "ab" and "AB" will match.</summary>
3028     </member>
3029     <member name="F:System.Data.Common.IdentifierCase.Sensitive">
3030       <summary>The data source distinguishes identifier case when searching the system catalog. The identifiers "ab" and "AB" will not match.</summary>
3031     </member>
3032     <member name="F:System.Data.Common.IdentifierCase.Unknown">
3033       <summary>The data source has ambiguous rules regarding identifier case and cannot discern this information.</summary>
3034     </member>
3035     <member name="T:System.Data.Common.RowUpdatedEventArgs">
3036       <summary>Provides data for the <see langword="RowUpdated" /> event of a .NET Framework data provider.</summary>
3037     </member>
3038     <member name="M:System.Data.Common.RowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
3039       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</summary>
3040       <param name="dataRow">The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
3041       <param name="command">The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
3042       <param name="statementType">The type of SQL statement executed.</param>
3043       <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
3044     </member>
3045     <member name="P:System.Data.Common.RowUpdatedEventArgs.Command">
3046       <summary>Gets the <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
3047       <returns>The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
3048     </member>
3049     <member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[])">
3050       <summary>Copies references to the modified rows into the provided array.</summary>
3051       <param name="array">The array of <see cref="T:System.Data.DataRow" /> to copy into.</param>
3052     </member>
3053     <member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[],System.Int32)">
3054       <summary>Copies references to the modified rows into the provided array.</summary>
3055       <param name="array">The array of <see cref="T:System.Data.DataRow" /> to copy into.</param>
3056       <param name="arrayIndex">The index in the array to start copying into.</param>
3057     </member>
3058     <member name="P:System.Data.Common.RowUpdatedEventArgs.Errors">
3059       <summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> was executed.</summary>
3060       <returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> was executed.</returns>
3061     </member>
3062     <member name="P:System.Data.Common.RowUpdatedEventArgs.RecordsAffected">
3063       <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
3064       <returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
3065     </member>
3066     <member name="P:System.Data.Common.RowUpdatedEventArgs.Row">
3067       <summary>Gets the <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
3068       <returns>The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3069     </member>
3070     <member name="P:System.Data.Common.RowUpdatedEventArgs.RowCount">
3071       <summary>Gets the number of rows processed in a batch of updated records.</summary>
3072       <returns>
3073         <see langword="int" /> that specifies the number of row processed.</returns>
3074     </member>
3075     <member name="P:System.Data.Common.RowUpdatedEventArgs.StatementType">
3076       <summary>Gets the type of SQL statement executed.</summary>
3077       <returns>The type of SQL statement executed.</returns>
3078     </member>
3079     <member name="P:System.Data.Common.RowUpdatedEventArgs.Status">
3080       <summary>Gets the <see cref="T:System.Data.UpdateStatus" /> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> property.</summary>
3081       <returns>One of the <see cref="T:System.Data.UpdateStatus" /> values. The default is <see langword="Continue" />.</returns>
3082     </member>
3083     <member name="P:System.Data.Common.RowUpdatedEventArgs.TableMapping">
3084       <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
3085       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3086     </member>
3087     <member name="T:System.Data.Common.RowUpdatingEventArgs">
3088       <summary>Provides the data for the RowUpdating event of a .NET Framework data provider.</summary>
3089     </member>
3090     <member name="M:System.Data.Common.RowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
3091       <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</summary>
3092       <param name="dataRow">The <see cref="T:System.Data.DataRow" /> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
3093       <param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
3094       <param name="statementType">The type of SQL statement to execute.</param>
3095       <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
3096     </member>
3097     <member name="P:System.Data.Common.RowUpdatingEventArgs.BaseCommand">
3098       <summary>Gets or sets the <see cref="T:System.Data.IDbCommand" /> object for an instance of this class.</summary>
3099       <returns>The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3100     </member>
3101     <member name="P:System.Data.Common.RowUpdatingEventArgs.Command">
3102       <summary>Gets the <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> operation.</summary>
3103       <returns>The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3104     </member>
3105     <member name="P:System.Data.Common.RowUpdatingEventArgs.Errors">
3106       <summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> executes.</summary>
3107       <returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> executes.</returns>
3108     </member>
3109     <member name="P:System.Data.Common.RowUpdatingEventArgs.Row">
3110       <summary>Gets the <see cref="T:System.Data.DataRow" /> that will be sent to the server as part of an insert, update, or delete operation.</summary>
3111       <returns>The <see cref="T:System.Data.DataRow" /> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3112     </member>
3113     <member name="P:System.Data.Common.RowUpdatingEventArgs.StatementType">
3114       <summary>Gets the type of SQL statement to execute.</summary>
3115       <returns>The type of SQL statement to execute.</returns>
3116     </member>
3117     <member name="P:System.Data.Common.RowUpdatingEventArgs.Status">
3118       <summary>Gets or sets the <see cref="T:System.Data.UpdateStatus" /> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> property.</summary>
3119       <returns>One of the <see cref="T:System.Data.UpdateStatus" /> values. The default is <see langword="Continue" />.</returns>
3120     </member>
3121     <member name="P:System.Data.Common.RowUpdatingEventArgs.TableMapping">
3122       <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
3123       <returns>The <see cref="T:System.Data.Common.DataTableMapping" /> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
3124     </member>
3125     <member name="T:System.Data.Common.SchemaTableColumn">
3126       <summary>Describes the column metadata of the schema for a database table.</summary>
3127     </member>
3128     <member name="F:System.Data.Common.SchemaTableColumn.AllowDBNull">
3129       <summary>Specifies whether value <see langword="DBNull" /> is allowed.</summary>
3130     </member>
3131     <member name="F:System.Data.Common.SchemaTableColumn.BaseColumnName">
3132       <summary>Specifies the name of the column in the schema table.</summary>
3133     </member>
3134     <member name="F:System.Data.Common.SchemaTableColumn.BaseSchemaName">
3135       <summary>Specifies the name of the schema in the schema table.</summary>
3136     </member>
3137     <member name="F:System.Data.Common.SchemaTableColumn.BaseTableName">
3138       <summary>Specifies the name of the table in the schema table.</summary>
3139     </member>
3140     <member name="F:System.Data.Common.SchemaTableColumn.ColumnName">
3141       <summary>Specifies the name of the column in the schema table.</summary>
3142     </member>
3143     <member name="F:System.Data.Common.SchemaTableColumn.ColumnOrdinal">
3144       <summary>Specifies the ordinal of the column.</summary>
3145     </member>
3146     <member name="F:System.Data.Common.SchemaTableColumn.ColumnSize">
3147       <summary>Specifies the size of the column.</summary>
3148     </member>
3149     <member name="F:System.Data.Common.SchemaTableColumn.DataType">
3150       <summary>Specifies the type of data in the column.</summary>
3151     </member>
3152     <member name="F:System.Data.Common.SchemaTableColumn.IsAliased">
3153       <summary>Specifies whether this column is aliased.</summary>
3154     </member>
3155     <member name="F:System.Data.Common.SchemaTableColumn.IsExpression">
3156       <summary>Specifies whether this column is an expression.</summary>
3157     </member>
3158     <member name="F:System.Data.Common.SchemaTableColumn.IsKey">
3159       <summary>Specifies whether this column is a key for the table.</summary>
3160     </member>
3161     <member name="F:System.Data.Common.SchemaTableColumn.IsLong">
3162       <summary>Specifies whether this column contains long data.</summary>
3163     </member>
3164     <member name="F:System.Data.Common.SchemaTableColumn.IsUnique">
3165       <summary>Specifies whether a unique constraint applies to this column.</summary>
3166     </member>
3167     <member name="F:System.Data.Common.SchemaTableColumn.NonVersionedProviderType">
3168       <summary>Specifies the non-versioned provider-specific data type of the column.</summary>
3169     </member>
3170     <member name="F:System.Data.Common.SchemaTableColumn.NumericPrecision">
3171       <summary>Specifies the precision of the column data, if the data is numeric.</summary>
3172     </member>
3173     <member name="F:System.Data.Common.SchemaTableColumn.NumericScale">
3174       <summary>Specifies the scale of the column data, if the data is numeric.</summary>
3175     </member>
3176     <member name="F:System.Data.Common.SchemaTableColumn.ProviderType">
3177       <summary>Specifies the provider-specific data type of the column.</summary>
3178     </member>
3179     <member name="T:System.Data.Common.SchemaTableOptionalColumn">
3180       <summary>Describes optional column metadata of the schema for a database table.</summary>
3181     </member>
3182     <member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementSeed">
3183       <summary>Specifies the value at which the series for new identity columns is assigned.</summary>
3184     </member>
3185     <member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementStep">
3186       <summary>Specifies the increment between values in the identity column.</summary>
3187     </member>
3188     <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseCatalogName">
3189       <summary>The name of the catalog associated with the results of the latest query.</summary>
3190     </member>
3191     <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseColumnNamespace">
3192       <summary>The namespace of the column.</summary>
3193     </member>
3194     <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseServerName">
3195       <summary>The server name of the column.</summary>
3196     </member>
3197     <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseTableNamespace">
3198       <summary>The namespace for the table that contains the column.</summary>
3199     </member>
3200     <member name="F:System.Data.Common.SchemaTableOptionalColumn.ColumnMapping">
3201       <summary>Specifies the mapping for the column.</summary>
3202     </member>
3203     <member name="F:System.Data.Common.SchemaTableOptionalColumn.DefaultValue">
3204       <summary>The default value for the column.</summary>
3205     </member>
3206     <member name="F:System.Data.Common.SchemaTableOptionalColumn.Expression">
3207       <summary>The expression used to compute the column.</summary>
3208     </member>
3209     <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsAutoIncrement">
3210       <summary>Specifies whether the column values in the column are automatically incremented.</summary>
3211     </member>
3212     <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsHidden">
3213       <summary>Specifies whether this column is hidden.</summary>
3214     </member>
3215     <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsReadOnly">
3216       <summary>Specifies whether this column is read-only.</summary>
3217     </member>
3218     <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsRowVersion">
3219       <summary>Specifies whether this column contains row version information.</summary>
3220     </member>
3221     <member name="F:System.Data.Common.SchemaTableOptionalColumn.ProviderSpecificDataType">
3222       <summary>Specifies the provider-specific data type of the column.</summary>
3223     </member>
3224     <member name="T:System.Data.Common.SupportedJoinOperators">
3225       <summary>Specifies what types of Transact-SQL join statements are supported by the data source.</summary>
3226     </member>
3227     <member name="F:System.Data.Common.SupportedJoinOperators.FullOuter">
3228       <summary>The data source supports full outer joins.</summary>
3229     </member>
3230     <member name="F:System.Data.Common.SupportedJoinOperators.Inner">
3231       <summary>The data source supports inner joins.</summary>
3232     </member>
3233     <member name="F:System.Data.Common.SupportedJoinOperators.LeftOuter">
3234       <summary>The data source supports left outer joins.</summary>
3235     </member>
3236     <member name="F:System.Data.Common.SupportedJoinOperators.None">
3237       <summary>The data source does not support join queries.</summary>
3238     </member>
3239     <member name="F:System.Data.Common.SupportedJoinOperators.RightOuter">
3240       <summary>The data source supports right outer joins.</summary>
3241     </member>
3242     <member name="T:System.Data.ConflictOption">
3243       <summary>Specifies how conflicting changes to the data source will be detected and resolved.</summary>
3244     </member>
3245     <member name="F:System.Data.ConflictOption.CompareAllSearchableValues">
3246       <summary>Update and delete statements will include all searchable columns from the table in the WHERE clause. This is equivalent to specifying <see langword="CompareAllValuesUpdate" /> | <see langword="CompareAllValuesDelete" />.</summary>
3247     </member>
3248     <member name="F:System.Data.ConflictOption.CompareRowVersion">
3249       <summary>If any Timestamp columns exist in the table, they are used in the WHERE clause for all generated update statements. This is equivalent to specifying <see langword="CompareRowVersionUpdate" /> | <see langword="CompareRowVersionDelete" />.</summary>
3250     </member>
3251     <member name="F:System.Data.ConflictOption.OverwriteChanges">
3252       <summary>All update and delete statements include only <see cref="P:System.Data.DataTable.PrimaryKey" /> columns in the WHERE clause. If no <see cref="P:System.Data.DataTable.PrimaryKey" /> is defined, all searchable columns are included in the WHERE clause. This is equivalent to <see langword="OverwriteChangesUpdate" /> | <see langword="OverwriteChangesDelete" />.</summary>
3253     </member>
3254     <member name="T:System.Data.ConnectionState">
3255       <summary>Describes the current state of the connection to a data source.</summary>
3256     </member>
3257     <member name="F:System.Data.ConnectionState.Broken">
3258       <summary>The connection to the data source is broken. This can occur only after the connection has been opened. A connection in this state may be closed and then re-opened. (This value is reserved for future versions of the product.)</summary>
3259     </member>
3260     <member name="F:System.Data.ConnectionState.Closed">
3261       <summary>The connection is closed.</summary>
3262     </member>
3263     <member name="F:System.Data.ConnectionState.Connecting">
3264       <summary>The connection object is connecting to the data source.</summary>
3265     </member>
3266     <member name="F:System.Data.ConnectionState.Executing">
3267       <summary>The connection object is executing a command. (This value is reserved for future versions of the product.)</summary>
3268     </member>
3269     <member name="F:System.Data.ConnectionState.Fetching">
3270       <summary>The connection object is retrieving data. (This value is reserved for future versions of the product.)</summary>
3271     </member>
3272     <member name="F:System.Data.ConnectionState.Open">
3273       <summary>The connection is open.</summary>
3274     </member>
3275     <member name="T:System.Data.Constraint">
3276       <summary>Represents a constraint that can be enforced on one or more <see cref="T:System.Data.DataColumn" /> objects.</summary>
3277     </member>
3278     <member name="P:System.Data.Constraint._DataSet">
3279       <summary>Gets the <see cref="T:System.Data.DataSet" /> to which this constraint belongs.</summary>
3280       <returns>The <see cref="T:System.Data.DataSet" /> to which the constraint belongs.</returns>
3281     </member>
3282     <member name="M:System.Data.Constraint.CheckStateForProperty">
3283       <summary>Gets the <see cref="T:System.Data.DataSet" /> to which this constraint belongs.</summary>
3284     </member>
3285     <member name="P:System.Data.Constraint.ConstraintName">
3286       <summary>The name of a constraint in the <see cref="T:System.Data.ConstraintCollection" />.</summary>
3287       <returns>The name of the <see cref="T:System.Data.Constraint" />.</returns>
3288       <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.Constraint" /> name is a null value or empty string.</exception>
3289       <exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.ConstraintCollection" /> already contains a <see cref="T:System.Data.Constraint" /> with the same name (The comparison is not case-sensitive.).</exception>
3290     </member>
3291     <member name="P:System.Data.Constraint.ExtendedProperties">
3292       <summary>Gets the collection of user-defined constraint properties.</summary>
3293       <returns>A <see cref="T:System.Data.PropertyCollection" /> of custom information.</returns>
3294     </member>
3295     <member name="M:System.Data.Constraint.SetDataSet(System.Data.DataSet)">
3296       <summary>Sets the constraint's <see cref="T:System.Data.DataSet" />.</summary>
3297       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> to which this constraint will belong.</param>
3298     </member>
3299     <member name="P:System.Data.Constraint.Table">
3300       <summary>Gets the <see cref="T:System.Data.DataTable" /> to which the constraint applies.</summary>
3301       <returns>A <see cref="T:System.Data.DataTable" /> to which the constraint applies.</returns>
3302     </member>
3303     <member name="M:System.Data.Constraint.ToString">
3304       <summary>Gets the <see cref="P:System.Data.Constraint.ConstraintName" />, if there is one, as a string.</summary>
3305       <returns>The string value of the <see cref="P:System.Data.Constraint.ConstraintName" />.</returns>
3306     </member>
3307     <member name="T:System.Data.ConstraintCollection">
3308       <summary>Represents a collection of constraints for a <see cref="T:System.Data.DataTable" />.</summary>
3309     </member>
3310     <member name="M:System.Data.ConstraintCollection.Add(System.Data.Constraint)">
3311       <summary>Adds the specified <see cref="T:System.Data.Constraint" /> object to the collection.</summary>
3312       <param name="constraint">The <see langword="Constraint" /> to add.</param>
3313       <exception cref="T:System.ArgumentNullException">The <paramref name="constraint" /> argument is null.</exception>
3314       <exception cref="T:System.ArgumentException">The constraint already belongs to this collection, or belongs to another collection.</exception>
3315       <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the same name. (The comparison is not case-sensitive.)</exception>
3316     </member>
3317     <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Boolean)">
3318       <summary>Constructs a new <see cref="T:System.Data.UniqueConstraint" /> with the specified name, <see cref="T:System.Data.DataColumn" />, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
3319       <param name="name">The name of the <see langword="UniqueConstraint" />.</param>
3320       <param name="column">The <see cref="T:System.Data.DataColumn" /> to which the constraint applies.</param>
3321       <param name="primaryKey">Specifies whether the column should be the primary key. If <see langword="true" />, the column will be a primary key column.</param>
3322       <returns>A new <see langword="UniqueConstraint" />.</returns>
3323       <exception cref="T:System.ArgumentException">The constraint already belongs to this collection.
3324 -Or-
3325 The constraint belongs to another collection.</exception>
3326       <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
3327     </member>
3328     <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
3329       <summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint" /> with the specified name, parent column, and child column, and adds the constraint to the collection.</summary>
3330       <param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />.</param>
3331       <param name="primaryKeyColumn">The primary key, or parent, <see cref="T:System.Data.DataColumn" />.</param>
3332       <param name="foreignKeyColumn">The foreign key, or child, <see cref="T:System.Data.DataColumn" />.</param>
3333       <returns>A new <see langword="ForeignKeyConstraint" />.</returns>
3334     </member>
3335     <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Boolean)">
3336       <summary>Constructs a new <see cref="T:System.Data.UniqueConstraint" /> with the specified name, array of <see cref="T:System.Data.DataColumn" /> objects, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
3337       <param name="name">The name of the <see cref="T:System.Data.UniqueConstraint" />.</param>
3338       <param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to which the constraint applies.</param>
3339       <param name="primaryKey">Specifies whether the column should be the primary key. If <see langword="true" />, the column will be a primary key column.</param>
3340       <returns>A new <see langword="UniqueConstraint" />.</returns>
3341       <exception cref="T:System.ArgumentException">The constraint already belongs to this collection.
3342 -Or-
3343 The constraint belongs to another collection.</exception>
3344       <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
3345     </member>
3346     <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
3347       <summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint" />, with the specified arrays of parent columns and child columns, and adds the constraint to the collection.</summary>
3348       <param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />.</param>
3349       <param name="primaryKeyColumns">An array of <see cref="T:System.Data.DataColumn" /> objects that are the primary key, or parent, columns.</param>
3350       <param name="foreignKeyColumns">An array of <see cref="T:System.Data.DataColumn" /> objects that are the foreign key, or child, columns.</param>
3351       <returns>A new <see langword="ForeignKeyConstraint" />.</returns>
3352     </member>
3353     <member name="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])">
3354       <summary>Copies the elements of the specified <see cref="T:System.Data.ConstraintCollection" /> array to the end of the collection.</summary>
3355       <param name="constraints">An array of <see cref="T:System.Data.ConstraintCollection" /> objects to add to the collection.</param>
3356     </member>
3357     <member name="M:System.Data.ConstraintCollection.CanRemove(System.Data.Constraint)">
3358       <summary>Indicates whether a <see cref="T:System.Data.Constraint" /> can be removed.</summary>
3359       <param name="constraint">The <see cref="T:System.Data.Constraint" /> to be tested for removal from the collection.</param>
3360       <returns>
3361         <see langword="true" /> if the <see cref="T:System.Data.Constraint" /> can be removed from collection; otherwise, <see langword="false" />.</returns>
3362     </member>
3363     <member name="M:System.Data.ConstraintCollection.Clear">
3364       <summary>Clears the collection of any <see cref="T:System.Data.Constraint" /> objects.</summary>
3365     </member>
3366     <member name="E:System.Data.ConstraintCollection.CollectionChanged">
3367       <summary>Occurs whenever the <see cref="T:System.Data.ConstraintCollection" /> is changed because of <see cref="T:System.Data.Constraint" /> objects being added or removed.</summary>
3368     </member>
3369     <member name="M:System.Data.ConstraintCollection.Contains(System.String)">
3370       <summary>Indicates whether the <see cref="T:System.Data.Constraint" /> object specified by name exists in the collection.</summary>
3371       <param name="name">The <see cref="P:System.Data.Constraint.ConstraintName" /> of the constraint.</param>
3372       <returns>
3373         <see langword="true" /> if the collection contains the specified constraint; otherwise, <see langword="false" />.</returns>
3374     </member>
3375     <member name="M:System.Data.ConstraintCollection.CopyTo(System.Data.Constraint[],System.Int32)">
3376       <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
3377       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
3378       <param name="index">The index of the array at which to start inserting.</param>
3379     </member>
3380     <member name="M:System.Data.ConstraintCollection.IndexOf(System.Data.Constraint)">
3381       <summary>Gets the index of the specified <see cref="T:System.Data.Constraint" />.</summary>
3382       <param name="constraint">The <see cref="T:System.Data.Constraint" /> to search for.</param>
3383       <returns>The zero-based index of the <see cref="T:System.Data.Constraint" /> if it is in the collection; otherwise, -1.</returns>
3384     </member>
3385     <member name="M:System.Data.ConstraintCollection.IndexOf(System.String)">
3386       <summary>Gets the index of the <see cref="T:System.Data.Constraint" /> specified by name.</summary>
3387       <param name="constraintName">The name of the <see cref="T:System.Data.Constraint" />.</param>
3388       <returns>The index of the <see cref="T:System.Data.Constraint" /> if it is in the collection; otherwise, -1.</returns>
3389     </member>
3390     <member name="P:System.Data.ConstraintCollection.Item(System.Int32)">
3391       <summary>Gets the <see cref="T:System.Data.Constraint" /> from the collection at the specified index.</summary>
3392       <param name="index">The index of the constraint to return.</param>
3393       <returns>The <see cref="T:System.Data.Constraint" /> at the specified index.</returns>
3394       <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
3395     </member>
3396     <member name="P:System.Data.ConstraintCollection.Item(System.String)">
3397       <summary>Gets the <see cref="T:System.Data.Constraint" /> from the collection with the specified name.</summary>
3398       <param name="name">The <see cref="P:System.Data.Constraint.ConstraintName" /> of the constraint to return.</param>
3399       <returns>The <see cref="T:System.Data.Constraint" /> with the specified name; otherwise a null value if the <see cref="T:System.Data.Constraint" /> does not exist.</returns>
3400     </member>
3401     <member name="M:System.Data.ConstraintCollection.Remove(System.Data.Constraint)">
3402       <summary>Removes the specified <see cref="T:System.Data.Constraint" /> from the collection.</summary>
3403       <param name="constraint">The <see cref="T:System.Data.Constraint" /> to remove.</param>
3404       <exception cref="T:System.ArgumentNullException">The <paramref name="constraint" /> argument is <see langword="null" />.</exception>
3405       <exception cref="T:System.ArgumentException">The constraint does not belong to the collection.</exception>
3406     </member>
3407     <member name="M:System.Data.ConstraintCollection.Remove(System.String)">
3408       <summary>Removes the <see cref="T:System.Data.Constraint" /> object specified by name from the collection.</summary>
3409       <param name="name">The name of the <see cref="T:System.Data.Constraint" /> to remove.</param>
3410     </member>
3411     <member name="M:System.Data.ConstraintCollection.RemoveAt(System.Int32)">
3412       <summary>Removes the <see cref="T:System.Data.Constraint" /> object at the specified index from the collection.</summary>
3413       <param name="index">The index of the <see cref="T:System.Data.Constraint" /> to remove.</param>
3414       <exception cref="T:System.IndexOutOfRangeException">The collection does not have a constraint at this index.</exception>
3415     </member>
3416     <member name="T:System.Data.ConstraintException">
3417       <summary>Represents the exception that is thrown when attempting an action that violates a constraint.</summary>
3418     </member>
3419     <member name="M:System.Data.ConstraintException.#ctor">
3420       <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class. This is the parameterless constructor.</summary>
3421     </member>
3422     <member name="M:System.Data.ConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3423       <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class using the specified serialization and stream context.</summary>
3424       <param name="info">The data necessary to serialize or deserialize an object.</param>
3425       <param name="context">Description of the source and destination of the specified serialized stream.</param>
3426     </member>
3427     <member name="M:System.Data.ConstraintException.#ctor(System.String)">
3428       <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class with the specified string.</summary>
3429       <param name="s">The string to display when the exception is thrown.</param>
3430     </member>
3431     <member name="M:System.Data.ConstraintException.#ctor(System.String,System.Exception)">
3432       <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class using the specified string and inner exception.</summary>
3433       <param name="message">The string to display when the exception is thrown.</param>
3434       <param name="innerException">Gets the <see langword="Exception" /> instance that caused the current exception.</param>
3435     </member>
3436     <member name="T:System.Data.DataColumn">
3437       <summary>Represents the schema of a column in a <see cref="T:System.Data.DataTable" />.</summary>
3438     </member>
3439     <member name="M:System.Data.DataColumn.#ctor">
3440       <summary>Initializes a new instance of a <see cref="T:System.Data.DataColumn" /> class as type string.</summary>
3441     </member>
3442     <member name="M:System.Data.DataColumn.#ctor(System.String)">
3443       <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class, as type string, using the specified column name.</summary>
3444       <param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
3445     </member>
3446     <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type)">
3447       <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified column name and data type.</summary>
3448       <param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
3449       <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
3450       <exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
3451     </member>
3452     <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String)">
3453       <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified name, data type, and expression.</summary>
3454       <param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
3455       <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
3456       <param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
3457       <exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
3458     </member>
3459     <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String,System.Data.MappingType)">
3460       <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified name, data type, expression, and value that determines whether the column is an attribute.</summary>
3461       <param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
3462       <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
3463       <param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
3464       <param name="type">One of the <see cref="T:System.Data.MappingType" /> values.</param>
3465       <exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
3466     </member>
3467     <member name="P:System.Data.DataColumn.AllowDBNull">
3468       <summary>Gets or sets a value that indicates whether null values are allowed in this column for rows that belong to the table.</summary>
3469       <returns>
3470         <see langword="true" /> if null values are allowed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
3471     </member>
3472     <member name="P:System.Data.DataColumn.AutoIncrement">
3473       <summary>Gets or sets a value that indicates whether the column automatically increments the value of the column for new rows added to the table.</summary>
3474       <returns>
3475         <see langword="true" /> if the value of the column increments automatically; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
3476       <exception cref="T:System.ArgumentException">The column is a computed column.</exception>
3477     </member>
3478     <member name="P:System.Data.DataColumn.AutoIncrementSeed">
3479       <summary>Gets or sets the starting value for a column that has its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to <see langword="true" />. The default is 0.</summary>
3480       <returns>The starting value for the <see cref="P:System.Data.DataColumn.AutoIncrement" /> feature.</returns>
3481     </member>
3482     <member name="P:System.Data.DataColumn.AutoIncrementStep">
3483       <summary>Gets or sets the increment used by a column with its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to <see langword="true" />.</summary>
3484       <returns>The number by which the value of the column is automatically incremented. The default is 1.</returns>
3485       <exception cref="T:System.ArgumentException">The value set is zero.</exception>
3486     </member>
3487     <member name="P:System.Data.DataColumn.Caption">
3488       <summary>Gets or sets the caption for the column.</summary>
3489       <returns>The caption of the column. If not set, returns the <see cref="P:System.Data.DataColumn.ColumnName" /> value.</returns>
3490     </member>
3491     <member name="M:System.Data.DataColumn.CheckNotAllowNull">
3492       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
3493     </member>
3494     <member name="M:System.Data.DataColumn.CheckUnique">
3495       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
3496     </member>
3497     <member name="P:System.Data.DataColumn.ColumnMapping">
3498       <summary>Gets or sets the <see cref="T:System.Data.MappingType" /> of the column.</summary>
3499       <returns>One of the <see cref="T:System.Data.MappingType" /> values.</returns>
3500     </member>
3501     <member name="P:System.Data.DataColumn.ColumnName">
3502       <summary>Gets or sets the name of the column in the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3503       <returns>The name of the column.</returns>
3504       <exception cref="T:System.ArgumentException">The property is set to <see langword="null" /> or an empty string and the column belongs to a collection.</exception>
3505       <exception cref="T:System.Data.DuplicateNameException">A column with the same name already exists in the collection. The name comparison is not case sensitive.</exception>
3506     </member>
3507     <member name="P:System.Data.DataColumn.DataType">
3508       <summary>Gets or sets the type of data stored in the column.</summary>
3509       <returns>A <see cref="T:System.Type" /> object that represents the column data type.</returns>
3510       <exception cref="T:System.ArgumentException">The column already has data stored.</exception>
3511     </member>
3512     <member name="P:System.Data.DataColumn.DateTimeMode">
3513       <summary>Gets or sets the <see langword="DateTimeMode" /> for the column.</summary>
3514       <returns>The <see cref="T:System.Data.DataSetDateTime" /> for the specified column.</returns>
3515     </member>
3516     <member name="P:System.Data.DataColumn.DefaultValue">
3517       <summary>Gets or sets the default value for the column when you are creating new rows.</summary>
3518       <returns>A value appropriate to the column's <see cref="P:System.Data.DataColumn.DataType" />.</returns>
3519       <exception cref="T:System.InvalidCastException">When you are adding a row, the default value is not an instance of the column's data type.</exception>
3520     </member>
3521     <member name="P:System.Data.DataColumn.Expression">
3522       <summary>Gets or sets the expression used to filter rows, calculate the values in a column, or create an aggregate column.</summary>
3523       <returns>An expression to calculate the value of a column, or create an aggregate column. The return type of an expression is determined by the <see cref="P:System.Data.DataColumn.DataType" /> of the column.</returns>
3524       <exception cref="T:System.ArgumentException">The <see cref="P:System.Data.DataColumn.AutoIncrement" /> or <see cref="P:System.Data.DataColumn.Unique" /> property is set to <see langword="true" />.</exception>
3525       <exception cref="T:System.FormatException">When you are using the CONVERT function, the expression evaluates to a string, but the string does not contain a representation that can be converted to the type parameter.</exception>
3526       <exception cref="T:System.InvalidCastException">When you are using the CONVERT function, the requested cast is not possible. See the Conversion function in the following section for detailed information about possible casts.</exception>
3527       <exception cref="T:System.ArgumentOutOfRangeException">When you use the SUBSTRING function, the start argument is out of range.
3528 -Or-
3529 When you use the SUBSTRING function, the length argument is out of range.</exception>
3530       <exception cref="T:System.Exception">When you use the LEN function or the TRIM function, the expression does not evaluate to a string. This includes expressions that evaluate to <see cref="T:System.Char" />.</exception>
3531     </member>
3532     <member name="P:System.Data.DataColumn.ExtendedProperties">
3533       <summary>Gets the collection of custom user information associated with a <see cref="T:System.Data.DataColumn" />.</summary>
3534       <returns>A <see cref="T:System.Data.PropertyCollection" /> of custom information.</returns>
3535     </member>
3536     <member name="P:System.Data.DataColumn.MaxLength">
3537       <summary>Gets or sets the maximum length of a text column.</summary>
3538       <returns>The maximum length of the column in characters. If the column has no maximum length, the value is -1 (default).</returns>
3539     </member>
3540     <member name="P:System.Data.DataColumn.Namespace">
3541       <summary>Gets or sets the namespace of the <see cref="T:System.Data.DataColumn" />.</summary>
3542       <returns>The namespace of the <see cref="T:System.Data.DataColumn" />.</returns>
3543       <exception cref="T:System.ArgumentException">The namespace already has data.</exception>
3544     </member>
3545     <member name="M:System.Data.DataColumn.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
3546       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
3547       <param name="pcevent">Parameter reference.</param>
3548     </member>
3549     <member name="P:System.Data.DataColumn.Ordinal">
3550       <summary>Gets the (zero-based) position of the column in the <see cref="T:System.Data.DataColumnCollection" /> collection.</summary>
3551       <returns>The position of the column. Gets -1 if the column is not a member of a collection.</returns>
3552     </member>
3553     <member name="P:System.Data.DataColumn.Prefix">
3554       <summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataTable" />.</summary>
3555       <returns>The XML prefix for the <see cref="T:System.Data.DataTable" /> namespace.</returns>
3556     </member>
3557     <member name="M:System.Data.DataColumn.RaisePropertyChanging(System.String)">
3558       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
3559       <param name="name">Parameter reference.</param>
3560     </member>
3561     <member name="P:System.Data.DataColumn.ReadOnly">
3562       <summary>Gets or sets a value that indicates whether the column allows for changes as soon as a row has been added to the table.</summary>
3563       <returns>
3564         <see langword="true" /> if the column is read only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
3565       <exception cref="T:System.ArgumentException">The property is set to <see langword="false" /> on a computed column.</exception>
3566     </member>
3567     <member name="M:System.Data.DataColumn.SetOrdinal(System.Int32)">
3568       <summary>Changes the ordinal or position of the <see cref="T:System.Data.DataColumn" /> to the specified ordinal or position.</summary>
3569       <param name="ordinal">The specified ordinal.</param>
3570     </member>
3571     <member name="P:System.Data.DataColumn.Table">
3572       <summary>Gets the <see cref="T:System.Data.DataTable" /> to which the column belongs to.</summary>
3573       <returns>The <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataColumn" /> belongs to.</returns>
3574     </member>
3575     <member name="M:System.Data.DataColumn.ToString">
3576       <summary>Gets the <see cref="P:System.Data.DataColumn.Expression" /> of the column, if one exists.</summary>
3577       <returns>The <see cref="P:System.Data.DataColumn.Expression" /> value, if the property is set; otherwise, the <see cref="P:System.Data.DataColumn.ColumnName" /> property.</returns>
3578     </member>
3579     <member name="P:System.Data.DataColumn.Unique">
3580       <summary>Gets or sets a value that indicates whether the values in each row of the column must be unique.</summary>
3581       <returns>
3582         <see langword="true" /> if the value must be unique; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
3583       <exception cref="T:System.ArgumentException">The column is a calculated column.</exception>
3584     </member>
3585     <member name="T:System.Data.DataColumnChangeEventArgs">
3586       <summary>Provides data for the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
3587     </member>
3588     <member name="M:System.Data.DataColumnChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataColumn,System.Object)">
3589       <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumnChangeEventArgs" /> class.</summary>
3590       <param name="row">The <see cref="T:System.Data.DataRow" /> of the column with the changing value.</param>
3591       <param name="column">The <see cref="T:System.Data.DataColumn" /> with the changing value.</param>
3592       <param name="value">The new value.</param>
3593     </member>
3594     <member name="P:System.Data.DataColumnChangeEventArgs.Column">
3595       <summary>Gets the <see cref="T:System.Data.DataColumn" /> with a changing value.</summary>
3596       <returns>The <see cref="T:System.Data.DataColumn" /> with a changing value.</returns>
3597     </member>
3598     <member name="P:System.Data.DataColumnChangeEventArgs.ProposedValue">
3599       <summary>Gets or sets the proposed new value for the column.</summary>
3600       <returns>The proposed value, of type <see cref="T:System.Object" />.</returns>
3601     </member>
3602     <member name="P:System.Data.DataColumnChangeEventArgs.Row">
3603       <summary>Gets the <see cref="T:System.Data.DataRow" /> of the column with a changing value.</summary>
3604       <returns>The <see cref="T:System.Data.DataRow" /> of the column with a changing value.</returns>
3605     </member>
3606     <member name="T:System.Data.DataColumnChangeEventHandler">
3607       <summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
3608       <param name="sender">The source of the event.</param>
3609       <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
3610     </member>
3611     <member name="T:System.Data.DataColumnCollection">
3612       <summary>Represents a collection of <see cref="T:System.Data.DataColumn" /> objects for a <see cref="T:System.Data.DataTable" />.</summary>
3613     </member>
3614     <member name="M:System.Data.DataColumnCollection.Add">
3615       <summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3616       <returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
3617     </member>
3618     <member name="M:System.Data.DataColumnCollection.Add(System.Data.DataColumn)">
3619       <summary>Creates and adds the specified <see cref="T:System.Data.DataColumn" /> object to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3620       <param name="column">The <see cref="T:System.Data.DataColumn" /> to add.</param>
3621       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is <see langword="null" />.</exception>
3622       <exception cref="T:System.ArgumentException">The column already belongs to this collection, or to another collection.</exception>
3623       <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
3624       <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
3625     </member>
3626     <member name="M:System.Data.DataColumnCollection.Add(System.String)">
3627       <summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3628       <param name="columnName">The name of the column.</param>
3629       <returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
3630       <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
3631     </member>
3632     <member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type)">
3633       <summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name and type to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3634       <param name="columnName">The <see cref="P:System.Data.DataColumn.ColumnName" /> to use when you create the column.</param>
3635       <param name="type">The <see cref="P:System.Data.DataColumn.DataType" /> of the new column.</param>
3636       <returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
3637       <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
3638       <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
3639     </member>
3640     <member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type,System.String)">
3641       <summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name, type, and expression to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
3642       <param name="columnName">The name to use when you create the column.</param>
3643       <param name="type">The <see cref="P:System.Data.DataColumn.DataType" /> of the new column.</param>
3644       <param name="expression">The expression to assign to the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
3645       <returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
3646       <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
3647       <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
3648     </member>
3649     <member name="M:System.Data.DataColumnCollection.AddRange(System.Data.DataColumn[])">
3650       <summary>Copies the elements of the specified <see cref="T:System.Data.DataColumn" /> array to the end of the collection.</summary>
3651       <param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to add to the collection.</param>
3652     </member>
3653     <member name="M:System.Data.DataColumnCollection.CanRemove(System.Data.DataColumn)">
3654       <summary>Checks whether a specific column can be removed from the collection.</summary>
3655       <param name="column">A <see cref="T:System.Data.DataColumn" /> in the collection.</param>
3656       <returns>
3657         <see langword="true" /> if the column can be removed. <see langword="false" /> if,
3658
3659 The <paramref name="column" /> parameter is <see langword="null" />.
3660
3661 The column does not belong to this collection.
3662
3663 The column is part of a relationship.
3664
3665 Another column's expression depends on this column.</returns>
3666       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is null.</exception>
3667       <exception cref="T:System.ArgumentException">The column does not belong to this collection.
3668 -or-
3669 The column is part of a relationship.
3670 -or-
3671 Another column's expression depends on this column.</exception>
3672     </member>
3673     <member name="M:System.Data.DataColumnCollection.Clear">
3674       <summary>Clears the collection of any columns.</summary>
3675     </member>
3676     <member name="E:System.Data.DataColumnCollection.CollectionChanged">
3677       <summary>Occurs when the columns collection changes, either by adding or removing a column.</summary>
3678     </member>
3679     <member name="M:System.Data.DataColumnCollection.Contains(System.String)">
3680       <summary>Checks whether the collection contains a column with the specified name.</summary>
3681       <param name="name">The <see cref="P:System.Data.DataColumn.ColumnName" /> of the column to look for.</param>
3682       <returns>
3683         <see langword="true" /> if a column exists with this name; otherwise, <see langword="false" />.</returns>
3684     </member>
3685     <member name="M:System.Data.DataColumnCollection.CopyTo(System.Data.DataColumn[],System.Int32)">
3686       <summary>Copies the entire collection into an existing array, starting at a specified index within the array.</summary>
3687       <param name="array">An array of <see cref="T:System.Data.DataColumn" /> objects to copy the collection into.</param>
3688       <param name="index">The index to start from.</param>
3689     </member>
3690     <member name="M:System.Data.DataColumnCollection.IndexOf(System.Data.DataColumn)">
3691       <summary>Gets the index of a column specified by name.</summary>
3692       <param name="column">The name of the column to return.</param>
3693       <returns>The index of the column specified by <paramref name="column" /> if it is found; otherwise, -1.</returns>
3694     </member>
3695     <member name="M:System.Data.DataColumnCollection.IndexOf(System.String)">
3696       <summary>Gets the index of the column with the specific name (the name is not case sensitive).</summary>
3697       <param name="columnName">The name of the column to find.</param>
3698       <returns>The zero-based index of the column with the specified name, or -1 if the column does not exist in the collection.</returns>
3699     </member>
3700     <member name="P:System.Data.DataColumnCollection.Item(System.Int32)">
3701       <summary>Gets the <see cref="T:System.Data.DataColumn" /> from the collection at the specified index.</summary>
3702       <param name="index">The zero-based index of the column to return.</param>
3703       <returns>The <see cref="T:System.Data.DataColumn" /> at the specified index.</returns>
3704       <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
3705     </member>
3706     <member name="P:System.Data.DataColumnCollection.Item(System.String)">
3707       <summary>Gets the <see cref="T:System.Data.DataColumn" /> from the collection with the specified name.</summary>
3708       <param name="name">The <see cref="P:System.Data.DataColumn.ColumnName" /> of the column to return.</param>
3709       <returns>The <see cref="T:System.Data.DataColumn" /> in the collection with the specified <see cref="P:System.Data.DataColumn.ColumnName" />; otherwise a null value if the <see cref="T:System.Data.DataColumn" /> does not exist.</returns>
3710     </member>
3711     <member name="M:System.Data.DataColumnCollection.Remove(System.Data.DataColumn)">
3712       <summary>Removes the specified <see cref="T:System.Data.DataColumn" /> object from the collection.</summary>
3713       <param name="column">The <see cref="T:System.Data.DataColumn" /> to remove.</param>
3714       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is <see langword="null" />.</exception>
3715       <exception cref="T:System.ArgumentException">The column does not belong to this collection.
3716 -Or-
3717 The column is part of a relationship.
3718 -Or-
3719 Another column's expression depends on this column.</exception>
3720     </member>
3721     <member name="M:System.Data.DataColumnCollection.Remove(System.String)">
3722       <summary>Removes the <see cref="T:System.Data.DataColumn" /> object that has the specified name from the collection.</summary>
3723       <param name="name">The name of the column to remove.</param>
3724       <exception cref="T:System.ArgumentException">The collection does not have a column with the specified name.</exception>
3725     </member>
3726     <member name="M:System.Data.DataColumnCollection.RemoveAt(System.Int32)">
3727       <summary>Removes the column at the specified index from the collection.</summary>
3728       <param name="index">The index of the column to remove.</param>
3729       <exception cref="T:System.ArgumentException">The collection does not have a column at the specified index.</exception>
3730     </member>
3731     <member name="T:System.Data.DataException">
3732       <summary>Represents the exception that is thrown when errors are generated using ADO.NET components.</summary>
3733     </member>
3734     <member name="M:System.Data.DataException.#ctor">
3735       <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class. This is the parameterless constructor.</summary>
3736     </member>
3737     <member name="M:System.Data.DataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3738       <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified serialization information and context.</summary>
3739       <param name="info">The data necessary to serialize or deserialize an object.</param>
3740       <param name="context">Description of the source and destination of the specified serialized stream.</param>
3741     </member>
3742     <member name="M:System.Data.DataException.#ctor(System.String)">
3743       <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified string.</summary>
3744       <param name="s">The string to display when the exception is thrown.</param>
3745     </member>
3746     <member name="M:System.Data.DataException.#ctor(System.String,System.Exception)">
3747       <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified string and inner exception.</summary>
3748       <param name="s">The string to display when the exception is thrown.</param>
3749       <param name="innerException">A reference to an inner exception.</param>
3750     </member>
3751     <member name="T:System.Data.DataReaderExtensions">
3752       <summary>Provides extension methods for <see cref="T:System.Data.Common.DbDataReader" />.</summary>
3753     </member>
3754     <member name="M:System.Data.DataReaderExtensions.GetBoolean(System.Data.Common.DbDataReader,System.String)">
3755       <summary>Gets the value of the specified column as a Boolean.</summary>
3756       <param name="reader">The data reader to get the column value from.</param>
3757       <param name="name">The name of the column.</param>
3758       <returns>The value of the specified column.</returns>
3759       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3760       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3761     </member>
3762     <member name="M:System.Data.DataReaderExtensions.GetByte(System.Data.Common.DbDataReader,System.String)">
3763       <summary>Gets the value of the specified column as a byte.</summary>
3764       <param name="reader">The data reader to get the column value from.</param>
3765       <param name="name">The name of the column.</param>
3766       <returns>The value of the specified column.</returns>
3767       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3768       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3769     </member>
3770     <member name="M:System.Data.DataReaderExtensions.GetBytes(System.Data.Common.DbDataReader,System.String,System.Int64,System.Byte[],System.Int32,System.Int32)">
3771       <summary>Reads a specified number of bytes from the specified column starting at a specified index and writes them to a buffer starting at a specified position in the buffer.</summary>
3772       <param name="reader">The data reader to get the column value from.</param>
3773       <param name="name">The name of the column.</param>
3774       <param name="dataOffset">The index within the row from which to begin the read operation.</param>
3775       <param name="buffer">The buffer into which to copy the data.</param>
3776       <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
3777       <param name="length">The maximum number of characters to read.</param>
3778       <returns>The actual number of bytes read.</returns>
3779       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3780       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3781     </member>
3782     <member name="M:System.Data.DataReaderExtensions.GetChar(System.Data.Common.DbDataReader,System.String)">
3783       <summary>Gets the value of the specified column as a single character.</summary>
3784       <param name="reader">The data reader to get the column value from.</param>
3785       <param name="name">The name of the column.</param>
3786       <returns>The value of the specified column.</returns>
3787       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3788       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3789     </member>
3790     <member name="M:System.Data.DataReaderExtensions.GetChars(System.Data.Common.DbDataReader,System.String,System.Int64,System.Char[],System.Int32,System.Int32)">
3791       <summary>Reads a specified number of characters from a specified column starting at a specified index, and writes them to a buffer starting at a specified position.</summary>
3792       <param name="reader">The data reader to get the column value from.</param>
3793       <param name="name">The name of the column.</param>
3794       <param name="dataOffset">The index within the row from which to begin the read operation.</param>
3795       <param name="buffer">The buffer into which to copy the data.</param>
3796       <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
3797       <param name="length">The maximum number of characters to read.</param>
3798       <returns>The actual number of characters read.</returns>
3799       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3800     </member>
3801     <member name="M:System.Data.DataReaderExtensions.GetData(System.Data.Common.DbDataReader,System.String)">
3802       <summary>Returns a nested data reader for the requested column.</summary>
3803       <param name="reader">The data reader to get the column value from.</param>
3804       <param name="name">The name of the column.</param>
3805       <returns>A data reader.</returns>
3806       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3807     </member>
3808     <member name="M:System.Data.DataReaderExtensions.GetDataTypeName(System.Data.Common.DbDataReader,System.String)">
3809       <summary>Gets name of the data type of the specified column.</summary>
3810       <param name="reader">The data reader to get the column type name from.</param>
3811       <param name="name">The name of the column.</param>
3812       <returns>The name of the data type.</returns>
3813       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3814     </member>
3815     <member name="M:System.Data.DataReaderExtensions.GetDateTime(System.Data.Common.DbDataReader,System.String)">
3816       <summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
3817       <param name="reader">The data reader to get the column value from.</param>
3818       <param name="name">The name of the column.</param>
3819       <returns>The value of the specified column.</returns>
3820       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3821       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3822     </member>
3823     <member name="M:System.Data.DataReaderExtensions.GetDecimal(System.Data.Common.DbDataReader,System.String)">
3824       <summary>Gets the value of the specified column as a <see cref="T:System.Decimal" />.</summary>
3825       <param name="reader">The data reader to get the column value from.</param>
3826       <param name="name">The name of the column.</param>
3827       <returns>The value of the specified column.</returns>
3828       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3829       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3830     </member>
3831     <member name="M:System.Data.DataReaderExtensions.GetDouble(System.Data.Common.DbDataReader,System.String)">
3832       <summary>Gets the value of the specified column as a double-precision floating point number.</summary>
3833       <param name="reader">The data reader to get the column value from.</param>
3834       <param name="name">The name of the column.</param>
3835       <returns>The value of the specified column.</returns>
3836       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3837       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3838     </member>
3839     <member name="M:System.Data.DataReaderExtensions.GetFieldType(System.Data.Common.DbDataReader,System.String)">
3840       <summary>Gets the data type of the specified column.</summary>
3841       <param name="reader">The data reader to get the field type from.</param>
3842       <param name="name">The name of the column.</param>
3843       <returns>The data type of the specified column.</returns>
3844       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3845       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3846     </member>
3847     <member name="M:System.Data.DataReaderExtensions.GetFieldValue``1(System.Data.Common.DbDataReader,System.String)">
3848       <summary>Gets the value of the specified column as the requested type.</summary>
3849       <param name="reader">The data reader to get the column value from.</param>
3850       <param name="name">The name of the column.</param>
3851       <typeparam name="T">The type of the value to be returned.</typeparam>
3852       <returns>The value of the specified column.</returns>
3853       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during data retrieval.
3854 -or-
3855 The data reader was closed during data retrieval.
3856 -or-
3857 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or it returned <see langword="false" />).
3858 -or-
3859 The reader tried to read a previously-read column in sequential mode.
3860 -or-
3861 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
3862       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3863       <exception cref="T:System.InvalidCastException">The value returned by the database doesn't match or cannot be cast to <typeparamref name="T" />.</exception>
3864     </member>
3865     <member name="M:System.Data.DataReaderExtensions.GetFieldValueAsync``1(System.Data.Common.DbDataReader,System.String,System.Threading.CancellationToken)">
3866       <summary>Asynchronously gets the value of the specified column as the requested type.</summary>
3867       <param name="reader">The data reader to get the column value from.</param>
3868       <param name="name">The name of the column.</param>
3869       <param name="cancellationToken">An optional token to cancel the asynchronous operation.</param>
3870       <typeparam name="T">The type of the value to be returned.</typeparam>
3871       <returns>A task whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> contains the value of the specified column.</returns>
3872       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during data retrieval.
3873 -or-
3874 The data reader was closed during the data retrieval.
3875 -or-
3876 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or it returned <see langword="false" />).
3877 -or-
3878 Tried to read a previously-read column in sequential mode.
3879 -or-
3880 There was an asynchronous operation in progress. This applies to all Get_*_ methods when running in sequential mode, as they could be called while reading a stream.</exception>
3881       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3882       <exception cref="T:System.InvalidCastException">The value returned by the database doesn't match or cannot be cast to <typeparamref name="T" />.</exception>
3883     </member>
3884     <member name="M:System.Data.DataReaderExtensions.GetFloat(System.Data.Common.DbDataReader,System.String)">
3885       <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
3886       <param name="reader">The data reader to get the column value from.</param>
3887       <param name="name">The name of the column.</param>
3888       <returns>The value of the specified column.</returns>
3889       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3890       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3891     </member>
3892     <member name="M:System.Data.DataReaderExtensions.GetGuid(System.Data.Common.DbDataReader,System.String)">
3893       <summary>Gets the value of the specified column as a globally unique identifier (GUID).</summary>
3894       <param name="reader">The data reader to get the column value from.</param>
3895       <param name="name">The name of the column.</param>
3896       <returns>The value of the specified column.</returns>
3897       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3898       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3899     </member>
3900     <member name="M:System.Data.DataReaderExtensions.GetInt16(System.Data.Common.DbDataReader,System.String)">
3901       <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
3902       <param name="reader">The data reader to get the column value from.</param>
3903       <param name="name">The name of the column.</param>
3904       <returns>The value of the specified column.</returns>
3905       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3906       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3907     </member>
3908     <member name="M:System.Data.DataReaderExtensions.GetInt32(System.Data.Common.DbDataReader,System.String)">
3909       <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
3910       <param name="reader">The data reader to get the column value from.</param>
3911       <param name="name">The name of the column.</param>
3912       <returns>The value of the specified column.</returns>
3913       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3914       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3915     </member>
3916     <member name="M:System.Data.DataReaderExtensions.GetInt64(System.Data.Common.DbDataReader,System.String)">
3917       <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
3918       <param name="reader">The data reader to get the column value from.</param>
3919       <param name="name">The name of the column.</param>
3920       <returns>The value of the specified column.</returns>
3921       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3922       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3923     </member>
3924     <member name="M:System.Data.DataReaderExtensions.GetProviderSpecificFieldType(System.Data.Common.DbDataReader,System.String)">
3925       <summary>Gets the provider-specific type of the specified column.</summary>
3926       <param name="reader">The data reader to get the column value from.</param>
3927       <param name="name">The name of the column.</param>
3928       <returns>A provider-specific .NET type.</returns>
3929       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3930     </member>
3931     <member name="M:System.Data.DataReaderExtensions.GetProviderSpecificValue(System.Data.Common.DbDataReader,System.String)">
3932       <summary>Gets the value of the specified column as an instance of a provider-specific type.</summary>
3933       <param name="reader">The data reader to get the column value from.</param>
3934       <param name="name">The name of the column.</param>
3935       <returns>The value of the specified column.</returns>
3936       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3937       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3938     </member>
3939     <member name="M:System.Data.DataReaderExtensions.GetStream(System.Data.Common.DbDataReader,System.String)">
3940       <summary>Gets a stream to retrieve data from the specified column.</summary>
3941       <param name="reader">The data reader to get the column value from.</param>
3942       <param name="name">The name of the column.</param>
3943       <returns>A stream.</returns>
3944       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
3945 -or-
3946 The data reader is closed during the data retrieval.
3947 -or-
3948 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
3949 -or-
3950 The data reader tried to read a previously-read column in sequential mode.
3951 -or-
3952 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
3953       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3954       <exception cref="T:System.InvalidCastException">The specified column isn't a binary type that supports reading with a <see cref="T:System.IO.Stream" />.</exception>
3955     </member>
3956     <member name="M:System.Data.DataReaderExtensions.GetString(System.Data.Common.DbDataReader,System.String)">
3957       <summary>Gets the value of the specified column as an instance of <see cref="T:System.String" />.</summary>
3958       <param name="reader">The data reader to get the column value from.</param>
3959       <param name="name">The name of the column.</param>
3960       <returns>The value of the specified column.</returns>
3961       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3962       <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
3963     </member>
3964     <member name="M:System.Data.DataReaderExtensions.GetTextReader(System.Data.Common.DbDataReader,System.String)">
3965       <summary>Gets a text reader to retrieve data from the column.</summary>
3966       <param name="reader">The data reader to get the column value from.</param>
3967       <param name="name">The name of the column.</param>
3968       <returns>A text reader.</returns>
3969       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
3970 -or-
3971 The data reader is closed during the data retrieval.
3972 -or-
3973 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
3974 -or-
3975 The data reader tried to read a previously-read column in sequential mode.
3976 -or-
3977 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
3978       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3979       <exception cref="T:System.InvalidCastException">The specified column isn't a text type that supports reading with a <see cref="T:System.IO.TextReader" />.</exception>
3980     </member>
3981     <member name="M:System.Data.DataReaderExtensions.GetValue(System.Data.Common.DbDataReader,System.String)">
3982       <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
3983       <param name="reader">The data reader to get the column value from.</param>
3984       <param name="name">The name of the column.</param>
3985       <returns>The value of the specified column.</returns>
3986       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3987     </member>
3988     <member name="M:System.Data.DataReaderExtensions.IsDBNull(System.Data.Common.DbDataReader,System.String)">
3989       <summary>Gets a value that indicates whether the column contains nonexistent or missing values.</summary>
3990       <param name="reader">The data reader to get the column value from.</param>
3991       <param name="name">The name of the column.</param>
3992       <returns>
3993         <see langword="true" /> if the specified column is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
3994       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
3995     </member>
3996     <member name="M:System.Data.DataReaderExtensions.IsDBNullAsync(System.Data.Common.DbDataReader,System.String,System.Threading.CancellationToken)">
3997       <summary>Asynchronously gets a value that indicates whether the column contains non-existent or missing values.</summary>
3998       <param name="reader">The data reader to get the column value from.</param>
3999       <param name="name">The name of the column.</param>
4000       <param name="cancellationToken">An optional token to cancel the asynchronous operation.</param>
4001       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> whose <see cref="P:System.Threading.Tasks.Task`1.Result" /> property is <see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> or <see langword="false" /> if it is not.</returns>
4002       <exception cref="T:System.InvalidOperationException">The connection was dropped or closed during the data retrieval.
4003 -or-
4004 The data reader is closed during the data retrieval.
4005 -or-
4006 There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
4007 -or-
4008 Trying to read a previously read column in sequential mode.
4009 -or-
4010 There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
4011       <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
4012     </member>
4013     <member name="T:System.Data.DataRelation">
4014       <summary>Represents a parent/child relationship between two <see cref="T:System.Data.DataTable" /> objects.</summary>
4015     </member>
4016     <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
4017       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified <see cref="T:System.Data.DataRelation" /> name, and parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
4018       <param name="relationName">The name of the <see cref="T:System.Data.DataRelation" />. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4019       <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the relationship.</param>
4020       <param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the relationship.</param>
4021       <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
4022       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
4023 -Or-
4024 The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
4025     </member>
4026     <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
4027       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified name, parent and child <see cref="T:System.Data.DataColumn" /> objects, and a value that indicates whether to create constraints.</summary>
4028       <param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4029       <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the relation.</param>
4030       <param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the relation.</param>
4031       <param name="createConstraints">A value that indicates whether constraints are created. <see langword="true" />, if constraints are created. Otherwise, <see langword="false" />.</param>
4032       <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
4033       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
4034 -Or-
4035 The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
4036     </member>
4037     <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
4038       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified <see cref="T:System.Data.DataRelation" /> name and matched arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
4039       <param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4040       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
4041       <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> objects.</param>
4042       <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
4043       <exception cref="T:System.Data.InvalidConstraintException">The <see cref="T:System.Data.DataColumn" /> objects have different data types
4044 -Or-
4045 One or both of the arrays are not composed of distinct columns from the same table.
4046 -Or-
4047 The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
4048     </member>
4049     <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
4050       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified name, matched arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects, and value that indicates whether to create constraints.</summary>
4051       <param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4052       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
4053       <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> objects.</param>
4054       <param name="createConstraints">A value that indicates whether to create constraints. <see langword="true" />, if constraints are created. Otherwise, <see langword="false" />.</param>
4055       <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects is <see langword="null" />.</exception>
4056       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
4057 -Or-
4058 The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
4059     </member>
4060     <member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
4061       <summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
4062       <param name="relationName">The name of the <see cref="T:System.Data.DataRelation" />. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4063       <param name="parentTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the parent table of the relation.</param>
4064       <param name="parentTableNamespace">The name of the parent table namespace.</param>
4065       <param name="childTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</param>
4066       <param name="childTableNamespace">The name of the child table namespace.</param>
4067       <param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the parent <see cref="T:System.Data.DataTable" /> of the relation.</param>
4068       <param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the child <see cref="T:System.Data.DataTable" /> of the relation.</param>
4069       <param name="nested">A value that indicates whether relationships are nested.</param>
4070     </member>
4071     <member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
4072       <summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
4073       <param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
4074       <param name="parentTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the parent table of the relation.</param>
4075       <param name="childTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</param>
4076       <param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the parent <see cref="T:System.Data.DataTable" /> of the relation.</param>
4077       <param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the child <see cref="T:System.Data.DataTable" /> of the relation.</param>
4078       <param name="nested">A value that indicates whether relationships are nested.</param>
4079     </member>
4080     <member name="M:System.Data.DataRelation.CheckStateForProperty">
4081       <summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
4082       <exception cref="T:System.Data.DataException">The parent and child tables belong to different <see cref="T:System.Data.DataSet" /> objects.
4083 -Or-
4084 One or more pairs of parent and child <see cref="T:System.Data.DataColumn" /> objects have mismatched data types.
4085 -Or-
4086 The parent and child <see cref="T:System.Data.DataColumn" /> objects are identical.</exception>
4087     </member>
4088     <member name="P:System.Data.DataRelation.ChildColumns">
4089       <summary>Gets the child <see cref="T:System.Data.DataColumn" /> objects of this relation.</summary>
4090       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
4091     </member>
4092     <member name="P:System.Data.DataRelation.ChildKeyConstraint">
4093       <summary>Gets the <see cref="T:System.Data.ForeignKeyConstraint" /> for the relation.</summary>
4094       <returns>A <see langword="ForeignKeyConstraint" />.</returns>
4095     </member>
4096     <member name="P:System.Data.DataRelation.ChildTable">
4097       <summary>Gets the child table of this relation.</summary>
4098       <returns>A <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</returns>
4099     </member>
4100     <member name="P:System.Data.DataRelation.DataSet">
4101       <summary>Gets the <see cref="T:System.Data.DataSet" /> to which the <see cref="T:System.Data.DataRelation" /> belongs.</summary>
4102       <returns>A <see cref="T:System.Data.DataSet" /> to which the <see cref="T:System.Data.DataRelation" /> belongs.</returns>
4103     </member>
4104     <member name="P:System.Data.DataRelation.ExtendedProperties">
4105       <summary>Gets the collection that stores customized properties.</summary>
4106       <returns>A <see cref="T:System.Data.PropertyCollection" /> that contains customized properties.</returns>
4107     </member>
4108     <member name="P:System.Data.DataRelation.Nested">
4109       <summary>Gets or sets a value that indicates whether <see cref="T:System.Data.DataRelation" /> objects are nested.</summary>
4110       <returns>
4111         <see langword="true" />, if <see cref="T:System.Data.DataRelation" /> objects are nested; otherwise, <see langword="false" />.</returns>
4112     </member>
4113     <member name="M:System.Data.DataRelation.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
4114       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
4115       <param name="pcevent">Parameter reference.</param>
4116     </member>
4117     <member name="P:System.Data.DataRelation.ParentColumns">
4118       <summary>Gets an array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of this <see cref="T:System.Data.DataRelation" />.</summary>
4119       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of this <see cref="T:System.Data.DataRelation" />.</returns>
4120     </member>
4121     <member name="P:System.Data.DataRelation.ParentKeyConstraint">
4122       <summary>Gets the <see cref="T:System.Data.UniqueConstraint" /> that guarantees that values in the parent column of a <see cref="T:System.Data.DataRelation" /> are unique.</summary>
4123       <returns>A <see cref="T:System.Data.UniqueConstraint" /> that makes sure that values in a parent column are unique.</returns>
4124     </member>
4125     <member name="P:System.Data.DataRelation.ParentTable">
4126       <summary>Gets the parent <see cref="T:System.Data.DataTable" /> of this <see cref="T:System.Data.DataRelation" />.</summary>
4127       <returns>A <see cref="T:System.Data.DataTable" /> that is the parent table of this relation.</returns>
4128     </member>
4129     <member name="M:System.Data.DataRelation.RaisePropertyChanging(System.String)">
4130       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
4131       <param name="name">Parameter reference.</param>
4132     </member>
4133     <member name="P:System.Data.DataRelation.RelationName">
4134       <summary>Gets or sets the name used to retrieve a <see cref="T:System.Data.DataRelation" /> from the <see cref="T:System.Data.DataRelationCollection" />.</summary>
4135       <returns>The name of the a <see cref="T:System.Data.DataRelation" />.</returns>
4136       <exception cref="T:System.ArgumentException">
4137         <see langword="null" /> or empty string ("") was passed into a <see cref="T:System.Data.DataColumn" /> that is a <see cref="T:System.Data.DataRelation" />.</exception>
4138       <exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.DataRelation" /> belongs to a collection that already contains a <see cref="T:System.Data.DataRelation" /> with the same name.</exception>
4139     </member>
4140     <member name="M:System.Data.DataRelation.ToString">
4141       <summary>Gets the <see cref="P:System.Data.DataRelation.RelationName" />, if one exists.</summary>
4142       <returns>The value of the <see cref="P:System.Data.DataRelation.RelationName" /> property.</returns>
4143     </member>
4144     <member name="T:System.Data.DataRelationCollection">
4145       <summary>Represents the collection of <see cref="T:System.Data.DataRelation" /> objects for this <see cref="T:System.Data.DataSet" />.</summary>
4146     </member>
4147     <member name="M:System.Data.DataRelationCollection.#ctor">
4148       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelationCollection" /> class.</summary>
4149     </member>
4150     <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn,System.Data.DataColumn)">
4151       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with a specified parent and child column, and adds it to the collection.</summary>
4152       <param name="parentColumn">The parent column of the relation.</param>
4153       <param name="childColumn">The child column of the relation.</param>
4154       <returns>The created relation.</returns>
4155     </member>
4156     <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn[],System.Data.DataColumn[])">
4157       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified parent and child columns, and adds it to the collection.</summary>
4158       <param name="parentColumns">The parent columns of the relation.</param>
4159       <param name="childColumns">The child columns of the relation.</param>
4160       <returns>The created relation.</returns>
4161       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> argument is a null value.</exception>
4162       <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
4163       <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
4164       <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
4165     </member>
4166     <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataRelation)">
4167       <summary>Adds a <see cref="T:System.Data.DataRelation" /> to the <see cref="T:System.Data.DataRelationCollection" />.</summary>
4168       <param name="relation">The <see langword="DataRelation" /> to add to the collection.</param>
4169       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> parameter is a null value.</exception>
4170       <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
4171       <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the specified name. (The comparison is not case sensitive.)</exception>
4172       <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
4173     </member>
4174     <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
4175       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, and parent and child columns, and adds it to the collection.</summary>
4176       <param name="name">The name of the relation.</param>
4177       <param name="parentColumn">The parent column of the relation.</param>
4178       <param name="childColumn">The child column of the relation.</param>
4179       <returns>The created relation.</returns>
4180     </member>
4181     <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
4182       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, parent and child columns, with optional constraints according to the value of the <paramref name="createConstraints" /> parameter, and adds it to the collection.</summary>
4183       <param name="name">The name of the relation.</param>
4184       <param name="parentColumn">The parent column of the relation.</param>
4185       <param name="childColumn">The child column of the relation.</param>
4186       <param name="createConstraints">
4187         <see langword="true" /> to create constraints; otherwise <see langword="false" />. (The default is <see langword="true" />).</param>
4188       <returns>The created relation.</returns>
4189     </member>
4190     <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
4191       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name and arrays of parent and child columns, and adds it to the collection.</summary>
4192       <param name="name">The name of the <see langword="DataRelation" /> to create.</param>
4193       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
4194       <param name="childColumns">An array of child <see langword="DataColumn" /> objects.</param>
4195       <returns>The created <see langword="DataRelation" />.</returns>
4196       <exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
4197       <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
4198       <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
4199       <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
4200     </member>
4201     <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
4202       <summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, arrays of parent and child columns, and value specifying whether to create a constraint, and adds it to the collection.</summary>
4203       <param name="name">The name of the <see langword="DataRelation" /> to create.</param>
4204       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
4205       <param name="childColumns">An array of child <see langword="DataColumn" /> objects.</param>
4206       <param name="createConstraints">
4207         <see langword="true" /> to create a constraint; otherwise <see langword="false" />.</param>
4208       <returns>The created relation.</returns>
4209       <exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
4210       <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
4211       <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
4212       <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
4213     </member>
4214     <member name="M:System.Data.DataRelationCollection.AddCore(System.Data.DataRelation)">
4215       <summary>Performs verification on the table.</summary>
4216       <param name="relation">The relation to check.</param>
4217       <exception cref="T:System.ArgumentNullException">The relation is null.</exception>
4218       <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
4219       <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
4220     </member>
4221     <member name="M:System.Data.DataRelationCollection.AddRange(System.Data.DataRelation[])">
4222       <summary>Copies the elements of the specified <see cref="T:System.Data.DataRelation" /> array to the end of the collection.</summary>
4223       <param name="relations">The array of <see cref="T:System.Data.DataRelation" /> objects to add to the collection.</param>
4224     </member>
4225     <member name="M:System.Data.DataRelationCollection.CanRemove(System.Data.DataRelation)">
4226       <summary>Verifies whether the specified <see cref="T:System.Data.DataRelation" /> can be removed from the collection.</summary>
4227       <param name="relation">The relation to perform the check against.</param>
4228       <returns>
4229         <see langword="true" /> if the <see cref="T:System.Data.DataRelation" /> can be removed; otherwise, <see langword="false" />.</returns>
4230     </member>
4231     <member name="M:System.Data.DataRelationCollection.Clear">
4232       <summary>Clears the collection of any relations.</summary>
4233     </member>
4234     <member name="E:System.Data.DataRelationCollection.CollectionChanged">
4235       <summary>Occurs when the collection has changed.</summary>
4236     </member>
4237     <member name="M:System.Data.DataRelationCollection.Contains(System.String)">
4238       <summary>Verifies whether a <see cref="T:System.Data.DataRelation" /> with the specific name (case insensitive) exists in the collection.</summary>
4239       <param name="name">The name of the relation to find.</param>
4240       <returns>
4241         <see langword="true" />, if a relation with the specified name exists; otherwise <see langword="false" />.</returns>
4242     </member>
4243     <member name="M:System.Data.DataRelationCollection.CopyTo(System.Data.DataRelation[],System.Int32)">
4244       <summary>Copies the collection of <see cref="T:System.Data.DataRelation" /> objects starting at the specified index.</summary>
4245       <param name="array">The array of <see cref="T:System.Data.DataRelation" /> objects to copy the collection to.</param>
4246       <param name="index">The index to start from.</param>
4247     </member>
4248     <member name="M:System.Data.DataRelationCollection.GetDataSet">
4249       <summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
4250       <returns>The referenced DataSet.</returns>
4251     </member>
4252     <member name="M:System.Data.DataRelationCollection.IndexOf(System.Data.DataRelation)">
4253       <summary>Gets the index of the specified <see cref="T:System.Data.DataRelation" /> object.</summary>
4254       <param name="relation">The relation to search for.</param>
4255       <returns>The 0-based index of the relation, or -1 if the relation is not found in the collection.</returns>
4256     </member>
4257     <member name="M:System.Data.DataRelationCollection.IndexOf(System.String)">
4258       <summary>Gets the index of the <see cref="T:System.Data.DataRelation" /> specified by name.</summary>
4259       <param name="relationName">The name of the relation to find.</param>
4260       <returns>The zero-based index of the relation with the specified name, or -1 if the relation does not exist in the collection.</returns>
4261     </member>
4262     <member name="P:System.Data.DataRelationCollection.Item(System.Int32)">
4263       <summary>Gets the <see cref="T:System.Data.DataRelation" /> object at the specified index.</summary>
4264       <param name="index">The zero-based index to find.</param>
4265       <returns>The <see cref="T:System.Data.DataRelation" />, or a null value if the specified <see cref="T:System.Data.DataRelation" /> does not exist.</returns>
4266       <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
4267     </member>
4268     <member name="P:System.Data.DataRelationCollection.Item(System.String)">
4269       <summary>Gets the <see cref="T:System.Data.DataRelation" /> object specified by name.</summary>
4270       <param name="name">The name of the relation to find.</param>
4271       <returns>The named <see cref="T:System.Data.DataRelation" />, or a null value if the specified <see cref="T:System.Data.DataRelation" /> does not exist.</returns>
4272     </member>
4273     <member name="M:System.Data.DataRelationCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
4274       <summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event.</summary>
4275       <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
4276     </member>
4277     <member name="M:System.Data.DataRelationCollection.OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)">
4278       <summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event.</summary>
4279       <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
4280     </member>
4281     <member name="M:System.Data.DataRelationCollection.Remove(System.Data.DataRelation)">
4282       <summary>Removes the specified relation from the collection.</summary>
4283       <param name="relation">The relation to remove.</param>
4284       <exception cref="T:System.ArgumentNullException">The relation is a null value.</exception>
4285       <exception cref="T:System.ArgumentException">The relation does not belong to the collection.</exception>
4286     </member>
4287     <member name="M:System.Data.DataRelationCollection.Remove(System.String)">
4288       <summary>Removes the relation with the specified name from the collection.</summary>
4289       <param name="name">The name of the relation to remove.</param>
4290       <exception cref="T:System.IndexOutOfRangeException">The collection does not have a relation with the specified name.</exception>
4291     </member>
4292     <member name="M:System.Data.DataRelationCollection.RemoveAt(System.Int32)">
4293       <summary>Removes the relation at the specified index from the collection.</summary>
4294       <param name="index">The index of the relation to remove.</param>
4295       <exception cref="T:System.ArgumentException">The collection does not have a relation at the specified index.</exception>
4296     </member>
4297     <member name="M:System.Data.DataRelationCollection.RemoveCore(System.Data.DataRelation)">
4298       <summary>Performs a verification on the specified <see cref="T:System.Data.DataRelation" /> object.</summary>
4299       <param name="relation">The <see langword="DataRelation" /> object to verify.</param>
4300       <exception cref="T:System.ArgumentNullException">The collection does not have a relation at the specified index.</exception>
4301       <exception cref="T:System.ArgumentException">The specified relation does not belong to this collection, or it belongs to another collection.</exception>
4302     </member>
4303     <member name="T:System.Data.DataRow">
4304       <summary>Represents a row of data in a <see cref="T:System.Data.DataTable" />.</summary>
4305     </member>
4306     <member name="M:System.Data.DataRow.#ctor(System.Data.DataRowBuilder)">
4307       <summary>Initializes a new instance of the DataRow. Constructs a row from the builder. Only for internal usage.</summary>
4308       <param name="builder">builder</param>
4309     </member>
4310     <member name="M:System.Data.DataRow.AcceptChanges">
4311       <summary>Commits all the changes made to this row since the last time <see cref="M:System.Data.DataRow.AcceptChanges" /> was called.</summary>
4312       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4313     </member>
4314     <member name="M:System.Data.DataRow.BeginEdit">
4315       <summary>Starts an edit operation on a <see cref="T:System.Data.DataRow" /> object.</summary>
4316       <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
4317       <exception cref="T:System.Data.DeletedRowInaccessibleException">The method was called upon a deleted row.</exception>
4318     </member>
4319     <member name="M:System.Data.DataRow.CancelEdit">
4320       <summary>Cancels the current edit on the row.</summary>
4321       <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
4322     </member>
4323     <member name="M:System.Data.DataRow.ClearErrors">
4324       <summary>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)" />.</summary>
4325     </member>
4326     <member name="M:System.Data.DataRow.Delete">
4327       <summary>Deletes the <see cref="T:System.Data.DataRow" />.</summary>
4328       <exception cref="T:System.Data.DeletedRowInaccessibleException">The <see cref="T:System.Data.DataRow" /> has already been deleted.</exception>
4329     </member>
4330     <member name="M:System.Data.DataRow.EndEdit">
4331       <summary>Ends the edit occurring on the row.</summary>
4332       <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
4333       <exception cref="T:System.Data.ConstraintException">The edit broke a constraint.</exception>
4334       <exception cref="T:System.Data.ReadOnlyException">The row belongs to the table and the edit tried to change the value of a read-only column.</exception>
4335       <exception cref="T:System.Data.NoNullAllowedException">The edit tried to put a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
4336     </member>
4337     <member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation)">
4338       <summary>Gets the child rows of this <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
4339       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4340       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4341       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4342       <exception cref="T:System.ArgumentNullException">The relation is <see langword="null" />.</exception>
4343       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4344       <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
4345     </member>
4346     <member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation,System.Data.DataRowVersion)">
4347       <summary>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" />.</summary>
4348       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4349       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4350       <returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
4351       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4352       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
4353       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4354       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
4355     </member>
4356     <member name="M:System.Data.DataRow.GetChildRows(System.String)">
4357       <summary>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" />.</summary>
4358       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use.</param>
4359       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4360       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4361       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4362     </member>
4363     <member name="M:System.Data.DataRow.GetChildRows(System.String,System.Data.DataRowVersion)">
4364       <summary>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" />.</summary>
4365       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use.</param>
4366       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4367       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4368       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4369       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
4370       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4371       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
4372     </member>
4373     <member name="M:System.Data.DataRow.GetColumnError(System.Data.DataColumn)">
4374       <summary>Gets the error description of the specified <see cref="T:System.Data.DataColumn" />.</summary>
4375       <param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
4376       <returns>The text of the error description.</returns>
4377     </member>
4378     <member name="M:System.Data.DataRow.GetColumnError(System.Int32)">
4379       <summary>Gets the error description for the column specified by index.</summary>
4380       <param name="columnIndex">The zero-based index of the column.</param>
4381       <returns>The text of the error description.</returns>
4382       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
4383     </member>
4384     <member name="M:System.Data.DataRow.GetColumnError(System.String)">
4385       <summary>Gets the error description for a column, specified by name.</summary>
4386       <param name="columnName">The name of the column.</param>
4387       <returns>The text of the error description.</returns>
4388     </member>
4389     <member name="M:System.Data.DataRow.GetColumnsInError">
4390       <summary>Gets an array of columns that have errors.</summary>
4391       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects that contain errors.</returns>
4392     </member>
4393     <member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation)">
4394       <summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
4395       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4396       <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
4397       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> does not belong to the <see cref="T:System.Data.DataTable" />.
4398 -or-
4399 The row is <see langword="null" />.</exception>
4400       <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
4401       <exception cref="T:System.Data.InvalidConstraintException">This row does not belong to the child table of the <see cref="T:System.Data.DataRelation" /> object.</exception>
4402       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
4403     </member>
4404     <member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation,System.Data.DataRowVersion)">
4405       <summary>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" />.</summary>
4406       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4407       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
4408       <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
4409       <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.
4410 -or-
4411 The <paramref name="relation" /> does not belong to this table's parent relations.</exception>
4412       <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
4413       <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
4414       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
4415       <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
4416     </member>
4417     <member name="M:System.Data.DataRow.GetParentRow(System.String)">
4418       <summary>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" />.</summary>
4419       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
4420       <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
4421       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4422       <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
4423       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4424     </member>
4425     <member name="M:System.Data.DataRow.GetParentRow(System.String,System.Data.DataRowVersion)">
4426       <summary>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" />.</summary>
4427       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
4428       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
4429       <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
4430       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4431       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
4432       <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
4433       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4434       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
4435     </member>
4436     <member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation)">
4437       <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
4438       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4439       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4440       <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
4441       <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
4442       <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
4443       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
4444     </member>
4445     <member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation,System.Data.DataRowVersion)">
4446       <summary>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" />.</summary>
4447       <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
4448       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
4449       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4450       <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
4451       <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
4452       <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
4453       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
4454       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
4455     </member>
4456     <member name="M:System.Data.DataRow.GetParentRows(System.String)">
4457       <summary>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" />.</summary>
4458       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
4459       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4460       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4461       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4462     </member>
4463     <member name="M:System.Data.DataRow.GetParentRows(System.String,System.Data.DataRowVersion)">
4464       <summary>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" />.</summary>
4465       <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
4466       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4467       <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
4468       <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
4469       <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
4470       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4471       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
4472     </member>
4473     <member name="P:System.Data.DataRow.HasErrors">
4474       <summary>Gets a value that indicates whether there are errors in a row.</summary>
4475       <returns>
4476         <see langword="true" /> if the row contains an error; otherwise, <see langword="false" />.</returns>
4477     </member>
4478     <member name="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)">
4479       <summary>Gets a value that indicates whether a specified version exists.</summary>
4480       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version.</param>
4481       <returns>
4482         <see langword="true" /> if the version exists; otherwise, <see langword="false" />.</returns>
4483     </member>
4484     <member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn)">
4485       <summary>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn" /> contains a null value.</summary>
4486       <param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
4487       <returns>
4488         <see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
4489       <exception cref="T:System.ArgumentNullException">
4490         <paramref name="column" /> is <see langword="null" />.</exception>
4491       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4492     </member>
4493     <member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn,System.Data.DataRowVersion)">
4494       <summary>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.</summary>
4495       <param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
4496       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4497       <returns>
4498         <see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
4499       <exception cref="T:System.ArgumentNullException">
4500         <paramref name="column" /> is <see langword="null" />.</exception>
4501       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4502       <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <paramref name="version" />.</exception>
4503     </member>
4504     <member name="M:System.Data.DataRow.IsNull(System.Int32)">
4505       <summary>Gets a value that indicates whether the column at the specified index contains a null value.</summary>
4506       <param name="columnIndex">The zero-based index of the column.</param>
4507       <returns>
4508         <see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
4509       <exception cref="T:System.IndexOutOfRangeException">No column corresponds to the index specified by <paramref name="columnIndex" />.</exception>
4510       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4511     </member>
4512     <member name="M:System.Data.DataRow.IsNull(System.String)">
4513       <summary>Gets a value that indicates whether the named column contains a null value.</summary>
4514       <param name="columnName">The name of the column.</param>
4515       <returns>
4516         <see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
4517       <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
4518       <exception cref="T:System.ArgumentNullException">
4519         <paramref name="columnName" /> is <see langword="null" />.</exception>
4520       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4521     </member>
4522     <member name="P:System.Data.DataRow.Item(System.Data.DataColumn)">
4523       <summary>Gets or sets the data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
4524       <param name="column">A <see cref="T:System.Data.DataColumn" /> that contains the data.</param>
4525       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4526       <exception cref="T:System.ArgumentException">The column does not belong to this table.</exception>
4527       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> is null.</exception>
4528       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
4529       <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
4530     </member>
4531     <member name="P:System.Data.DataRow.Item(System.Data.DataColumn,System.Data.DataRowVersion)">
4532       <summary>Gets the specified version of data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
4533       <param name="column">A <see cref="T:System.Data.DataColumn" /> that contains information about the column.</param>
4534       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4535       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4536       <exception cref="T:System.ArgumentException">The column does not belong to the table.</exception>
4537       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> argument contains null.</exception>
4538       <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
4539     </member>
4540     <member name="P:System.Data.DataRow.Item(System.Int32)">
4541       <summary>Gets or sets the data stored in the column specified by index.</summary>
4542       <param name="columnIndex">The zero-based index of the column.</param>
4543       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4544       <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
4545       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
4546       <exception cref="T:System.InvalidCastException">Occurs when you set the value and the new value's <see cref="T:System.Type" /> does not match <see cref="P:System.Data.DataColumn.DataType" />.</exception>
4547     </member>
4548     <member name="P:System.Data.DataRow.Item(System.Int32,System.Data.DataRowVersion)">
4549       <summary>Gets the data stored in the column, specified by index and version of the data to retrieve.</summary>
4550       <param name="columnIndex">The zero-based index of the column.</param>
4551       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4552       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4553       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
4554       <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
4555       <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
4556       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
4557     </member>
4558     <member name="P:System.Data.DataRow.Item(System.String)">
4559       <summary>Gets or sets the data stored in the column specified by name.</summary>
4560       <param name="columnName">The name of the column.</param>
4561       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4562       <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
4563       <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
4564       <exception cref="T:System.InvalidCastException">Occurs when you set a value and its <see cref="T:System.Type" /> does not match <see cref="P:System.Data.DataColumn.DataType" />.</exception>
4565       <exception cref="T:System.Data.NoNullAllowedException">Occurs when you try to insert a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is set to <see langword="false" />.</exception>
4566     </member>
4567     <member name="P:System.Data.DataRow.Item(System.String,System.Data.DataRowVersion)">
4568       <summary>Gets the specified version of data stored in the named column.</summary>
4569       <param name="columnName">The name of the column.</param>
4570       <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
4571       <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
4572       <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
4573       <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
4574       <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
4575       <exception cref="T:System.Data.DeletedRowInaccessibleException">The row was deleted.</exception>
4576     </member>
4577     <member name="P:System.Data.DataRow.ItemArray">
4578       <summary>Gets or sets all the values for this row through an array.</summary>
4579       <returns>An array of type <see cref="T:System.Object" />.</returns>
4580       <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
4581       <exception cref="T:System.InvalidCastException">A value in the array does not match its <see cref="P:System.Data.DataColumn.DataType" /> in its respective <see cref="T:System.Data.DataColumn" />.</exception>
4582       <exception cref="T:System.Data.ConstraintException">An edit broke a constraint.</exception>
4583       <exception cref="T:System.Data.ReadOnlyException">An edit tried to change the value of a read-only column.</exception>
4584       <exception cref="T:System.Data.NoNullAllowedException">An edit tried to put a null value in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> of the <see cref="T:System.Data.DataColumn" /> object is <see langword="false" />.</exception>
4585       <exception cref="T:System.Data.DeletedRowInaccessibleException">The row has been deleted.</exception>
4586     </member>
4587     <member name="M:System.Data.DataRow.RejectChanges">
4588       <summary>Rejects all changes made to the row since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
4589       <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
4590     </member>
4591     <member name="P:System.Data.DataRow.RowError">
4592       <summary>Gets or sets the custom error description for a row.</summary>
4593       <returns>The text describing an error.</returns>
4594     </member>
4595     <member name="P:System.Data.DataRow.RowState">
4596       <summary>Gets the current state of the row with regard to its relationship to the <see cref="T:System.Data.DataRowCollection" />.</summary>
4597       <returns>One of the <see cref="T:System.Data.DataRowState" /> values.</returns>
4598     </member>
4599     <member name="M:System.Data.DataRow.SetAdded">
4600       <summary>Changes the <see cref="P:System.Data.DataRow.RowState" /> of a <see cref="T:System.Data.DataRow" /> to <see langword="Added" />.</summary>
4601     </member>
4602     <member name="M:System.Data.DataRow.SetColumnError(System.Data.DataColumn,System.String)">
4603       <summary>Sets the error description for a column specified as a <see cref="T:System.Data.DataColumn" />.</summary>
4604       <param name="column">The <see cref="T:System.Data.DataColumn" /> to set the error description for.</param>
4605       <param name="error">The error description.</param>
4606     </member>
4607     <member name="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)">
4608       <summary>Sets the error description for a column specified by index.</summary>
4609       <param name="columnIndex">The zero-based index of the column.</param>
4610       <param name="error">The error description.</param>
4611       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range</exception>
4612     </member>
4613     <member name="M:System.Data.DataRow.SetColumnError(System.String,System.String)">
4614       <summary>Sets the error description for a column specified by name.</summary>
4615       <param name="columnName">The name of the column.</param>
4616       <param name="error">The error description.</param>
4617     </member>
4618     <member name="M:System.Data.DataRow.SetModified">
4619       <summary>Changes the <see cref="P:System.Data.DataRow.RowState" /> of a <see cref="T:System.Data.DataRow" /> to <see langword="Modified" />.</summary>
4620     </member>
4621     <member name="M:System.Data.DataRow.SetNull(System.Data.DataColumn)">
4622       <summary>Sets the value of the specified <see cref="T:System.Data.DataColumn" /> to a null value.</summary>
4623       <param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
4624     </member>
4625     <member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow)">
4626       <summary>Sets the parent row of a <see cref="T:System.Data.DataRow" /> with specified new parent <see cref="T:System.Data.DataRow" />.</summary>
4627       <param name="parentRow">The new parent <see cref="T:System.Data.DataRow" />.</param>
4628     </member>
4629     <member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow,System.Data.DataRelation)">
4630       <summary>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" />.</summary>
4631       <param name="parentRow">The new parent <see cref="T:System.Data.DataRow" />.</param>
4632       <param name="relation">The relation <see cref="T:System.Data.DataRelation" /> to use.</param>
4633       <exception cref="T:System.Data.RowNotInTableException">One of the rows does not belong to a table</exception>
4634       <exception cref="T:System.ArgumentNullException">One of the rows is <see langword="null" />.</exception>
4635       <exception cref="T:System.ArgumentException">The relation does not belong to the <see cref="T:System.Data.DataRelationCollection" /> of the <see cref="T:System.Data.DataSet" /> object.</exception>
4636       <exception cref="T:System.Data.InvalidConstraintException">The relation's child <see cref="T:System.Data.DataTable" /> is not the table this row belongs to.</exception>
4637     </member>
4638     <member name="P:System.Data.DataRow.Table">
4639       <summary>Gets the <see cref="T:System.Data.DataTable" /> for which this row has a schema.</summary>
4640       <returns>The <see cref="T:System.Data.DataTable" /> to which this row belongs.</returns>
4641     </member>
4642     <member name="T:System.Data.DataRowAction">
4643       <summary>Describes an action performed on a <see cref="T:System.Data.DataRow" />.</summary>
4644     </member>
4645     <member name="F:System.Data.DataRowAction.Add">
4646       <summary>The row has been added to the table.</summary>
4647     </member>
4648     <member name="F:System.Data.DataRowAction.Change">
4649       <summary>The row has changed.</summary>
4650     </member>
4651     <member name="F:System.Data.DataRowAction.ChangeCurrentAndOriginal">
4652       <summary>The original and the current versions of the row have been changed.</summary>
4653     </member>
4654     <member name="F:System.Data.DataRowAction.ChangeOriginal">
4655       <summary>The original version of the row has been changed.</summary>
4656     </member>
4657     <member name="F:System.Data.DataRowAction.Commit">
4658       <summary>The changes to the row have been committed.</summary>
4659     </member>
4660     <member name="F:System.Data.DataRowAction.Delete">
4661       <summary>The row was deleted from the table.</summary>
4662     </member>
4663     <member name="F:System.Data.DataRowAction.Nothing">
4664       <summary>The row has not changed.</summary>
4665     </member>
4666     <member name="F:System.Data.DataRowAction.Rollback">
4667       <summary>The most recent change to the row has been rolled back.</summary>
4668     </member>
4669     <member name="T:System.Data.DataRowBuilder">
4670       <summary>The <see langword="DataRowBuilder" /> type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
4671     </member>
4672     <member name="T:System.Data.DataRowChangeEventArgs">
4673       <summary>Provides data for the <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)" />, and <see cref="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)" /> events.</summary>
4674     </member>
4675     <member name="M:System.Data.DataRowChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataRowAction)">
4676       <summary>Initializes a new instance of the <see cref="T:System.Data.DataRowChangeEventArgs" /> class.</summary>
4677       <param name="row">The <see cref="T:System.Data.DataRow" /> upon which an action is occurring.</param>
4678       <param name="action">One of the <see cref="T:System.Data.DataRowAction" /> values.</param>
4679     </member>
4680     <member name="P:System.Data.DataRowChangeEventArgs.Action">
4681       <summary>Gets the action that has occurred on a <see cref="T:System.Data.DataRow" />.</summary>
4682       <returns>One of the <see cref="T:System.Data.DataRowAction" /> values.</returns>
4683     </member>
4684     <member name="P:System.Data.DataRowChangeEventArgs.Row">
4685       <summary>Gets the row upon which an action has occurred.</summary>
4686       <returns>The <see cref="T:System.Data.DataRow" /> upon which an action has occurred.</returns>
4687     </member>
4688     <member name="T:System.Data.DataRowChangeEventHandler">
4689       <summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowDeleting" />, and <see cref="E:System.Data.DataTable.RowDeleted" /> events of a <see cref="T:System.Data.DataTable" />.</summary>
4690       <param name="sender">The source of the event.</param>
4691       <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
4692     </member>
4693     <member name="T:System.Data.DataRowCollection">
4694       <summary>Represents a collection of rows for a <see cref="T:System.Data.DataTable" />.</summary>
4695     </member>
4696     <member name="M:System.Data.DataRowCollection.Add(System.Data.DataRow)">
4697       <summary>Adds the specified <see cref="T:System.Data.DataRow" /> to the <see cref="T:System.Data.DataRowCollection" /> object.</summary>
4698       <param name="row">The <see cref="T:System.Data.DataRow" /> to add.</param>
4699       <exception cref="T:System.ArgumentNullException">The row is null.</exception>
4700       <exception cref="T:System.ArgumentException">The row either belongs to another table or already belongs to this table.</exception>
4701       <exception cref="T:System.Data.ConstraintException">The addition invalidates a constraint.</exception>
4702       <exception cref="T:System.Data.NoNullAllowedException">The addition tries to put a null in a <see cref="T:System.Data.DataColumn" /> where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
4703     </member>
4704     <member name="M:System.Data.DataRowCollection.Add(System.Object[])">
4705       <summary>Creates a row using specified values and adds it to the <see cref="T:System.Data.DataRowCollection" />.</summary>
4706       <param name="values">The array of values that are used to create the new row.</param>
4707       <returns>None.</returns>
4708       <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
4709       <exception cref="T:System.InvalidCastException">A value does not match its respective column type.</exception>
4710       <exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
4711       <exception cref="T:System.Data.NoNullAllowedException">Trying to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
4712     </member>
4713     <member name="M:System.Data.DataRowCollection.Clear">
4714       <summary>Clears the collection of all rows.</summary>
4715       <exception cref="T:System.Data.InvalidConstraintException">A <see cref="T:System.Data.ForeignKeyConstraint" /> is enforced on the <see cref="T:System.Data.DataRowCollection" />.</exception>
4716     </member>
4717     <member name="M:System.Data.DataRowCollection.Contains(System.Object)">
4718       <summary>Gets a value that indicates whether the primary key of any row in the collection contains the specified value.</summary>
4719       <param name="key">The value of the primary key to test for.</param>
4720       <returns>
4721         <see langword="true" /> if the collection contains a <see cref="T:System.Data.DataRow" /> with the specified primary key value; otherwise, <see langword="false" />.</returns>
4722       <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
4723     </member>
4724     <member name="M:System.Data.DataRowCollection.Contains(System.Object[])">
4725       <summary>Gets a value that indicates whether the primary key columns of any row in the collection contain the values specified in the object array.</summary>
4726       <param name="keys">An array of primary key values to test for.</param>
4727       <returns>
4728         <see langword="true" /> if the <see cref="T:System.Data.DataRowCollection" /> contains a <see cref="T:System.Data.DataRow" /> with the specified key values; otherwise, <see langword="false" />.</returns>
4729       <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
4730     </member>
4731     <member name="M:System.Data.DataRowCollection.CopyTo(System.Array,System.Int32)">
4732       <summary>Copies all the <see cref="T:System.Data.DataRow" /> objects from the collection into the given array, starting at the given destination array index.</summary>
4733       <param name="ar">The one-dimensional array that is the destination of the elements copied from the <see langword="DataRowCollection" />. The array must have zero-based indexing.</param>
4734       <param name="index">The zero-based index in the array at which copying begins.</param>
4735     </member>
4736     <member name="M:System.Data.DataRowCollection.CopyTo(System.Data.DataRow[],System.Int32)">
4737       <summary>Copies all the <see cref="T:System.Data.DataRow" /> objects from the collection into the given array, starting at the given destination array index.</summary>
4738       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see langword="DataRowCollection" />. The array must have zero-based indexing.</param>
4739       <param name="index">The zero-based index in the array at which copying begins.</param>
4740     </member>
4741     <member name="P:System.Data.DataRowCollection.Count">
4742       <summary>Gets the total number of <see cref="T:System.Data.DataRow" /> objects in this collection.</summary>
4743       <returns>The total number of <see cref="T:System.Data.DataRow" /> objects in this collection.</returns>
4744     </member>
4745     <member name="M:System.Data.DataRowCollection.Find(System.Object)">
4746       <summary>Gets the row specified by the primary key value.</summary>
4747       <param name="key">The primary key value of the <see cref="T:System.Data.DataRow" /> to find.</param>
4748       <returns>A <see cref="T:System.Data.DataRow" /> that contains the primary key value specified; otherwise a null value if the primary key value does not exist in the <see cref="T:System.Data.DataRowCollection" />.</returns>
4749       <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
4750     </member>
4751     <member name="M:System.Data.DataRowCollection.Find(System.Object[])">
4752       <summary>Gets the row that contains the specified primary key values.</summary>
4753       <param name="keys">An array of primary key values to find. The type of the array is <see langword="Object" />.</param>
4754       <returns>A <see cref="T:System.Data.DataRow" /> object that contains the primary key values specified; otherwise a null value if the primary key value does not exist in the <see cref="T:System.Data.DataRowCollection" />.</returns>
4755       <exception cref="T:System.IndexOutOfRangeException">No row corresponds to that index value.</exception>
4756       <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
4757     </member>
4758     <member name="M:System.Data.DataRowCollection.GetEnumerator">
4759       <summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for this collection.</summary>
4760       <returns>An <see cref="T:System.Collections.IEnumerator" /> for this collection.</returns>
4761     </member>
4762     <member name="M:System.Data.DataRowCollection.IndexOf(System.Data.DataRow)">
4763       <summary>Gets the index of the specified <see cref="T:System.Data.DataRow" /> object.</summary>
4764       <param name="row">The <see langword="DataRow" /> to search for.</param>
4765       <returns>The zero-based index of the row, or -1 if the row is not found in the collection.</returns>
4766     </member>
4767     <member name="M:System.Data.DataRowCollection.InsertAt(System.Data.DataRow,System.Int32)">
4768       <summary>Inserts a new row into the collection at the specified location.</summary>
4769       <param name="row">The <see cref="T:System.Data.DataRow" /> to add.</param>
4770       <param name="pos">The (zero-based) location in the collection where you want to add the <see langword="DataRow" />.</param>
4771       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="pos" /> is less than 0.</exception>
4772     </member>
4773     <member name="P:System.Data.DataRowCollection.Item(System.Int32)">
4774       <summary>Gets the row at the specified index.</summary>
4775       <param name="index">The zero-based index of the row to return.</param>
4776       <returns>The specified <see cref="T:System.Data.DataRow" />.</returns>
4777       <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
4778     </member>
4779     <member name="M:System.Data.DataRowCollection.Remove(System.Data.DataRow)">
4780       <summary>Removes the specified <see cref="T:System.Data.DataRow" /> from the collection.</summary>
4781       <param name="row">The <see cref="T:System.Data.DataRow" /> to remove.</param>
4782     </member>
4783     <member name="M:System.Data.DataRowCollection.RemoveAt(System.Int32)">
4784       <summary>Removes the row at the specified index from the collection.</summary>
4785       <param name="index">The index of the row to remove.</param>
4786     </member>
4787     <member name="T:System.Data.DataRowComparer">
4788       <summary>Returns a singleton instance of the <see cref="T:System.Data.DataRowComparer`1" /> class.</summary>
4789     </member>
4790     <member name="P:System.Data.DataRowComparer.Default">
4791       <summary>Gets a singleton instance of <see cref="T:System.Data.DataRowComparer`1" />. This property is read-only.</summary>
4792       <returns>An instance of a <see cref="T:System.Data.DataRowComparer`1" />.</returns>
4793     </member>
4794     <member name="T:System.Data.DataRowComparer`1">
4795       <summary>Compares two <see cref="T:System.Data.DataRow" /> objects for equivalence by using value-based comparison.</summary>
4796       <typeparam name="TRow">The type of objects to be compared, typically <see cref="T:System.Data.DataRow" />.</typeparam>
4797     </member>
4798     <member name="P:System.Data.DataRowComparer`1.Default">
4799       <summary>Gets a singleton instance of <see cref="T:System.Data.DataRowComparer`1" />. This property is read-only.</summary>
4800       <returns>An instance of a <see cref="T:System.Data.DataRowComparer`1" />.</returns>
4801     </member>
4802     <member name="M:System.Data.DataRowComparer`1.Equals(`0,`0)">
4803       <summary>Compares two <see cref="T:System.Data.DataRow" /> objects by using a column-by-column, value-based comparison.</summary>
4804       <param name="leftRow">The first <see cref="T:System.Data.DataRow" /> object to compare.</param>
4805       <param name="rightRow">The second <see cref="T:System.Data.DataRow" /> object to compare.</param>
4806       <returns>
4807         <see langword="true" /> if the two <see cref="T:System.Data.DataRow" /> objects have ordered sets of column values that are equal; otherwise, <see langword="false" />.</returns>
4808       <exception cref="T:System.ArgumentNullException">One or both of the source <see cref="T:System.Data.DataRow" /> objects are <see langword="null" />.</exception>
4809     </member>
4810     <member name="M:System.Data.DataRowComparer`1.GetHashCode(`0)">
4811       <summary>Returns a hash code for the specified <see cref="T:System.Data.DataRow" /> object.</summary>
4812       <param name="row">The <see cref="T:System.Data.DataRow" /> to compute the hash code from.</param>
4813       <returns>An <see cref="T:System.Int32" /> value representing the hash code of the row.</returns>
4814       <exception cref="T:System.ArgumentException">The source <see cref="T:System.Data.DataRow" /> objects does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
4815       <exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Data.DataRow" /> objects is <see langword="null" />.</exception>
4816     </member>
4817     <member name="T:System.Data.DataRowExtensions">
4818       <summary>Defines the extension methods to the <see cref="T:System.Data.DataRow" /> class. This is a static class.</summary>
4819     </member>
4820     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Data.DataColumn)">
4821       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Data.DataColumn)" /> method also supports nullable types.</summary>
4822       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4823       <param name="column">The input <see cref="T:System.Data.DataColumn" /> object that specifies the column to return the value of.</param>
4824       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4825       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="column" />.</returns>
4826       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4827       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="column" /> does not occur in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4828       <exception cref="T:System.NullReferenceException">A null value was assigned to a non-nullable type.</exception>
4829     </member>
4830     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Data.DataColumn,System.Data.DataRowVersion)">
4831       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Data.DataColumn,System.Data.DataRowVersion)" /> method also supports nullable types.</summary>
4832       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4833       <param name="column">The input <see cref="T:System.Data.DataColumn" /> object that specifies the column to return the value of.</param>
4834       <param name="version">A <see cref="T:System.Data.DataRowVersion" /> enumeration that specifies the version of the column value to return, such as <see langword="Current" /> or <see langword="Original" /> version.</param>
4835       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4836       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="column" /> and <paramref name="version" />.</returns>
4837       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4838       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="column" /> does not exist in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4839       <exception cref="T:System.NullReferenceException">A null value was assigned to a non-nullable type.</exception>
4840     </member>
4841     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Int32)">
4842       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Int32)" /> method also supports nullable types.</summary>
4843       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4844       <param name="columnIndex">The column index.</param>
4845       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4846       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="columnIndex" />.</returns>
4847       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4848       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="ordinal" /> does not exist in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4849       <exception cref="T:System.NullReferenceException">A null value was assigned to a non-nullable type.</exception>
4850     </member>
4851     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Int32,System.Data.DataRowVersion)">
4852       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.Int32,System.Data.DataRowVersion)" /> method also supports nullable types.</summary>
4853       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4854       <param name="columnIndex">The zero-based ordinal of the column to return the value of.</param>
4855       <param name="version">A <see cref="T:System.Data.DataRowVersion" /> enumeration that specifies the version of the column value to return, such as <see langword="Current" /> or <see langword="Original" /> version.</param>
4856       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4857       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="ordinal" /> and <paramref name="version" />.</returns>
4858       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4859       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="ordinal" /> does not exist in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4860       <exception cref="T:System.NullReferenceException">A null value was assigned to a non-nullable type.</exception>
4861     </member>
4862     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.String)">
4863       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.String)" /> method also supports nullable types.</summary>
4864       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4865       <param name="columnName">The name of the column to return the value of.</param>
4866       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4867       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="columnName" />.</returns>
4868       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4869       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="columnName" /> does not occur in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4870       <exception cref="T:System.NullReferenceException">A <see langword="null" /> value was assigned to a non-nullable type.</exception>
4871     </member>
4872     <member name="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.String,System.Data.DataRowVersion)">
4873       <summary>Provides strongly-typed access to each of the column values in the specified row. The <see cref="M:System.Data.DataRowExtensions.Field``1(System.Data.DataRow,System.String,System.Data.DataRowVersion)" /> method also supports nullable types.</summary>
4874       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4875       <param name="columnName">The name of the column to return the value of.</param>
4876       <param name="version">A <see cref="T:System.Data.DataRowVersion" /> enumeration that specifies the version of the column value to return, such as <see langword="Current" /> or <see langword="Original" /> version.</param>
4877       <typeparam name="T">A generic parameter that specifies the return type of the column.</typeparam>
4878       <returns>The value, of type <paramref name="T" />, of the <see cref="T:System.Data.DataColumn" /> specified by <paramref name="columnName" /> and <paramref name="version" />.</returns>
4879       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4880       <exception cref="T:System.IndexOutOfRangeException">The column specified by <paramref name="columnName" /> does not exist in the <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataRow" /> is a part of.</exception>
4881       <exception cref="T:System.NullReferenceException">A null value was assigned to a non-nullable type.</exception>
4882     </member>
4883     <member name="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.Data.DataColumn,``0)">
4884       <summary>Sets a new value for the specified column in the <see cref="T:System.Data.DataRow" />. The <see cref="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.Data.DataColumn,``0)" /> method also supports nullable types.</summary>
4885       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4886       <param name="column">The input <see cref="T:System.Data.DataColumn" /> specifies which row value to retrieve.</param>
4887       <param name="value">The new row value for the specified column, of type <paramref name="T" />.</param>
4888       <typeparam name="T">A generic parameter that specifies the value type of the column.</typeparam>
4889       <exception cref="T:System.ArgumentException">The column specified by <paramref name="column" /> cannot be found.</exception>
4890       <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> is null.</exception>
4891       <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when attempting to set a value on a deleted row.</exception>
4892       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4893     </member>
4894     <member name="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.Int32,``0)">
4895       <summary>Sets a new value for the specified column in the <see cref="T:System.Data.DataRow" /> the method is called on. The <see cref="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.Int32,``0)" /> method also supports nullable types.</summary>
4896       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4897       <param name="columnIndex">The zero-based ordinal of the column to set the value of.</param>
4898       <param name="value">The new row value for the specified column, of type <paramref name="T" />.</param>
4899       <typeparam name="T">A generic parameter that specifies the value type of the column.</typeparam>
4900       <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when attempting to set a value on a deleted row.</exception>
4901       <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> argument is out of range.</exception>
4902       <exception cref="T:System.InvalidCastException">The value type of the underlying column could be not cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4903     </member>
4904     <member name="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.String,``0)">
4905       <summary>Sets a new value for the specified column in the <see cref="T:System.Data.DataRow" />. The <see cref="M:System.Data.DataRowExtensions.SetField``1(System.Data.DataRow,System.String,``0)" /> method also supports nullable types.</summary>
4906       <param name="row">The input <see cref="T:System.Data.DataRow" />, which acts as the <see langword="this" /> instance for the extension method.</param>
4907       <param name="columnName">The name of the column to set the value of.</param>
4908       <param name="value">The new row value for the specified column, of type <paramref name="T" />.</param>
4909       <typeparam name="T">A generic parameter that specifies the value type of the column.</typeparam>
4910       <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
4911       <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when attempting to set a value on a deleted row.</exception>
4912       <exception cref="T:System.InvalidCastException">The value type of the underlying column could not be cast to the type specified by the generic parameter, <paramref name="T" />.</exception>
4913     </member>
4914     <member name="T:System.Data.DataRowState">
4915       <summary>Gets the state of a <see cref="T:System.Data.DataRow" /> object.</summary>
4916     </member>
4917     <member name="F:System.Data.DataRowState.Added">
4918       <summary>The row has been added to a <see cref="T:System.Data.DataRowCollection" />, and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
4919     </member>
4920     <member name="F:System.Data.DataRowState.Deleted">
4921       <summary>The row was deleted using the <see cref="M:System.Data.DataRow.Delete" /> method of the <see cref="T:System.Data.DataRow" />.</summary>
4922     </member>
4923     <member name="F:System.Data.DataRowState.Detached">
4924       <summary>The row has been created but is not part of any <see cref="T:System.Data.DataRowCollection" />. A <see cref="T:System.Data.DataRow" /> is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection.</summary>
4925     </member>
4926     <member name="F:System.Data.DataRowState.Modified">
4927       <summary>The row has been modified and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
4928     </member>
4929     <member name="F:System.Data.DataRowState.Unchanged">
4930       <summary>The row has not changed since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
4931     </member>
4932     <member name="T:System.Data.DataRowVersion">
4933       <summary>Describes the version of a <see cref="T:System.Data.DataRow" />.</summary>
4934     </member>
4935     <member name="F:System.Data.DataRowVersion.Current">
4936       <summary>The row contains current values.</summary>
4937     </member>
4938     <member name="F:System.Data.DataRowVersion.Default">
4939       <summary>The default version of <see cref="T:System.Data.DataRowState" />. For a <see langword="DataRowState" /> value of <see langword="Added" />, <see langword="Modified" /> or <see langword="Deleted" />, the default version is <see langword="Current" />. For a <see cref="T:System.Data.DataRowState" /> value of <see langword="Detached" />, the version is <see langword="Proposed" />.</summary>
4940     </member>
4941     <member name="F:System.Data.DataRowVersion.Original">
4942       <summary>The row contains its original values.</summary>
4943     </member>
4944     <member name="F:System.Data.DataRowVersion.Proposed">
4945       <summary>The row contains a proposed value.</summary>
4946     </member>
4947     <member name="T:System.Data.DataRowView">
4948       <summary>Represents a customized view of a <see cref="T:System.Data.DataRow" />.</summary>
4949     </member>
4950     <member name="M:System.Data.DataRowView.BeginEdit">
4951       <summary>Begins an edit procedure.</summary>
4952     </member>
4953     <member name="M:System.Data.DataRowView.CancelEdit">
4954       <summary>Cancels an edit procedure.</summary>
4955     </member>
4956     <member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation)">
4957       <summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified child <see cref="T:System.Data.DataRelation" />.</summary>
4958       <param name="relation">The <see cref="T:System.Data.DataRelation" /> object.</param>
4959       <returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
4960     </member>
4961     <member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation,System.Boolean)">
4962       <summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified <see cref="T:System.Data.DataRelation" /> and parent.</summary>
4963       <param name="relation">The <see cref="T:System.Data.DataRelation" /> object.</param>
4964       <param name="followParent">The parent object.</param>
4965       <returns>A <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
4966       <exception cref="T:System.ArgumentException">
4967         <paramref name="relation" /> is <see langword="null" />.</exception>
4968     </member>
4969     <member name="M:System.Data.DataRowView.CreateChildView(System.String)">
4970       <summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified child <see cref="T:System.Data.DataRelation" /> name.</summary>
4971       <param name="relationName">A string containing the <see cref="T:System.Data.DataRelation" /> name.</param>
4972       <returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
4973     </member>
4974     <member name="M:System.Data.DataRowView.CreateChildView(System.String,System.Boolean)">
4975       <summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified <see cref="T:System.Data.DataRelation" /> name and parent.</summary>
4976       <param name="relationName">A string containing the <see cref="T:System.Data.DataRelation" /> name.</param>
4977       <param name="followParent">
4978         <see langword="true" /> to keep the created child view in sync with the parent; otherwise, <see langword="false" />.</param>
4979       <returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
4980       <exception cref="T:System.ArgumentException">
4981         <paramref name="relation" /> is <see langword="null" />.</exception>
4982     </member>
4983     <member name="P:System.Data.DataRowView.DataView">
4984       <summary>Gets the <see cref="T:System.Data.DataView" /> to which this row belongs.</summary>
4985       <returns>The <see langword="DataView" /> to which this row belongs.</returns>
4986     </member>
4987     <member name="M:System.Data.DataRowView.Delete">
4988       <summary>Deletes a row.</summary>
4989     </member>
4990     <member name="M:System.Data.DataRowView.EndEdit">
4991       <summary>Commits changes to the underlying <see cref="T:System.Data.DataRow" /> and ends the editing session that was begun with <see cref="M:System.Data.DataRowView.BeginEdit" />.  Use <see cref="M:System.Data.DataRowView.CancelEdit" /> to discard the changes made to the <see cref="T:System.Data.DataRow" />.</summary>
4992     </member>
4993     <member name="M:System.Data.DataRowView.Equals(System.Object)">
4994       <summary>Gets a value indicating whether the current <see cref="T:System.Data.DataRowView" /> is identical to the specified object.</summary>
4995       <param name="other">An <see cref="T:System.Object" /> to be compared.</param>
4996       <returns>
4997         <see langword="true" /> if <paramref name="object" /> is a <see cref="T:System.Data.DataRowView" /> and it returns the same row as the current <see cref="T:System.Data.DataRowView" />; otherwise <see langword="false" />.</returns>
4998     </member>
4999     <member name="M:System.Data.DataRowView.GetHashCode">
5000       <summary>Returns the hash code of the <see cref="T:System.Data.DataRow" /> object.</summary>
5001       <returns>A 32-bit signed integer hash code 1, which represents Boolean <see langword="true" /> if the value of this instance is nonzero; otherwise the integer zero, which represents Boolean <see langword="false" />.</returns>
5002     </member>
5003     <member name="P:System.Data.DataRowView.IsEdit">
5004       <summary>Indicates whether the row is in edit mode.</summary>
5005       <returns>
5006         <see langword="true" /> if the row is in edit mode; otherwise <see langword="false" />.</returns>
5007     </member>
5008     <member name="P:System.Data.DataRowView.IsNew">
5009       <summary>Indicates whether a <see cref="T:System.Data.DataRowView" /> is new.</summary>
5010       <returns>
5011         <see langword="true" /> if the row is new; otherwise <see langword="false" />.</returns>
5012     </member>
5013     <member name="P:System.Data.DataRowView.Item(System.Int32)">
5014       <summary>Gets or sets a value in a specified column.</summary>
5015       <param name="ndx">The column index.</param>
5016       <returns>The value of the column.</returns>
5017       <exception cref="T:System.Data.DataException">The <see cref="P:System.Data.DataRowView.DataView" /> doesn't allow edits and <see cref="T:System.Data.DataRowView" /> is not new.</exception>
5018       <exception cref="T:System.IndexOutOfRangeException">No column corresponds to that index value.</exception>
5019     </member>
5020     <member name="P:System.Data.DataRowView.Item(System.String)">
5021       <summary>Gets or sets a value in a specified column.</summary>
5022       <param name="property">String that contains the specified column.</param>
5023       <returns>The value of the column.</returns>
5024       <exception cref="T:System.ArgumentException">A column with the specified name or relation was not found.
5025 -or-
5026 The <see cref="P:System.Data.DataRowView.DataView" /> doesn't allow edits and <see cref="T:System.Data.DataRowView" /> is not new.</exception>
5027       <exception cref="T:System.Data.DataException">Unmatched <paramref name="property" /> when setting a value.</exception>
5028     </member>
5029     <member name="E:System.Data.DataRowView.PropertyChanged">
5030       <summary>Event that is raised when a <see cref="T:System.Data.DataRowView" /> property is changed.</summary>
5031     </member>
5032     <member name="P:System.Data.DataRowView.Row">
5033       <summary>Gets the <see cref="T:System.Data.DataRow" /> being viewed.</summary>
5034       <returns>The <see cref="T:System.Data.DataRow" /> being viewed by the <see cref="T:System.Data.DataRowView" />.</returns>
5035     </member>
5036     <member name="P:System.Data.DataRowView.RowVersion">
5037       <summary>Gets the current version description of the <see cref="T:System.Data.DataRow" />.</summary>
5038       <returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. Possible values for the <see cref="P:System.Data.DataRowView.RowVersion" /> property are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</returns>
5039     </member>
5040     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
5041       <summary>Returns a collection of custom attributes for this instance of a component.</summary>
5042       <returns>An AttributeCollection containing the attributes for this object.</returns>
5043     </member>
5044     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
5045       <summary>Returns the class name of this instance of a component.</summary>
5046       <returns>The class name of this instance of a component.</returns>
5047     </member>
5048     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
5049       <summary>Returns the name of this instance of a component.</summary>
5050       <returns>The name of this instance of a component.</returns>
5051     </member>
5052     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
5053       <summary>Returns a type converter for this instance of a component.</summary>
5054       <returns>The type converter for this instance of a component.</returns>
5055     </member>
5056     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
5057       <summary>Returns the default event for this instance of a component.</summary>
5058       <returns>The default event for this instance of a component.</returns>
5059     </member>
5060     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
5061       <summary>Returns the default property for this instance of a component.</summary>
5062       <returns>The default property for this instance of a component.</returns>
5063     </member>
5064     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
5065       <summary>Returns an editor of the specified type for this instance of a component.</summary>
5066       <param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
5067       <returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
5068     </member>
5069     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
5070       <summary>Returns the events for this instance of a component.</summary>
5071       <returns>The events for this instance of a component.</returns>
5072     </member>
5073     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
5074       <summary>Returns the events for this instance of a component with specified attributes.</summary>
5075       <param name="attributes">The attributes</param>
5076       <returns>The events for this instance of a component.</returns>
5077     </member>
5078     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
5079       <summary>Returns the properties for this instance of a component.</summary>
5080       <returns>The properties for this instance of a component.</returns>
5081     </member>
5082     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
5083       <summary>Returns the properties for this instance of a component with specified attributes.</summary>
5084       <param name="attributes">The attributes.</param>
5085       <returns>The properties for this instance of a component.</returns>
5086     </member>
5087     <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
5088       <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
5089       <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
5090       <returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
5091     </member>
5092     <member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Error">
5093       <summary>Gets a message that describes any validation errors for the object.</summary>
5094       <returns>The validation error on the object.</returns>
5095     </member>
5096     <member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Item(System.String)">
5097       <summary>Gets the error message for the property with the given name.</summary>
5098       <param name="colName">The name of the property whose error message to get.</param>
5099       <returns>The error message for the property. The default is an empty string ("").</returns>
5100     </member>
5101     <member name="T:System.Data.DataSet">
5102       <summary>Represents an in-memory cache of data.</summary>
5103     </member>
5104     <member name="M:System.Data.DataSet.#ctor">
5105       <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
5106     </member>
5107     <member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5108       <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class that has the given serialization information and context.</summary>
5109       <param name="info">The data needed to serialize or deserialize an object.</param>
5110       <param name="context">The source and destination of a given serialized stream.</param>
5111     </member>
5112     <member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Boolean)">
5113       <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
5114       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
5115       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
5116       <param name="ConstructSchema">The boolean value.</param>
5117     </member>
5118     <member name="M:System.Data.DataSet.#ctor(System.String)">
5119       <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class with the given name.</summary>
5120       <param name="dataSetName">The name of the <see cref="T:System.Data.DataSet" />.</param>
5121     </member>
5122     <member name="M:System.Data.DataSet.AcceptChanges">
5123       <summary>Commits all the changes made to this <see cref="T:System.Data.DataSet" /> since it was loaded or since the last time <see cref="M:System.Data.DataSet.AcceptChanges" /> was called.</summary>
5124     </member>
5125     <member name="M:System.Data.DataSet.BeginInit">
5126       <summary>Begins the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
5127     </member>
5128     <member name="P:System.Data.DataSet.CaseSensitive">
5129       <summary>Gets or sets a value indicating whether string comparisons within <see cref="T:System.Data.DataTable" /> objects are case-sensitive.</summary>
5130       <returns>
5131         <see langword="true" /> if string comparisons are case-sensitive; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
5132     </member>
5133     <member name="M:System.Data.DataSet.Clear">
5134       <summary>Clears the <see cref="T:System.Data.DataSet" /> of any data by removing all rows in all tables.</summary>
5135     </member>
5136     <member name="M:System.Data.DataSet.Clone">
5137       <summary>Copies the structure of the <see cref="T:System.Data.DataSet" />, including all <see cref="T:System.Data.DataTable" /> schemas, relations, and constraints. Does not copy any data.</summary>
5138       <returns>A new <see cref="T:System.Data.DataSet" /> with the same schema as the current <see cref="T:System.Data.DataSet" />, but none of the data.</returns>
5139     </member>
5140     <member name="M:System.Data.DataSet.Copy">
5141       <summary>Copies both the structure and data for this <see cref="T:System.Data.DataSet" />.</summary>
5142       <returns>A new <see cref="T:System.Data.DataSet" /> with the same structure (table schemas, relations, and constraints) and data as this <see cref="T:System.Data.DataSet" />.
5143
5144 If these classes have been subclassed, the copy will also be of the same subclasses.</returns>
5145     </member>
5146     <member name="M:System.Data.DataSet.CreateDataReader">
5147       <summary>Returns a <see cref="T:System.Data.DataTableReader" /> with one result set per <see cref="T:System.Data.DataTable" />, in the same sequence as the tables appear in the <see cref="P:System.Data.DataSet.Tables" /> collection.</summary>
5148       <returns>A <see cref="T:System.Data.DataTableReader" /> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable" /> instances contained within the source <see cref="T:System.Data.DataSet" />.</returns>
5149     </member>
5150     <member name="M:System.Data.DataSet.CreateDataReader(System.Data.DataTable[])">
5151       <summary>Returns a <see cref="T:System.Data.DataTableReader" /> with one result set per <see cref="T:System.Data.DataTable" />.</summary>
5152       <param name="dataTables">An array of DataTables providing the order of the result sets to be returned in the <see cref="T:System.Data.DataTableReader" />.</param>
5153       <returns>A <see cref="T:System.Data.DataTableReader" /> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable" /> instances contained within the source <see cref="T:System.Data.DataSet" />. The returned result sets are in the order specified by the <paramref name="dataTables" /> parameter.</returns>
5154     </member>
5155     <member name="P:System.Data.DataSet.DataSetName">
5156       <summary>Gets or sets the name of the current <see cref="T:System.Data.DataSet" />.</summary>
5157       <returns>The name of the <see cref="T:System.Data.DataSet" />.</returns>
5158     </member>
5159     <member name="P:System.Data.DataSet.DefaultViewManager">
5160       <summary>Gets a custom view of the data contained in the <see cref="T:System.Data.DataSet" /> to allow filtering, searching, and navigating using a custom <see cref="T:System.Data.DataViewManager" />.</summary>
5161       <returns>A <see cref="T:System.Data.DataViewManager" /> object.</returns>
5162     </member>
5163     <member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5164       <summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
5165       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that a <see langword="DataSet" />'s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> is invoked with during deserialization in remoting scenarios.</param>
5166       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that a <see langword="DataSet" />'s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> is invoked with during deserialization in remoting scenarios.</param>
5167       <returns>An <see cref="T:System.Data.SchemaSerializationMode" /> enumeration indicating whether schema information has been omitted from the payload.</returns>
5168     </member>
5169     <member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Xml.XmlReader)">
5170       <summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
5171       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> instance that is passed during deserialization of the <see cref="T:System.Data.DataSet" />.</param>
5172       <returns>An <see cref="T:System.Data.SchemaSerializationMode" /> enumeration indicating whether schema information has been omitted from the payload.</returns>
5173     </member>
5174     <member name="M:System.Data.DataSet.EndInit">
5175       <summary>Ends the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
5176     </member>
5177     <member name="P:System.Data.DataSet.EnforceConstraints">
5178       <summary>Gets or sets a value indicating whether constraint rules are followed when attempting any update operation.</summary>
5179       <returns>
5180         <see langword="true" /> if rules are enforced; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
5181       <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enforced.</exception>
5182     </member>
5183     <member name="P:System.Data.DataSet.ExtendedProperties">
5184       <summary>Gets the collection of customized user information associated with the <see langword="DataSet" />.</summary>
5185       <returns>A <see cref="T:System.Data.PropertyCollection" /> with all custom user information.</returns>
5186     </member>
5187     <member name="M:System.Data.DataSet.GetChanges">
5188       <summary>Gets a copy of the <see cref="T:System.Data.DataSet" /> that contains all changes made to it since it was loaded or since <see cref="M:System.Data.DataSet.AcceptChanges" /> was last called.</summary>
5189       <returns>A copy of the changes from this <see cref="T:System.Data.DataSet" /> that can have actions performed on it and later be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no changed rows are found, the method returns <see langword="null" />.</returns>
5190     </member>
5191     <member name="M:System.Data.DataSet.GetChanges(System.Data.DataRowState)">
5192       <summary>Gets a copy of the <see cref="T:System.Data.DataSet" /> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataSet.AcceptChanges" /> was called, filtered by <see cref="T:System.Data.DataRowState" />.</summary>
5193       <param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
5194       <returns>A filtered copy of the <see cref="T:System.Data.DataSet" /> that can have actions performed on it, and subsequently be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no rows of the desired <see cref="T:System.Data.DataRowState" /> are found, the method returns <see langword="null" />.</returns>
5195     </member>
5196     <member name="M:System.Data.DataSet.GetDataSetSchema(System.Xml.Schema.XmlSchemaSet)">
5197       <summary>Gets a copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" /> for the DataSet.</summary>
5198       <param name="schemaSet">The specified schema set.</param>
5199       <returns>A copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
5200     </member>
5201     <member name="M:System.Data.DataSet.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5202       <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataSet" />.</summary>
5203       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data associated with the <see cref="T:System.Data.DataSet" />.</param>
5204       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataSet" />.</param>
5205       <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
5206     </member>
5207     <member name="M:System.Data.DataSet.GetSchemaSerializable">
5208       <summary>Returns a serializable <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</summary>
5209       <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</returns>
5210     </member>
5211     <member name="M:System.Data.DataSet.GetSerializationData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5212       <summary>Deserializes the table data from the binary or XML stream.</summary>
5213       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance.</param>
5214       <param name="context">The streaming context.</param>
5215     </member>
5216     <member name="M:System.Data.DataSet.GetXml">
5217       <summary>Returns the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</summary>
5218       <returns>A string that is a representation of the data stored in the <see cref="T:System.Data.DataSet" />.</returns>
5219     </member>
5220     <member name="M:System.Data.DataSet.GetXmlSchema">
5221       <summary>Returns the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</summary>
5222       <returns>String that is the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</returns>
5223     </member>
5224     <member name="M:System.Data.DataSet.HasChanges">
5225       <summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet" /> has changes, including new, deleted, or modified rows.</summary>
5226       <returns>
5227         <see langword="true" /> if the <see cref="T:System.Data.DataSet" /> has changes; otherwise, <see langword="false" />.</returns>
5228     </member>
5229     <member name="M:System.Data.DataSet.HasChanges(System.Data.DataRowState)">
5230       <summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet" /> has changes, including new, deleted, or modified rows, filtered by <see cref="T:System.Data.DataRowState" />.</summary>
5231       <param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
5232       <returns>
5233         <see langword="true" /> if the <see cref="T:System.Data.DataSet" /> has changes; otherwise, <see langword="false" />.</returns>
5234     </member>
5235     <member name="P:System.Data.DataSet.HasErrors">
5236       <summary>Gets a value indicating whether there are errors in any of the <see cref="T:System.Data.DataTable" /> objects within this <see cref="T:System.Data.DataSet" />.</summary>
5237       <returns>
5238         <see langword="true" /> if any table contains an error; otherwise, <see langword="false" />.</returns>
5239     </member>
5240     <member name="M:System.Data.DataSet.InferXmlSchema(System.IO.Stream,System.String[])">
5241       <summary>Applies the XML schema from the specified <see cref="T:System.IO.Stream" /> to the <see cref="T:System.Data.DataSet" />.</summary>
5242       <param name="stream">The <see langword="Stream" /> from which to read the schema.</param>
5243       <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
5244     </member>
5245     <member name="M:System.Data.DataSet.InferXmlSchema(System.IO.TextReader,System.String[])">
5246       <summary>Applies the XML schema from the specified <see cref="T:System.IO.TextReader" /> to the <see cref="T:System.Data.DataSet" />.</summary>
5247       <param name="reader">The <see langword="TextReader" /> from which to read the schema.</param>
5248       <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
5249     </member>
5250     <member name="M:System.Data.DataSet.InferXmlSchema(System.String,System.String[])">
5251       <summary>Applies the XML schema from the specified file to the <see cref="T:System.Data.DataSet" />.</summary>
5252       <param name="fileName">The name of the file (including the path) from which to read the schema.</param>
5253       <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
5254       <exception cref="T:System.Security.SecurityException">
5255         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
5256     </member>
5257     <member name="M:System.Data.DataSet.InferXmlSchema(System.Xml.XmlReader,System.String[])">
5258       <summary>Applies the XML schema from the specified <see cref="T:System.Xml.XmlReader" /> to the <see cref="T:System.Data.DataSet" />.</summary>
5259       <param name="reader">The <see langword="XMLReader" /> from which to read the schema.</param>
5260       <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
5261     </member>
5262     <member name="E:System.Data.DataSet.Initialized">
5263       <summary>Occurs after the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
5264     </member>
5265     <member name="M:System.Data.DataSet.InitializeDerivedDataSet">
5266       <summary>Deserialize all of the tables data of the DataSet from the binary or XML stream.</summary>
5267     </member>
5268     <member name="M:System.Data.DataSet.IsBinarySerialized(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5269       <summary>Inspects the format of the serialized representation of the <see langword="DataSet" />.</summary>
5270       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
5271       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
5272       <returns>
5273         <see langword="true" /> if the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> represents a <see langword="DataSet" /> serialized in its binary format, <see langword="false" /> otherwise.</returns>
5274     </member>
5275     <member name="P:System.Data.DataSet.IsInitialized">
5276       <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
5277       <returns>
5278         <see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
5279     </member>
5280     <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])">
5281       <summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of <see cref="T:System.Data.DataTable" /> instances to supply the schema and namespace information.</summary>
5282       <param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
5283       <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see cref="T:System.Data.DataSet" /> will be combined with incoming rows that share the same primary key.</param>
5284       <param name="tables">An array of <see cref="T:System.Data.DataTable" /> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])" /> method retrieves name and namespace information. Each of these tables must be a member of the <see cref="T:System.Data.DataTableCollection" /> contained by this <see cref="T:System.Data.DataSet" />.</param>
5285     </member>
5286     <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])">
5287       <summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of <see cref="T:System.Data.DataTable" /> instances to supply the schema and namespace information.</summary>
5288       <param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
5289       <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see cref="T:System.Data.DataSet" /> will be combined with incoming rows that share the same primary key.</param>
5290       <param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler" /> delegate to call when an error occurs while loading data.</param>
5291       <param name="tables">An array of <see cref="T:System.Data.DataTable" /> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])" /> method retrieves name and namespace information.</param>
5292     </member>
5293     <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.String[])">
5294       <summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of strings to supply the names for the tables within the <see langword="DataSet" />.</summary>
5295       <param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
5296       <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see langword="DataSet" /> will be combined with incoming rows that share the same primary key.</param>
5297       <param name="tables">An array of strings, from which the <see langword="Load" /> method retrieves table name information.</param>
5298     </member>
5299     <member name="P:System.Data.DataSet.Locale">
5300       <summary>Gets or sets the locale information used to compare strings within the table.</summary>
5301       <returns>A <see cref="T:System.Globalization.CultureInfo" /> that contains data about the user's machine locale. The default is <see langword="null" />.</returns>
5302     </member>
5303     <member name="M:System.Data.DataSet.Merge(System.Data.DataRow[])">
5304       <summary>Merges an array of <see cref="T:System.Data.DataRow" /> objects into the current <see cref="T:System.Data.DataSet" />.</summary>
5305       <param name="rows">The array of <see langword="DataRow" /> objects to be merged into the <see langword="DataSet" />.</param>
5306     </member>
5307     <member name="M:System.Data.DataSet.Merge(System.Data.DataRow[],System.Boolean,System.Data.MissingSchemaAction)">
5308       <summary>Merges an array of <see cref="T:System.Data.DataRow" /> objects into the current <see cref="T:System.Data.DataSet" />, preserving or discarding changes in the <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
5309       <param name="rows">The array of <see cref="T:System.Data.DataRow" /> objects to be merged into the <see langword="DataSet" />.</param>
5310       <param name="preserveChanges">
5311         <see langword="true" /> to preserve changes in the <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
5312       <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
5313     </member>
5314     <member name="M:System.Data.DataSet.Merge(System.Data.DataSet)">
5315       <summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema into the current <see langword="DataSet" />.</summary>
5316       <param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
5317       <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enabled.</exception>
5318       <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
5319     </member>
5320     <member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean)">
5321       <summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema into the current <see langword="DataSet" />, preserving or discarding any changes in this <see langword="DataSet" /> according to the given argument.</summary>
5322       <param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
5323       <param name="preserveChanges">
5324         <see langword="true" /> to preserve changes in the current <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
5325     </member>
5326     <member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean,System.Data.MissingSchemaAction)">
5327       <summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema with the current <see langword="DataSet" />, preserving or discarding changes in the current <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
5328       <param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
5329       <param name="preserveChanges">
5330         <see langword="true" /> to preserve changes in the current <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
5331       <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
5332       <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
5333     </member>
5334     <member name="M:System.Data.DataSet.Merge(System.Data.DataTable)">
5335       <summary>Merges a specified <see cref="T:System.Data.DataTable" /> and its schema into the current <see cref="T:System.Data.DataSet" />.</summary>
5336       <param name="table">The <see cref="T:System.Data.DataTable" /> whose data and schema will be merged.</param>
5337       <exception cref="T:System.ArgumentNullException">The <paramref name="table" /> is <see langword="null" />.</exception>
5338     </member>
5339     <member name="M:System.Data.DataSet.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
5340       <summary>Merges a specified <see cref="T:System.Data.DataTable" /> and its schema into the current <see langword="DataSet" />, preserving or discarding changes in the <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
5341       <param name="table">The <see langword="DataTable" /> whose data and schema will be merged.</param>
5342       <param name="preserveChanges">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
5343       <param name="missingSchemaAction">
5344         <see langword="true" /> to preserve changes in the <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
5345       <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
5346     </member>
5347     <member name="E:System.Data.DataSet.MergeFailed">
5348       <summary>Occurs when a target and source <see cref="T:System.Data.DataRow" /> have the same primary key value, and <see cref="P:System.Data.DataSet.EnforceConstraints" /> is set to true.</summary>
5349     </member>
5350     <member name="P:System.Data.DataSet.Namespace">
5351       <summary>Gets or sets the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
5352       <returns>The namespace of the <see cref="T:System.Data.DataSet" />.</returns>
5353       <exception cref="T:System.ArgumentException">The namespace already has data.</exception>
5354     </member>
5355     <member name="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
5356       <summary>Raises the <see cref="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)" /> event.</summary>
5357       <param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
5358     </member>
5359     <member name="M:System.Data.DataSet.OnRemoveRelation(System.Data.DataRelation)">
5360       <summary>Occurs when a <see cref="T:System.Data.DataRelation" /> object is removed from a <see cref="T:System.Data.DataTable" />.</summary>
5361       <param name="relation">The <see cref="T:System.Data.DataRelation" /> being removed.</param>
5362     </member>
5363     <member name="M:System.Data.DataSet.OnRemoveTable(System.Data.DataTable)">
5364       <summary>Occurs when a <see cref="T:System.Data.DataTable" /> is removed from a <see cref="T:System.Data.DataSet" />.</summary>
5365       <param name="table">The <see cref="T:System.Data.DataTable" /> being removed.</param>
5366     </member>
5367     <member name="P:System.Data.DataSet.Prefix">
5368       <summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
5369       <returns>The XML prefix for the <see cref="T:System.Data.DataSet" /> namespace.</returns>
5370     </member>
5371     <member name="M:System.Data.DataSet.RaisePropertyChanging(System.String)">
5372       <summary>Sends a notification that the specified <see cref="T:System.Data.DataSet" /> property is about to change.</summary>
5373       <param name="name">The name of the property that is about to change.</param>
5374     </member>
5375     <member name="M:System.Data.DataSet.ReadXml(System.IO.Stream)">
5376       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
5377       <param name="stream">An object that derives from <see cref="T:System.IO.Stream" />.</param>
5378       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5379     </member>
5380     <member name="M:System.Data.DataSet.ReadXml(System.IO.Stream,System.Data.XmlReadMode)">
5381       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
5382       <param name="stream">The <see cref="T:System.IO.Stream" /> from which to read.</param>
5383       <param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
5384       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5385     </member>
5386     <member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader)">
5387       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
5388       <param name="reader">The <see langword="TextReader" /> from which to read the schema and data.</param>
5389       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5390     </member>
5391     <member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader,System.Data.XmlReadMode)">
5392       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextReader" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
5393       <param name="reader">The <see cref="T:System.IO.TextReader" /> from which to read.</param>
5394       <param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
5395       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5396     </member>
5397     <member name="M:System.Data.DataSet.ReadXml(System.String)">
5398       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified file.</summary>
5399       <param name="fileName">The filename (including the path) from which to read.</param>
5400       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5401       <exception cref="T:System.Security.SecurityException">
5402         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
5403     </member>
5404     <member name="M:System.Data.DataSet.ReadXml(System.String,System.Data.XmlReadMode)">
5405       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified file and <see cref="T:System.Data.XmlReadMode" />.</summary>
5406       <param name="fileName">The filename (including the path) from which to read.</param>
5407       <param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
5408       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5409       <exception cref="T:System.Security.SecurityException">
5410         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
5411     </member>
5412     <member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)">
5413       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
5414       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
5415       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5416     </member>
5417     <member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader,System.Data.XmlReadMode)">
5418       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
5419       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
5420       <param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
5421       <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
5422     </member>
5423     <member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.Stream)">
5424       <summary>Reads the XML schema from the specified <see cref="T:System.IO.Stream" /> into the <see cref="T:System.Data.DataSet" />.</summary>
5425       <param name="stream">The <see cref="T:System.IO.Stream" /> from which to read.</param>
5426     </member>
5427     <member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.TextReader)">
5428       <summary>Reads the XML schema from the specified <see cref="T:System.IO.TextReader" /> into the <see cref="T:System.Data.DataSet" />.</summary>
5429       <param name="reader">The <see cref="T:System.IO.TextReader" /> from which to read.</param>
5430     </member>
5431     <member name="M:System.Data.DataSet.ReadXmlSchema(System.String)">
5432       <summary>Reads the XML schema from the specified file into the <see cref="T:System.Data.DataSet" />.</summary>
5433       <param name="fileName">The file name (including the path) from which to read.</param>
5434       <exception cref="T:System.Security.SecurityException">
5435         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
5436     </member>
5437     <member name="M:System.Data.DataSet.ReadXmlSchema(System.Xml.XmlReader)">
5438       <summary>Reads the XML schema from the specified <see cref="T:System.Xml.XmlReader" /> into the <see cref="T:System.Data.DataSet" />.</summary>
5439       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
5440     </member>
5441     <member name="M:System.Data.DataSet.ReadXmlSerializable(System.Xml.XmlReader)">
5442       <summary>Ignores attributes and returns an empty DataSet.</summary>
5443       <param name="reader">The specified XML reader.</param>
5444     </member>
5445     <member name="M:System.Data.DataSet.RejectChanges">
5446       <summary>Rolls back all the changes made to the <see cref="T:System.Data.DataSet" /> since it was created, or since the last time <see cref="M:System.Data.DataSet.AcceptChanges" /> was called.</summary>
5447     </member>
5448     <member name="P:System.Data.DataSet.Relations">
5449       <summary>Gets the collection of relations that link tables and allow navigation from parent tables to child tables.</summary>
5450       <returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains a collection of <see cref="T:System.Data.DataRelation" /> objects. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
5451     </member>
5452     <member name="P:System.Data.DataSet.RemotingFormat">
5453       <summary>Gets or sets a <see cref="T:System.Data.SerializationFormat" /> for the <see cref="T:System.Data.DataSet" /> used during remoting.</summary>
5454       <returns>A <see cref="T:System.Data.SerializationFormat" /> object.</returns>
5455     </member>
5456     <member name="M:System.Data.DataSet.Reset">
5457       <summary>Clears all tables and removes all relations, foreign constraints, and tables from the <see cref="T:System.Data.DataSet" />. Subclasses should override <see cref="M:System.Data.DataSet.Reset" /> to restore a <see cref="T:System.Data.DataSet" /> to its original state.</summary>
5458     </member>
5459     <member name="P:System.Data.DataSet.SchemaSerializationMode">
5460       <summary>Gets or sets a <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
5461       <returns>A <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</returns>
5462     </member>
5463     <member name="M:System.Data.DataSet.ShouldSerializeRelations">
5464       <summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Relations" /> property should be persisted.</summary>
5465       <returns>
5466         <see langword="true" /> if the property value has been changed from its default; otherwise, <see langword="false" />.</returns>
5467     </member>
5468     <member name="M:System.Data.DataSet.ShouldSerializeTables">
5469       <summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Tables" /> property should be persisted.</summary>
5470       <returns>
5471         <see langword="true" /> if the property value has been changed from its default; otherwise, <see langword="false" />.</returns>
5472     </member>
5473     <member name="P:System.Data.DataSet.Site">
5474       <summary>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</summary>
5475       <returns>An <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</returns>
5476     </member>
5477     <member name="P:System.Data.DataSet.System#ComponentModel#IListSource#ContainsListCollection">
5478       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</summary>
5479       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</returns>
5480     </member>
5481     <member name="M:System.Data.DataSet.System#ComponentModel#IListSource#GetList">
5482       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</summary>
5483       <returns>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</returns>
5484     </member>
5485     <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#GetSchema">
5486       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
5487       <returns>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</returns>
5488     </member>
5489     <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
5490       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
5491       <param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
5492     </member>
5493     <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
5494       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
5495       <param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
5496     </member>
5497     <member name="P:System.Data.DataSet.Tables">
5498       <summary>Gets the collection of tables contained in the <see cref="T:System.Data.DataSet" />.</summary>
5499       <returns>The <see cref="T:System.Data.DataTableCollection" /> contained by this <see cref="T:System.Data.DataSet" />. An empty collection is returned if no <see cref="T:System.Data.DataTable" /> objects exist.</returns>
5500     </member>
5501     <member name="M:System.Data.DataSet.WriteXml(System.IO.Stream)">
5502       <summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
5503       <param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
5504     </member>
5505     <member name="M:System.Data.DataSet.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
5506       <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
5507       <param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
5508       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
5509     </member>
5510     <member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter)">
5511       <summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextWriter" />.</summary>
5512       <param name="writer">The <see cref="T:System.IO.TextWriter" /> object with which to write.</param>
5513     </member>
5514     <member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
5515       <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> 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 <see langword="WriteSchema" />.</summary>
5516       <param name="writer">A <see cref="T:System.IO.TextWriter" /> object used to write the document.</param>
5517       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
5518     </member>
5519     <member name="M:System.Data.DataSet.WriteXml(System.String)">
5520       <summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> to the specified file.</summary>
5521       <param name="fileName">The file name (including the path) to which to write.</param>
5522       <exception cref="T:System.Security.SecurityException">
5523         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
5524     </member>
5525     <member name="M:System.Data.DataSet.WriteXml(System.String,System.Data.XmlWriteMode)">
5526       <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> 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 <see langword="WriteSchema" />.</summary>
5527       <param name="fileName">The file name (including the path) to which to write.</param>
5528       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
5529       <exception cref="T:System.Security.SecurityException">
5530         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
5531     </member>
5532     <member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter)">
5533       <summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
5534       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write.</param>
5535     </member>
5536     <member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
5537       <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> 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 <see langword="WriteSchema" />.</summary>
5538       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write.</param>
5539       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
5540     </member>
5541     <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream)">
5542       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.Stream" /> object.</summary>
5543       <param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
5544     </member>
5545     <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream,System.Converter{System.Type,System.String})">
5546       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.Stream" /> object.</summary>
5547       <param name="stream">A <see cref="T:System.IO.Stream" /> object to write to.</param>
5548       <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
5549     </member>
5550     <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter)">
5551       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
5552       <param name="writer">The <see cref="T:System.IO.TextWriter" /> object with which to write.</param>
5553     </member>
5554     <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter,System.Converter{System.Type,System.String})">
5555       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter" />.</summary>
5556       <param name="writer">A <see cref="T:System.IO.TextWriter" /> object to write to.</param>
5557       <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
5558     </member>
5559     <member name="M:System.Data.DataSet.WriteXmlSchema(System.String)">
5560       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to a file.</summary>
5561       <param name="fileName">The file name (including the path) to which to write.</param>
5562       <exception cref="T:System.Security.SecurityException">
5563         <see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
5564     </member>
5565     <member name="M:System.Data.DataSet.WriteXmlSchema(System.String,System.Converter{System.Type,System.String})">
5566       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to a file.</summary>
5567       <param name="fileName">The name of the file to write to.</param>
5568       <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
5569     </member>
5570     <member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter)">
5571       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to an <see cref="T:System.Xml.XmlWriter" /> object.</summary>
5572       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write to.</param>
5573     </member>
5574     <member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter,System.Converter{System.Type,System.String})">
5575       <summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
5576       <param name="writer">A <see cref="T:System.Xml.XmlWriter" /> object to write to.</param>
5577       <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
5578     </member>
5579     <member name="T:System.Data.DataSetDateTime">
5580       <summary>Describes the serialization format for <see cref="T:System.DateTime" /> columns in a <see cref="T:System.Data.DataSet" />.</summary>
5581     </member>
5582     <member name="F:System.Data.DataSetDateTime.Local">
5583       <summary>
5584         <see langword="DateTime" /> is always stored in Local. If <see cref="F:System.Data.DataSetDateTime.Utc" /> or <see cref="F:System.Data.DataSetDateTime.Unspecified" /> is assigned to a column in this mode, it is first converted into Local. Serialization in this mode is always performed in Local. There is an offset during serialization.</summary>
5585     </member>
5586     <member name="F:System.Data.DataSetDateTime.Unspecified">
5587       <summary>
5588         <see langword="DateTime" /> is always stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Utc" /> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified" />. Serialization in this mode does not cause an offset.</summary>
5589     </member>
5590     <member name="F:System.Data.DataSetDateTime.UnspecifiedLocal">
5591       <summary>
5592         <see langword="DateTime" /> is stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Utc" /> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified" />. Serialization in this mode causes offset. This is the default behavior and is backward compatible. This option should be thought of as being Unspecified in storage but applying an offset that is similar to <see cref="F:System.Data.DataSetDateTime.Local" /> during serialization.</summary>
5593     </member>
5594     <member name="F:System.Data.DataSetDateTime.Utc">
5595       <summary>
5596         <see langword="DateTime" /> is stored in Universal Coordinated Time (UTC). If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Unspecified" /> is assigned to a column in this mode, it is first converted into <see langword="Utc" /> format. Serialization in this mode is always performed in <see langword="Utc" />. There is no offset during serialization.</summary>
5597     </member>
5598     <member name="T:System.Data.DataSysDescriptionAttribute">
5599       <summary>Marks a property, event, or extender with a description. Visual designers can display this description when referencing the member.</summary>
5600     </member>
5601     <member name="M:System.Data.DataSysDescriptionAttribute.#ctor(System.String)">
5602       <summary>Initializes a new instance of the <see cref="T:System.Data.DataSysDescriptionAttribute" /> class using the specified description string.</summary>
5603       <param name="description">The description string.</param>
5604     </member>
5605     <member name="P:System.Data.DataSysDescriptionAttribute.Description">
5606       <summary>Gets the text for the description.</summary>
5607       <returns>The description string.</returns>
5608     </member>
5609     <member name="T:System.Data.DataTable">
5610       <summary>Represents one table of in-memory data.</summary>
5611     </member>
5612     <member name="M:System.Data.DataTable.#ctor">
5613       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with no arguments.</summary>
5614     </member>
5615     <member name="M:System.Data.DataTable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5616       <summary>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" />.</summary>
5617       <param name="info">The data needed to serialize or deserialize an object.</param>
5618       <param name="context">The source and destination of a given serialized stream.</param>
5619     </member>
5620     <member name="M:System.Data.DataTable.#ctor(System.String)">
5621       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with the specified table name.</summary>
5622       <param name="tableName">The name to give the table. If <paramref name="tableName" /> is <see langword="null" /> or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />.</param>
5623     </member>
5624     <member name="M:System.Data.DataTable.#ctor(System.String,System.String)">
5625       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class using the specified table name and namespace.</summary>
5626       <param name="tableName">The name to give the table. If <paramref name="tableName" /> is <see langword="null" /> or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />.</param>
5627       <param name="tableNamespace">The namespace for the XML representation of the data stored in the <see langword="DataTable" />.</param>
5628     </member>
5629     <member name="M:System.Data.DataTable.AcceptChanges">
5630       <summary>Commits all the changes made to this table since the last time <see cref="M:System.Data.DataTable.AcceptChanges" /> was called.</summary>
5631     </member>
5632     <member name="M:System.Data.DataTable.BeginInit">
5633       <summary>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.</summary>
5634     </member>
5635     <member name="M:System.Data.DataTable.BeginLoadData">
5636       <summary>Turns off notifications, index maintenance, and constraints while loading data.</summary>
5637     </member>
5638     <member name="P:System.Data.DataTable.CaseSensitive">
5639       <summary>Indicates whether string comparisons within the table are case-sensitive.</summary>
5640       <returns>
5641         <see langword="true" /> if the comparison is case-sensitive; otherwise <see langword="false" />. The default is set to the parent <see cref="T:System.Data.DataSet" /> object's <see cref="P:System.Data.DataSet.CaseSensitive" /> property, or <see langword="false" /> if the <see cref="T:System.Data.DataTable" /> was created independently of a <see cref="T:System.Data.DataSet" />.</returns>
5642     </member>
5643     <member name="P:System.Data.DataTable.ChildRelations">
5644       <summary>Gets the collection of child relations for this <see cref="T:System.Data.DataTable" />.</summary>
5645       <returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains the child relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
5646     </member>
5647     <member name="M:System.Data.DataTable.Clear">
5648       <summary>Clears the <see cref="T:System.Data.DataTable" /> of all data.</summary>
5649     </member>
5650     <member name="M:System.Data.DataTable.Clone">
5651       <summary>Clones the structure of the <see cref="T:System.Data.DataTable" />, including all <see cref="T:System.Data.DataTable" /> schemas and constraints.</summary>
5652       <returns>A new <see cref="T:System.Data.DataTable" /> with the same schema as the current <see cref="T:System.Data.DataTable" />.</returns>
5653     </member>
5654     <member name="E:System.Data.DataTable.ColumnChanged">
5655       <summary>Occurs after a value has been changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</summary>
5656     </member>
5657     <member name="E:System.Data.DataTable.ColumnChanging">
5658       <summary>Occurs when a value is being changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</summary>
5659     </member>
5660     <member name="P:System.Data.DataTable.Columns">
5661       <summary>Gets the collection of columns that belong to this table.</summary>
5662       <returns>A <see cref="T:System.Data.DataColumnCollection" /> that contains the collection of <see cref="T:System.Data.DataColumn" /> objects for the table. An empty collection is returned if no <see cref="T:System.Data.DataColumn" /> objects exist.</returns>
5663     </member>
5664     <member name="M:System.Data.DataTable.Compute(System.String,System.String)">
5665       <summary>Computes the given expression on the current rows that pass the filter criteria.</summary>
5666       <param name="expression">The expression to compute.</param>
5667       <param name="filter">The filter to limit the rows that evaluate in the expression.</param>
5668       <returns>An <see cref="T:System.Object" />, set to the result of the computation. If the expression evaluates to null, the return value will be <see cref="F:System.DBNull.Value" />.</returns>
5669     </member>
5670     <member name="P:System.Data.DataTable.Constraints">
5671       <summary>Gets the collection of constraints maintained by this table.</summary>
5672       <returns>A <see cref="T:System.Data.ConstraintCollection" /> that contains the collection of <see cref="T:System.Data.Constraint" /> objects for the table. An empty collection is returned if no <see cref="T:System.Data.Constraint" /> objects exist.</returns>
5673     </member>
5674     <member name="M:System.Data.DataTable.Copy">
5675       <summary>Copies both the structure and data for this <see cref="T:System.Data.DataTable" />.</summary>
5676       <returns>A new <see cref="T:System.Data.DataTable" /> with the same structure (table schemas and constraints) and data as this <see cref="T:System.Data.DataTable" />.
5677 If these classes have been derived, the copy will also be of the same derived classes.
5678 <see cref="M:System.Data.DataTable.Copy" /> creates a new <see cref="T:System.Data.DataTable" /> with the same structure and data as the original <see cref="T:System.Data.DataTable" />. To copy the structure to a new <see cref="T:System.Data.DataTable" />, but not the data, use <see cref="M:System.Data.DataTable.Clone" />.</returns>
5679     </member>
5680     <member name="M:System.Data.DataTable.CreateDataReader">
5681       <summary>Returns a <see cref="T:System.Data.DataTableReader" /> corresponding to the data within this <see cref="T:System.Data.DataTable" />.</summary>
5682       <returns>A <see cref="T:System.Data.DataTableReader" /> containing one result set, corresponding to the source <see cref="T:System.Data.DataTable" /> instance.</returns>
5683     </member>
5684     <member name="M:System.Data.DataTable.CreateInstance">
5685       <summary>Creates a new instance of <see cref="T:System.Data.DataTable" />.</summary>
5686       <returns>The new expression.</returns>
5687     </member>
5688     <member name="P:System.Data.DataTable.DataSet">
5689       <summary>Gets the <see cref="T:System.Data.DataSet" /> to which this table belongs.</summary>
5690       <returns>The <see cref="T:System.Data.DataSet" /> to which this table belongs.</returns>
5691     </member>
5692     <member name="P:System.Data.DataTable.DefaultView">
5693       <summary>Gets a customized view of the table that may include a filtered view, or a cursor position.</summary>
5694       <returns>The <see cref="T:System.Data.DataView" /> associated with the <see cref="T:System.Data.DataTable" />.</returns>
5695     </member>
5696     <member name="P:System.Data.DataTable.DisplayExpression">
5697       <summary>Gets or sets the expression that returns a value used to represent this table in the user interface. The <see langword="DisplayExpression" /> property lets you display the name of this table in a user interface.</summary>
5698       <returns>A display string.</returns>
5699     </member>
5700     <member name="M:System.Data.DataTable.EndInit">
5701       <summary>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.</summary>
5702     </member>
5703     <member name="M:System.Data.DataTable.EndLoadData">
5704       <summary>Turns on notifications, index maintenance, and constraints after loading data.</summary>
5705     </member>
5706     <member name="P:System.Data.DataTable.ExtendedProperties">
5707       <summary>Gets the collection of customized user information.</summary>
5708       <returns>A <see cref="T:System.Data.PropertyCollection" /> that contains custom user information.</returns>
5709     </member>
5710     <member name="F:System.Data.DataTable.fInitInProgress">
5711       <summary>Checks whether initialization is in progress. The initialization occurs at run time.</summary>
5712     </member>
5713     <member name="M:System.Data.DataTable.GetChanges">
5714       <summary>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.</summary>
5715       <returns>A copy of the changes from this <see cref="T:System.Data.DataTable" />, or <see langword="null" /> if no changes are found.</returns>
5716     </member>
5717     <member name="M:System.Data.DataTable.GetChanges(System.Data.DataRowState)">
5718       <summary>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" />.</summary>
5719       <param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
5720       <returns>A filtered copy of the <see cref="T:System.Data.DataTable" /> that can have actions performed on it, and later be merged back in the <see cref="T:System.Data.DataTable" /> using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no rows of the desired <see cref="T:System.Data.DataRowState" /> are found, the method returns <see langword="null" />.</returns>
5721     </member>
5722     <member name="M:System.Data.DataTable.GetDataTableSchema(System.Xml.Schema.XmlSchemaSet)">
5723       <summary>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.</summary>
5724       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance.</param>
5725       <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance.</returns>
5726     </member>
5727     <member name="M:System.Data.DataTable.GetErrors">
5728       <summary>Gets an array of <see cref="T:System.Data.DataRow" /> objects that contain errors.</summary>
5729       <returns>An array of <see cref="T:System.Data.DataRow" /> objects that have errors.</returns>
5730     </member>
5731     <member name="M:System.Data.DataTable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5732       <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataTable" />.</summary>
5733       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized data associated with the <see cref="T:System.Data.DataTable" />.</param>
5734       <param name="context">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>
5735       <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
5736     </member>
5737     <member name="M:System.Data.DataTable.GetRowType">
5738       <summary>Gets the row type.</summary>
5739       <returns>The type of the <see cref="T:System.Data.DataRow" />.</returns>
5740     </member>
5741     <member name="M:System.Data.DataTable.GetSchema">
5742       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
5743       <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
5744     </member>
5745     <member name="P:System.Data.DataTable.HasErrors">
5746       <summary>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.</summary>
5747       <returns>
5748         <see langword="true" /> if errors exist; otherwise <see langword="false" />.</returns>
5749     </member>
5750     <member name="M:System.Data.DataTable.ImportRow(System.Data.DataRow)">
5751       <summary>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.</summary>
5752       <param name="row">The <see cref="T:System.Data.DataRow" /> to be imported.</param>
5753     </member>
5754     <member name="E:System.Data.DataTable.Initialized">
5755       <summary>Occurs after the <see cref="T:System.Data.DataTable" /> is initialized.</summary>
5756     </member>
5757     <member name="P:System.Data.DataTable.IsInitialized">
5758       <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTable" /> is initialized.</summary>
5759       <returns>
5760         <see langword="true" /> to indicate the component has completed initialization; otherwise <see langword="false" />.</returns>
5761     </member>
5762     <member name="M:System.Data.DataTable.Load(System.Data.IDataReader)">
5763       <summary>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.</summary>
5764       <param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
5765     </member>
5766     <member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption)">
5767       <summary>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 langword="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.</summary>
5768       <param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
5769       <param name="loadOption">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>
5770     </member>
5771     <member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler)">
5772       <summary>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.</summary>
5773       <param name="reader">A <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
5774       <param name="loadOption">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>
5775       <param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler" /> delegate to call when an error occurs while loading data.</param>
5776     </member>
5777     <member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)">
5778       <summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
5779       <param name="values">An array of values used to create the new row.</param>
5780       <param name="fAcceptChanges">
5781         <see langword="true" /> to accept changes; otherwise <see langword="false" />.</param>
5782       <returns>The new <see cref="T:System.Data.DataRow" />.</returns>
5783       <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
5784       <exception cref="T:System.InvalidCastException">A value doesn't match its respective column type.</exception>
5785       <exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
5786       <exception cref="T:System.Data.NoNullAllowedException">Attempting to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
5787     </member>
5788     <member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Data.LoadOption)">
5789       <summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
5790       <param name="values">An array of values used to create the new row.</param>
5791       <param name="loadOption">Used to determine how the array values are applied to the corresponding values in an existing row.</param>
5792       <returns>The new <see cref="T:System.Data.DataRow" />.</returns>
5793     </member>
5794     <member name="P:System.Data.DataTable.Locale">
5795       <summary>Gets or sets the locale information used to compare strings within the table.</summary>
5796       <returns>A <see cref="T:System.Globalization.CultureInfo" /> that contains data about the user's machine locale. The default is the <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) to which the <see cref="T:System.Data.DataTable" /> belongs; if the table doesn't belong to a <see cref="T:System.Data.DataSet" />, the default is the current system <see cref="T:System.Globalization.CultureInfo" />.</returns>
5797     </member>
5798     <member name="M:System.Data.DataTable.Merge(System.Data.DataTable)">
5799       <summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see cref="T:System.Data.DataTable" />.</summary>
5800       <param name="table">The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
5801     </member>
5802     <member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean)">
5803       <summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see langword="DataTable" />, indicating whether to preserve changes in the current <see langword="DataTable" />.</summary>
5804       <param name="table">The <see langword="DataTable" /> to be merged with the current <see langword="DataTable" />.</param>
5805       <param name="preserveChanges">
5806         <see langword="true" />, to preserve changes in the current <see langword="DataTable" />; otherwise <see langword="false" />.</param>
5807     </member>
5808     <member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
5809       <summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see langword="DataTable" />, indicating whether to preserve changes and how to handle missing schema in the current <see langword="DataTable" />.</summary>
5810       <param name="table">The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
5811       <param name="preserveChanges">
5812         <see langword="true" />, to preserve changes in the current <see cref="T:System.Data.DataTable" />; otherwise <see langword="false" />.</param>
5813       <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
5814     </member>
5815     <member name="P:System.Data.DataTable.MinimumCapacity">
5816       <summary>Gets or sets the initial starting size for this table.</summary>
5817       <returns>The initial starting size in rows of this table. The default is 50.</returns>
5818     </member>
5819     <member name="P:System.Data.DataTable.Namespace">
5820       <summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</summary>
5821       <returns>The namespace of the <see cref="T:System.Data.DataTable" />.</returns>
5822     </member>
5823     <member name="M:System.Data.DataTable.NewRow">
5824       <summary>Creates a new <see cref="T:System.Data.DataRow" /> with the same schema as the table.</summary>
5825       <returns>A <see cref="T:System.Data.DataRow" /> with the same schema as the <see cref="T:System.Data.DataTable" />.</returns>
5826     </member>
5827     <member name="M:System.Data.DataTable.NewRowArray(System.Int32)">
5828       <summary>Returns an array of <see cref="T:System.Data.DataRow" />.</summary>
5829       <param name="size">A <see cref="T:System.Int32" /> value that describes the size of the array.</param>
5830       <returns>The new array.</returns>
5831     </member>
5832     <member name="M:System.Data.DataTable.NewRowFromBuilder(System.Data.DataRowBuilder)">
5833       <summary>Creates a new row from an existing row.</summary>
5834       <param name="builder">A <see cref="T:System.Data.DataRowBuilder" /> object.</param>
5835       <returns>A <see cref="T:System.Data.DataRow" /> derived class.</returns>
5836     </member>
5837     <member name="M:System.Data.DataTable.OnColumnChanged(System.Data.DataColumnChangeEventArgs)">
5838       <summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanged" /> event.</summary>
5839       <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
5840     </member>
5841     <member name="M:System.Data.DataTable.OnColumnChanging(System.Data.DataColumnChangeEventArgs)">
5842       <summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
5843       <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
5844     </member>
5845     <member name="M:System.Data.DataTable.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
5846       <summary>Raises the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> event.</summary>
5847       <param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
5848     </member>
5849     <member name="M:System.Data.DataTable.OnRemoveColumn(System.Data.DataColumn)">
5850       <summary>Notifies the <see cref="T:System.Data.DataTable" /> that a <see cref="T:System.Data.DataColumn" /> is being removed.</summary>
5851       <param name="column">The <see cref="T:System.Data.DataColumn" /> being removed.</param>
5852     </member>
5853     <member name="M:System.Data.DataTable.OnRowChanged(System.Data.DataRowChangeEventArgs)">
5854       <summary>Raises the <see cref="E:System.Data.DataTable.RowChanged" /> event.</summary>
5855       <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
5856     </member>
5857     <member name="M:System.Data.DataTable.OnRowChanging(System.Data.DataRowChangeEventArgs)">
5858       <summary>Raises the <see cref="E:System.Data.DataTable.RowChanging" /> event.</summary>
5859       <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
5860     </member>
5861     <member name="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)">
5862       <summary>Raises the <see cref="E:System.Data.DataTable.RowDeleted" /> event.</summary>
5863       <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
5864     </member>
5865     <member name="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)">
5866       <summary>Raises the <see cref="E:System.Data.DataTable.RowDeleting" /> event.</summary>
5867       <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
5868     </member>
5869     <member name="M:System.Data.DataTable.OnTableCleared(System.Data.DataTableClearEventArgs)">
5870       <summary>Raises the <see cref="E:System.Data.DataTable.TableCleared" /> event.</summary>
5871       <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
5872     </member>
5873     <member name="M:System.Data.DataTable.OnTableClearing(System.Data.DataTableClearEventArgs)">
5874       <summary>Raises the <see cref="E:System.Data.DataTable.TableClearing" /> event.</summary>
5875       <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
5876     </member>
5877     <member name="M:System.Data.DataTable.OnTableNewRow(System.Data.DataTableNewRowEventArgs)">
5878       <summary>Raises the <see cref="E:System.Data.DataTable.TableNewRow" /> event.</summary>
5879       <param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data.</param>
5880     </member>
5881     <member name="P:System.Data.DataTable.ParentRelations">
5882       <summary>Gets the collection of parent relations for this <see cref="T:System.Data.DataTable" />.</summary>
5883       <returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains the parent relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
5884     </member>
5885     <member name="P:System.Data.DataTable.Prefix">
5886       <summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</summary>
5887       <returns>The prefix of the <see cref="T:System.Data.DataTable" />.</returns>
5888     </member>
5889     <member name="P:System.Data.DataTable.PrimaryKey">
5890       <summary>Gets or sets an array of columns that function as primary keys for the data table.</summary>
5891       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
5892       <exception cref="T:System.Data.DataException">The key is a foreign key.</exception>
5893     </member>
5894     <member name="M:System.Data.DataTable.ReadXml(System.IO.Stream)">
5895       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
5896       <param name="stream">An object that derives from <see cref="T:System.IO.Stream" /></param>
5897       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5898     </member>
5899     <member name="M:System.Data.DataTable.ReadXml(System.IO.TextReader)">
5900       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
5901       <param name="reader">The <see cref="T:System.IO.TextReader" /> that will be used to read the data.</param>
5902       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5903     </member>
5904     <member name="M:System.Data.DataTable.ReadXml(System.String)">
5905       <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> from the specified file.</summary>
5906       <param name="fileName">The name of the file from which to read the data.</param>
5907       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5908     </member>
5909     <member name="M:System.Data.DataTable.ReadXml(System.Xml.XmlReader)">
5910       <summary>Reads XML Schema and Data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
5911       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> that will be used to read the data.</param>
5912       <returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
5913     </member>
5914     <member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.Stream)">
5915       <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified stream.</summary>
5916       <param name="stream">The stream used to read the schema.</param>
5917     </member>
5918     <member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.TextReader)">
5919       <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
5920       <param name="reader">The <see cref="T:System.IO.TextReader" /> used to read the schema information.</param>
5921     </member>
5922     <member name="M:System.Data.DataTable.ReadXmlSchema(System.String)">
5923       <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> from the specified file.</summary>
5924       <param name="fileName">The name of the file from which to read the schema information.</param>
5925     </member>
5926     <member name="M:System.Data.DataTable.ReadXmlSchema(System.Xml.XmlReader)">
5927       <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
5928       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the schema information.</param>
5929     </member>
5930     <member name="M:System.Data.DataTable.ReadXmlSerializable(System.Xml.XmlReader)">
5931       <summary>Reads from an XML stream.</summary>
5932       <param name="reader">A <see cref="T:System.Xml.XmlReader" /> object.</param>
5933     </member>
5934     <member name="M:System.Data.DataTable.RejectChanges">
5935       <summary>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.</summary>
5936     </member>
5937     <member name="P:System.Data.DataTable.RemotingFormat">
5938       <summary>Gets or sets the serialization format.</summary>
5939       <returns>A <see cref="T:System.Data.SerializationFormat" /> enumeration specifying either <see langword="Binary" /> or <see langword="Xml" /> serialization.</returns>
5940     </member>
5941     <member name="M:System.Data.DataTable.Reset">
5942       <summary>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.</summary>
5943     </member>
5944     <member name="E:System.Data.DataTable.RowChanged">
5945       <summary>Occurs after a <see cref="T:System.Data.DataRow" /> has been changed successfully.</summary>
5946     </member>
5947     <member name="E:System.Data.DataTable.RowChanging">
5948       <summary>Occurs when a <see cref="T:System.Data.DataRow" /> is changing.</summary>
5949     </member>
5950     <member name="E:System.Data.DataTable.RowDeleted">
5951       <summary>Occurs after a row in the table has been deleted.</summary>
5952     </member>
5953     <member name="E:System.Data.DataTable.RowDeleting">
5954       <summary>Occurs before a row in the table is about to be deleted.</summary>
5955     </member>
5956     <member name="P:System.Data.DataTable.Rows">
5957       <summary>Gets the collection of rows that belong to this table.</summary>
5958       <returns>A <see cref="T:System.Data.DataRowCollection" /> that contains <see cref="T:System.Data.DataRow" /> objects; otherwise a null value if no <see cref="T:System.Data.DataRow" /> objects exist.</returns>
5959     </member>
5960     <member name="M:System.Data.DataTable.Select">
5961       <summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects.</summary>
5962       <returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
5963     </member>
5964     <member name="M:System.Data.DataTable.Select(System.String)">
5965       <summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria.</summary>
5966       <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
5967       <returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
5968     </member>
5969     <member name="M:System.Data.DataTable.Select(System.String,System.String)">
5970       <summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria, in the specified sort order.</summary>
5971       <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
5972       <param name="sort">A string specifying the column and sort direction.</param>
5973       <returns>An array of <see cref="T:System.Data.DataRow" /> objects matching the filter expression.</returns>
5974     </member>
5975     <member name="M:System.Data.DataTable.Select(System.String,System.String,System.Data.DataViewRowState)">
5976       <summary>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.</summary>
5977       <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
5978       <param name="sort">A string specifying the column and sort direction.</param>
5979       <param name="recordStates">One of the <see cref="T:System.Data.DataViewRowState" /> values.</param>
5980       <returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
5981     </member>
5982     <member name="P:System.Data.DataTable.Site">
5983       <summary>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataTable" />.</summary>
5984       <returns>An <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataTable" />.</returns>
5985     </member>
5986     <member name="P:System.Data.DataTable.System#ComponentModel#IListSource#ContainsListCollection">
5987       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</summary>
5988       <returns>
5989         <see langword="true" /> if the collection is a collection of <see cref="T:System.Collections.IList" /> objects; otherwise, <see langword="false" />.</returns>
5990     </member>
5991     <member name="M:System.Data.DataTable.System#ComponentModel#IListSource#GetList">
5992       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</summary>
5993       <returns>An <see cref="T:System.Collections.IList" /> that can be bound to a data source from the object.</returns>
5994     </member>
5995     <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#GetSchema">
5996       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
5997       <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
5998     </member>
5999     <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
6000       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
6001       <param name="reader">An XmlReader.</param>
6002     </member>
6003     <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
6004       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
6005       <param name="writer">An XmlWriter.</param>
6006     </member>
6007     <member name="E:System.Data.DataTable.TableCleared">
6008       <summary>Occurs after a <see cref="T:System.Data.DataTable" /> is cleared.</summary>
6009     </member>
6010     <member name="E:System.Data.DataTable.TableClearing">
6011       <summary>Occurs when a <see cref="T:System.Data.DataTable" /> is cleared.</summary>
6012     </member>
6013     <member name="P:System.Data.DataTable.TableName">
6014       <summary>Gets or sets the name of the <see cref="T:System.Data.DataTable" />.</summary>
6015       <returns>The name of the <see cref="T:System.Data.DataTable" />.</returns>
6016       <exception cref="T:System.ArgumentException">
6017         <see langword="null" /> or empty string ("") is passed in and this table belongs to a collection.</exception>
6018       <exception cref="T:System.Data.DuplicateNameException">The table belongs to a collection that already has a table with the same name. (Comparison is case-sensitive).</exception>
6019     </member>
6020     <member name="E:System.Data.DataTable.TableNewRow">
6021       <summary>Occurs when a new <see cref="T:System.Data.DataRow" /> is inserted.</summary>
6022     </member>
6023     <member name="M:System.Data.DataTable.ToString">
6024       <summary>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.</summary>
6025       <returns>A string consisting of the <see cref="P:System.Data.DataTable.TableName" /> and the <see cref="P:System.Data.DataTable.DisplayExpression" /> values.</returns>
6026     </member>
6027     <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream)">
6028       <summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.Stream" />.</summary>
6029       <param name="stream">The stream to which the data will be written.</param>
6030     </member>
6031     <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Boolean)">
6032       <summary>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 <see langword="true" />.</summary>
6033       <param name="stream">The stream to which the data will be written.</param>
6034       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6035     </member>
6036     <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
6037       <summary>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 <see langword="WriteSchema" />.</summary>
6038       <param name="stream">The stream to which the data will be written.</param>
6039       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6040     </member>
6041     <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode,System.Boolean)">
6042       <summary>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 <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
6043       <param name="stream">The stream to which the data will be written.</param>
6044       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6045       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6046     </member>
6047     <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter)">
6048       <summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.TextWriter" />.</summary>
6049       <param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write the content.</param>
6050     </member>
6051     <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Boolean)">
6052       <summary>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 <see langword="true" />.</summary>
6053       <param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write the content.</param>
6054       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6055     </member>
6056     <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
6057       <summary>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 <see langword="WriteSchema" />.</summary>
6058       <param name="writer">The <see cref="T:System.IO.TextWriter" /> used to write the document.</param>
6059       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6060     </member>
6061     <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode,System.Boolean)">
6062       <summary>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 <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
6063       <param name="writer">The <see cref="T:System.IO.TextWriter" /> used to write the document.</param>
6064       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6065       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6066     </member>
6067     <member name="M:System.Data.DataTable.WriteXml(System.String)">
6068       <summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified file.</summary>
6069       <param name="fileName">The file to which to write the XML data.</param>
6070     </member>
6071     <member name="M:System.Data.DataTable.WriteXml(System.String,System.Boolean)">
6072       <summary>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 <see langword="true" />.</summary>
6073       <param name="fileName">The file to which to write the XML data.</param>
6074       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6075     </member>
6076     <member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode)">
6077       <summary>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 <see langword="WriteSchema" />.</summary>
6078       <param name="fileName">The name of the file to which the data will be written.</param>
6079       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6080     </member>
6081     <member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode,System.Boolean)">
6082       <summary>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 <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
6083       <param name="fileName">The name of the file to which the data will be written.</param>
6084       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6085       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6086     </member>
6087     <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter)">
6088       <summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
6089       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents.</param>
6090     </member>
6091     <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Boolean)">
6092       <summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
6093       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents.</param>
6094       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6095     </member>
6096     <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
6097       <summary>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 <see langword="WriteSchema" />.</summary>
6098       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
6099       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6100     </member>
6101     <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode,System.Boolean)">
6102       <summary>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 <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
6103       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
6104       <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
6105       <param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
6106     </member>
6107     <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream)">
6108       <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified stream.</summary>
6109       <param name="stream">The stream to which the XML schema will be written.</param>
6110     </member>
6111     <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream,System.Boolean)">
6112       <summary>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 <see langword="true" />.</summary>
6113       <param name="stream">The stream to which the XML schema will be written.</param>
6114       <param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
6115     </member>
6116     <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter)">
6117       <summary>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" />.</summary>
6118       <param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write.</param>
6119     </member>
6120     <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter,System.Boolean)">
6121       <summary>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 <see langword="true" />.</summary>
6122       <param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write.</param>
6123       <param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
6124     </member>
6125     <member name="M:System.Data.DataTable.WriteXmlSchema(System.String)">
6126       <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified file.</summary>
6127       <param name="fileName">The name of the file to use.</param>
6128     </member>
6129     <member name="M:System.Data.DataTable.WriteXmlSchema(System.String,System.Boolean)">
6130       <summary>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 <see langword="true" />.</summary>
6131       <param name="fileName">The name of the file to use.</param>
6132       <param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
6133     </member>
6134     <member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter)">
6135       <summary>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" />.</summary>
6136       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to use.</param>
6137     </member>
6138     <member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter,System.Boolean)">
6139       <summary>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 <see langword="true" />.</summary>
6140       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
6141       <param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
6142     </member>
6143     <member name="T:System.Data.DataTableClearEventArgs">
6144       <summary>Provides data for the <see cref="M:System.Data.DataTable.Clear" /> method.</summary>
6145     </member>
6146     <member name="M:System.Data.DataTableClearEventArgs.#ctor(System.Data.DataTable)">
6147       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableClearEventArgs" /> class.</summary>
6148       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> whose rows are being cleared.</param>
6149     </member>
6150     <member name="P:System.Data.DataTableClearEventArgs.Table">
6151       <summary>Gets the table whose rows are being cleared.</summary>
6152       <returns>The <see cref="T:System.Data.DataTable" /> whose rows are being cleared.</returns>
6153     </member>
6154     <member name="P:System.Data.DataTableClearEventArgs.TableName">
6155       <summary>Gets the table name whose rows are being cleared.</summary>
6156       <returns>A <see cref="T:System.String" /> indicating the table name.</returns>
6157     </member>
6158     <member name="P:System.Data.DataTableClearEventArgs.TableNamespace">
6159       <summary>Gets the namespace of the table whose rows are being cleared.</summary>
6160       <returns>A <see cref="T:System.String" /> indicating the namespace name.</returns>
6161     </member>
6162     <member name="T:System.Data.DataTableClearEventHandler">
6163       <summary>Represents the method that handles the <see cref="M:System.Data.DataTable.Clear" /> method.</summary>
6164       <param name="sender">The source of the event.</param>
6165       <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
6166     </member>
6167     <member name="T:System.Data.DataTableCollection">
6168       <summary>Represents the collection of tables for the <see cref="T:System.Data.DataSet" />.</summary>
6169     </member>
6170     <member name="M:System.Data.DataTableCollection.Add">
6171       <summary>Creates a new <see cref="T:System.Data.DataTable" /> object by using a default name and adds it to the collection.</summary>
6172       <returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
6173     </member>
6174     <member name="M:System.Data.DataTableCollection.Add(System.Data.DataTable)">
6175       <summary>Adds the specified <see langword="DataTable" /> to the collection.</summary>
6176       <param name="table">The <see langword="DataTable" /> object to add.</param>
6177       <exception cref="T:System.ArgumentNullException">The value specified for the table is <see langword="null" />.</exception>
6178       <exception cref="T:System.ArgumentException">The table already belongs to this collection, or belongs to another collection.</exception>
6179       <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. The comparison is not case sensitive.</exception>
6180     </member>
6181     <member name="M:System.Data.DataTableCollection.Add(System.String)">
6182       <summary>Creates a <see cref="T:System.Data.DataTable" /> object by using the specified name and adds it to the collection.</summary>
6183       <param name="name">The name to give the created <see cref="T:System.Data.DataTable" />.</param>
6184       <returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
6185       <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
6186     </member>
6187     <member name="M:System.Data.DataTableCollection.Add(System.String,System.String)">
6188       <summary>Creates a <see cref="T:System.Data.DataTable" /> object by using the specified name and adds it to the collection.</summary>
6189       <param name="name">The name to give the created <see cref="T:System.Data.DataTable" />.</param>
6190       <param name="tableNamespace">The namespace to give the created <see cref="T:System.Data.DataTable" />.</param>
6191       <returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
6192       <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
6193     </member>
6194     <member name="M:System.Data.DataTableCollection.AddRange(System.Data.DataTable[])">
6195       <summary>Copies the elements of the specified <see cref="T:System.Data.DataTable" /> array to the end of the collection.</summary>
6196       <param name="tables">The array of <see cref="T:System.Data.DataTable" /> objects to add to the collection.</param>
6197     </member>
6198     <member name="M:System.Data.DataTableCollection.CanRemove(System.Data.DataTable)">
6199       <summary>Verifies whether the specified <see cref="T:System.Data.DataTable" /> object can be removed from the collection.</summary>
6200       <param name="table">The <see langword="DataTable" /> in the collection to perform the check against.</param>
6201       <returns>
6202         <see langword="true" /> if the table can be removed; otherwise <see langword="false" />.</returns>
6203     </member>
6204     <member name="M:System.Data.DataTableCollection.Clear">
6205       <summary>Clears the collection of all <see cref="T:System.Data.DataTable" /> objects.</summary>
6206     </member>
6207     <member name="E:System.Data.DataTableCollection.CollectionChanged">
6208       <summary>Occurs after the <see cref="T:System.Data.DataTableCollection" /> is changed because of <see cref="T:System.Data.DataTable" /> objects being added or removed.</summary>
6209     </member>
6210     <member name="E:System.Data.DataTableCollection.CollectionChanging">
6211       <summary>Occurs while the <see cref="T:System.Data.DataTableCollection" /> is changing because of <see cref="T:System.Data.DataTable" /> objects being added or removed.</summary>
6212     </member>
6213     <member name="M:System.Data.DataTableCollection.Contains(System.String)">
6214       <summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable" /> object with the specified name exists in the collection.</summary>
6215       <param name="name">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
6216       <returns>
6217         <see langword="true" /> if the specified table exists; otherwise <see langword="false" />.</returns>
6218     </member>
6219     <member name="M:System.Data.DataTableCollection.Contains(System.String,System.String)">
6220       <summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable" /> object with the specified name and table namespace exists in the collection.</summary>
6221       <param name="name">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
6222       <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
6223       <returns>
6224         <see langword="true" /> if the specified table exists; otherwise <see langword="false" />.</returns>
6225     </member>
6226     <member name="M:System.Data.DataTableCollection.CopyTo(System.Data.DataTable[],System.Int32)">
6227       <summary>Copies all the elements of the current <see cref="T:System.Data.DataTableCollection" /> to a one-dimensional <see cref="T:System.Array" />, starting at the specified destination array index.</summary>
6228       <param name="array">The one-dimensional <see cref="T:System.Array" /> to copy the current <see cref="T:System.Data.DataTableCollection" /> object's elements into.</param>
6229       <param name="index">The destination <see cref="T:System.Array" /> index to start copying into.</param>
6230     </member>
6231     <member name="M:System.Data.DataTableCollection.IndexOf(System.Data.DataTable)">
6232       <summary>Gets the index of the specified <see cref="T:System.Data.DataTable" /> object.</summary>
6233       <param name="table">The <see langword="DataTable" /> to search for.</param>
6234       <returns>The zero-based index of the table, or -1 if the table is not found in the collection.</returns>
6235     </member>
6236     <member name="M:System.Data.DataTableCollection.IndexOf(System.String)">
6237       <summary>Gets the index in the collection of the <see cref="T:System.Data.DataTable" /> object with the specified name.</summary>
6238       <param name="tableName">The name of the <see langword="DataTable" /> object to look for.</param>
6239       <returns>The zero-based index of the <see langword="DataTable" /> with the specified name, or -1 if the table does not exist in the collection.
6240
6241 Returns -1 when two or more tables have the same name but different namespaces. The call does not succeed if there is any ambiguity when matching a table name to exactly one table.</returns>
6242     </member>
6243     <member name="M:System.Data.DataTableCollection.IndexOf(System.String,System.String)">
6244       <summary>Gets the index in the collection of the specified <see cref="T:System.Data.DataTable" /> object.</summary>
6245       <param name="tableName">The name of the <see cref="T:System.Data.DataTable" /> object to look for.</param>
6246       <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
6247       <returns>The zero-based index of the <see cref="T:System.Data.DataTable" /> with the specified name, or -1 if the table does not exist in the collection.</returns>
6248     </member>
6249     <member name="P:System.Data.DataTableCollection.Item(System.Int32)">
6250       <summary>Gets the <see cref="T:System.Data.DataTable" /> object at the specified index.</summary>
6251       <param name="index">The zero-based index of the <see cref="T:System.Data.DataTable" /> to find.</param>
6252       <returns>A <see cref="T:System.Data.DataTable" /> with the specified index; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
6253       <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
6254     </member>
6255     <member name="P:System.Data.DataTableCollection.Item(System.String)">
6256       <summary>Gets the <see cref="T:System.Data.DataTable" /> object with the specified name.</summary>
6257       <param name="name">The name of the <see langword="DataTable" /> to find.</param>
6258       <returns>A <see cref="T:System.Data.DataTable" /> with the specified name; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
6259     </member>
6260     <member name="P:System.Data.DataTableCollection.Item(System.String,System.String)">
6261       <summary>Gets the <see cref="T:System.Data.DataTable" /> object with the specified name in the specified namespace.</summary>
6262       <param name="name">The name of the <see langword="DataTable" /> to find.</param>
6263       <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
6264       <returns>A <see cref="T:System.Data.DataTable" /> with the specified name; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
6265     </member>
6266     <member name="M:System.Data.DataTableCollection.Remove(System.Data.DataTable)">
6267       <summary>Removes the specified <see cref="T:System.Data.DataTable" /> object from the collection.</summary>
6268       <param name="table">The <see langword="DataTable" /> to remove.</param>
6269       <exception cref="T:System.ArgumentNullException">The value specified for the table is <see langword="null" />.</exception>
6270       <exception cref="T:System.ArgumentException">The table does not belong to this collection.
6271 -or-
6272 The table is part of a relationship.</exception>
6273     </member>
6274     <member name="M:System.Data.DataTableCollection.Remove(System.String)">
6275       <summary>Removes the <see cref="T:System.Data.DataTable" /> object with the specified name from the collection.</summary>
6276       <param name="name">The name of the <see cref="T:System.Data.DataTable" /> object to remove.</param>
6277       <exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
6278     </member>
6279     <member name="M:System.Data.DataTableCollection.Remove(System.String,System.String)">
6280       <summary>Removes the <see cref="T:System.Data.DataTable" /> object with the specified name from the collection.</summary>
6281       <param name="name">The name of the <see cref="T:System.Data.DataTable" /> object to remove.</param>
6282       <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
6283       <exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
6284     </member>
6285     <member name="M:System.Data.DataTableCollection.RemoveAt(System.Int32)">
6286       <summary>Removes the <see cref="T:System.Data.DataTable" /> object at the specified index from the collection.</summary>
6287       <param name="index">The index of the <see langword="DataTable" /> to remove.</param>
6288       <exception cref="T:System.ArgumentException">The collection does not have a table at the specified index.</exception>
6289     </member>
6290     <member name="T:System.Data.DataTableExtensions">
6291       <summary>Defines the extension methods to the <see cref="T:System.Data.DataTable" /> class. <see cref="T:System.Data.DataTableExtensions" /> is a static class.</summary>
6292     </member>
6293     <member name="M:System.Data.DataTableExtensions.AsDataView(System.Data.DataTable)">
6294       <summary>Creates and returns a LINQ-enabled <see cref="T:System.Data.DataView" /> object.</summary>
6295       <param name="table">The source <see cref="T:System.Data.DataTable" /> from which the LINQ-enabled <see cref="T:System.Data.DataView" /> is created.</param>
6296       <returns>A LINQ-enabled <see cref="T:System.Data.DataView" /> object.</returns>
6297     </member>
6298     <member name="M:System.Data.DataTableExtensions.AsDataView``1(System.Data.EnumerableRowCollection{``0})">
6299       <summary>Creates and returns a LINQ-enabled <see cref="T:System.Data.DataView" /> object representing the LINQ to DataSet query.</summary>
6300       <param name="source">The source LINQ to DataSet query from which the LINQ-enabled <see cref="T:System.Data.DataView" /> is created.</param>
6301       <typeparam name="T">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
6302       <returns>A LINQ-enabled <see cref="T:System.Data.DataView" /> object.</returns>
6303     </member>
6304     <member name="M:System.Data.DataTableExtensions.AsEnumerable(System.Data.DataTable)">
6305       <summary>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> object, where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />. This object can be used in a LINQ expression or method query.</summary>
6306       <param name="source">The source <see cref="T:System.Data.DataTable" /> to make enumerable.</param>
6307       <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object, where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />.</returns>
6308       <exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Data.DataTable" /> is <see langword="null" />.</exception>
6309     </member>
6310     <member name="M:System.Data.DataTableExtensions.CopyToDataTable``1(System.Collections.Generic.IEnumerable{``0})">
6311       <summary>Returns a <see cref="T:System.Data.DataTable" /> that contains copies of the <see cref="T:System.Data.DataRow" /> objects, given an input <see cref="T:System.Collections.Generic.IEnumerable`1" /> object where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />.</summary>
6312       <param name="source">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence.</param>
6313       <typeparam name="T">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
6314       <returns>A <see cref="T:System.Data.DataTable" /> that contains the input sequence as the type of <see cref="T:System.Data.DataRow" /> objects.</returns>
6315       <exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence is <see langword="null" /> and a new table cannot be created.</exception>
6316       <exception cref="T:System.InvalidOperationException">A <see cref="T:System.Data.DataRow" /> in the source sequence has a state of <see cref="F:System.Data.DataRowState.Deleted" />.
6317 The source sequence does not contain any <see cref="T:System.Data.DataRow" /> objects.
6318 A <see cref="T:System.Data.DataRow" /> in the source sequence is <see langword="null" />.</exception>
6319     </member>
6320     <member name="M:System.Data.DataTableExtensions.CopyToDataTable``1(System.Collections.Generic.IEnumerable{``0},System.Data.DataTable,System.Data.LoadOption)">
6321       <summary>Copies <see cref="T:System.Data.DataRow" /> objects to the specified <see cref="T:System.Data.DataTable" />, given an input <see cref="T:System.Collections.Generic.IEnumerable`1" /> object where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />.</summary>
6322       <param name="source">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence.</param>
6323       <param name="table">The destination <see cref="T:System.Data.DataTable" />.</param>
6324       <param name="options">A <see cref="T:System.Data.LoadOption" /> enumeration that specifies the <see cref="T:System.Data.DataTable" /> load options.</param>
6325       <typeparam name="T">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
6326       <exception cref="T:System.ArgumentException">The copied <see cref="T:System.Data.DataRow" /> objects do not fit the schema of the destination <see cref="T:System.Data.DataTable" />.</exception>
6327       <exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence is <see langword="null" /> or the destination <see cref="T:System.Data.DataTable" /> is <see langword="null" />.</exception>
6328       <exception cref="T:System.InvalidOperationException">A <see cref="T:System.Data.DataRow" /> in the source sequence has a state of <see cref="F:System.Data.DataRowState.Deleted" />.
6329 The source sequence does not contain any <see cref="T:System.Data.DataRow" /> objects.
6330 A <see cref="T:System.Data.DataRow" /> in the source sequence is <see langword="null" />.</exception>
6331     </member>
6332     <member name="M:System.Data.DataTableExtensions.CopyToDataTable``1(System.Collections.Generic.IEnumerable{``0},System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler)">
6333       <summary>Copies <see cref="T:System.Data.DataRow" /> objects to the specified <see cref="T:System.Data.DataTable" />, given an input <see cref="T:System.Collections.Generic.IEnumerable`1" /> object where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />.</summary>
6334       <param name="source">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence.</param>
6335       <param name="table">The destination <see cref="T:System.Data.DataTable" />.</param>
6336       <param name="options">A <see cref="T:System.Data.LoadOption" /> enumeration that specifies the <see cref="T:System.Data.DataTable" /> load options.</param>
6337       <param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler" /> delegate that represents the method that will handle an error.</param>
6338       <typeparam name="T">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
6339       <exception cref="T:System.ArgumentException">The copied <see cref="T:System.Data.DataRow" /> objects do not fit the schema of the destination <see cref="T:System.Data.DataTable" />.</exception>
6340       <exception cref="T:System.ArgumentNullException">The source <see cref="T:System.Collections.Generic.IEnumerable`1" /> sequence is <see langword="null" /> or the destination <see cref="T:System.Data.DataTable" /> is <see langword="null" />.</exception>
6341       <exception cref="T:System.InvalidOperationException">A <see cref="T:System.Data.DataRow" /> in the source sequence has a state of <see cref="F:System.Data.DataRowState.Deleted" />.
6342 -or-
6343 The source sequence does not contain any <see cref="T:System.Data.DataRow" /> objects.
6344 -or-
6345 A <see cref="T:System.Data.DataRow" /> in the source sequence is <see langword="null" />.</exception>
6346     </member>
6347     <member name="T:System.Data.DataTableNewRowEventArgs">
6348       <summary>Provides data for the <see cref="M:System.Data.DataTable.NewRow" /> method.</summary>
6349     </member>
6350     <member name="M:System.Data.DataTableNewRowEventArgs.#ctor(System.Data.DataRow)">
6351       <summary>Initializes a new instance of <see cref="T:System.Data.DataTableNewRowEventArgs" />.</summary>
6352       <param name="dataRow">The <see cref="T:System.Data.DataRow" /> being added.</param>
6353     </member>
6354     <member name="P:System.Data.DataTableNewRowEventArgs.Row">
6355       <summary>Gets the row that is being added.</summary>
6356       <returns>The <see cref="T:System.Data.DataRow" /> that is being added.</returns>
6357     </member>
6358     <member name="T:System.Data.DataTableNewRowEventHandler">
6359       <summary>Represents the method that handles the <see cref="M:System.Data.DataTable.NewRow" /> method.</summary>
6360       <param name="sender">The source of the event.</param>
6361       <param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data.</param>
6362     </member>
6363     <member name="T:System.Data.DataTableReader">
6364       <summary>The <see cref="T:System.Data.DataTableReader" /> obtains the contents of one or more <see cref="T:System.Data.DataTable" /> objects in the form of one or more read-only, forward-only result sets.</summary>
6365     </member>
6366     <member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable)">
6367       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader" /> class by using data from the supplied <see cref="T:System.Data.DataTable" />.</summary>
6368       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> from which the new <see cref="T:System.Data.DataTableReader" /> obtains its result set.</param>
6369     </member>
6370     <member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable[])">
6371       <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader" /> class using the supplied array of <see cref="T:System.Data.DataTable" /> objects.</summary>
6372       <param name="dataTables">The array of <see cref="T:System.Data.DataTable" /> objects that supplies the results for the new <see cref="T:System.Data.DataTableReader" /> object.</param>
6373     </member>
6374     <member name="M:System.Data.DataTableReader.Close">
6375       <summary>Closes the current <see cref="T:System.Data.DataTableReader" />.</summary>
6376     </member>
6377     <member name="P:System.Data.DataTableReader.Depth">
6378       <summary>The depth of nesting for the current row of the <see cref="T:System.Data.DataTableReader" />.</summary>
6379       <returns>The depth of nesting for the current row; always zero.</returns>
6380     </member>
6381     <member name="P:System.Data.DataTableReader.FieldCount">
6382       <summary>Returns the number of columns in the current row.</summary>
6383       <returns>When not positioned in a valid result set, 0; otherwise the number of columns in the current row.</returns>
6384       <exception cref="T:System.InvalidOperationException">An attempt was made to retrieve the field count in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6385     </member>
6386     <member name="M:System.Data.DataTableReader.GetBoolean(System.Int32)">
6387       <summary>Gets the value of the specified column as a <see cref="T:System.Boolean" />.</summary>
6388       <param name="ordinal">The zero-based column ordinal.</param>
6389       <returns>The value of the specified column.</returns>
6390       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6391       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6392       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6393       <exception cref="T:System.InvalidCastException">The specified column does not contain a <see langword="Boolean" />.</exception>
6394     </member>
6395     <member name="M:System.Data.DataTableReader.GetByte(System.Int32)">
6396       <summary>Gets the value of the specified column as a byte.</summary>
6397       <param name="ordinal">The zero-based column ordinal.</param>
6398       <returns>The value of the specified column.</returns>
6399       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6400       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6401       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6402       <exception cref="T:System.InvalidCastException">The specified column does not contain a byte.</exception>
6403     </member>
6404     <member name="M:System.Data.DataTableReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
6405       <summary>Reads a stream of bytes starting at the specified column offset into the buffer as an array starting at the specified buffer offset.</summary>
6406       <param name="ordinal">The zero-based column ordinal.</param>
6407       <param name="dataIndex">The index within the field from which to start the read operation.</param>
6408       <param name="buffer">The buffer into which to read the stream of bytes.</param>
6409       <param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
6410       <param name="length">The maximum length to copy into the buffer.</param>
6411       <returns>The actual number of bytes read.</returns>
6412       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6413       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6414       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6415       <exception cref="T:System.InvalidCastException">The specified column does not contain a byte array.</exception>
6416     </member>
6417     <member name="M:System.Data.DataTableReader.GetChar(System.Int32)">
6418       <summary>Gets the value of the specified column as a character.</summary>
6419       <param name="ordinal">The zero-based column ordinal.</param>
6420       <returns>The value of the column.</returns>
6421       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6422       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6423       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6424       <exception cref="T:System.InvalidCastException">The specified field does not contain a character.</exception>
6425     </member>
6426     <member name="M:System.Data.DataTableReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
6427       <summary>Returns the value of the specified column as a character array.</summary>
6428       <param name="ordinal">The zero-based column ordinal.</param>
6429       <param name="dataIndex">The index within the field from which to start the read operation.</param>
6430       <param name="buffer">The buffer into which to read the stream of chars.</param>
6431       <param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
6432       <param name="length">The maximum length to copy into the buffer.</param>
6433       <returns>The actual number of characters read.</returns>
6434       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6435       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6436       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6437       <exception cref="T:System.InvalidCastException">The specified column does not contain a character array.</exception>
6438     </member>
6439     <member name="M:System.Data.DataTableReader.GetDataTypeName(System.Int32)">
6440       <summary>Gets a string representing the data type of the specified column.</summary>
6441       <param name="ordinal">The zero-based column ordinal.</param>
6442       <returns>A string representing the column's data type.</returns>
6443       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6444       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6445     </member>
6446     <member name="M:System.Data.DataTableReader.GetDateTime(System.Int32)">
6447       <summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
6448       <param name="ordinal">The zero-based column ordinal.</param>
6449       <returns>The value of the specified column.</returns>
6450       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6451       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6452       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6453       <exception cref="T:System.InvalidCastException">The specified column does not contain a DateTime value.</exception>
6454     </member>
6455     <member name="M:System.Data.DataTableReader.GetDecimal(System.Int32)">
6456       <summary>Gets the value of the specified column as a <see cref="T:System.Decimal" />.</summary>
6457       <param name="ordinal">The zero-based column ordinal.</param>
6458       <returns>The value of the specified column.</returns>
6459       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6460       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6461       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6462       <exception cref="T:System.InvalidCastException">The specified column does not contain a <see langword="Decimal" /> value.</exception>
6463     </member>
6464     <member name="M:System.Data.DataTableReader.GetDouble(System.Int32)">
6465       <summary>Gets the value of the column as a double-precision floating point number.</summary>
6466       <param name="ordinal">The zero-based ordinal of the column.</param>
6467       <returns>The value of the specified column.</returns>
6468       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6469       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6470       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
6471       <exception cref="T:System.InvalidCastException">The specified column does not contain a double-precision floating point number.</exception>
6472     </member>
6473     <member name="M:System.Data.DataTableReader.GetEnumerator">
6474       <summary>Returns an enumerator that can be used to iterate through the item collection.</summary>
6475       <returns>An <see cref="T:System.Collections.IEnumerator" /> object that represents the item collection.</returns>
6476       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6477     </member>
6478     <member name="M:System.Data.DataTableReader.GetFieldType(System.Int32)">
6479       <summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
6480       <param name="ordinal">The zero-based column ordinal.</param>
6481       <returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
6482       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6483       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6484     </member>
6485     <member name="M:System.Data.DataTableReader.GetFloat(System.Int32)">
6486       <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
6487       <param name="ordinal">The zero-based column ordinal.</param>
6488       <returns>The value of the column.</returns>
6489       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6490       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6491       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6492       <exception cref="T:System.InvalidCastException">The specified column does not contain a single-precision floating point number.</exception>
6493     </member>
6494     <member name="M:System.Data.DataTableReader.GetGuid(System.Int32)">
6495       <summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
6496       <param name="ordinal">The zero-based column ordinal.</param>
6497       <returns>The value of the specified column.</returns>
6498       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6499       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6500       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6501       <exception cref="T:System.InvalidCastException">The specified column does not contain a GUID.</exception>
6502     </member>
6503     <member name="M:System.Data.DataTableReader.GetInt16(System.Int32)">
6504       <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
6505       <param name="ordinal">The zero-based column ordinal</param>
6506       <returns>The value of the specified column.</returns>
6507       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6508       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6509       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6510       <exception cref="T:System.InvalidCastException">The specified column does not contain a 16-bit signed integer.</exception>
6511     </member>
6512     <member name="M:System.Data.DataTableReader.GetInt32(System.Int32)">
6513       <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
6514       <param name="ordinal">The zero-based column ordinal</param>
6515       <returns>The value of the specified column.</returns>
6516       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6517       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6518       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6519       <exception cref="T:System.InvalidCastException">The specified column does not contain a 32-bit signed integer value.</exception>
6520     </member>
6521     <member name="M:System.Data.DataTableReader.GetInt64(System.Int32)">
6522       <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
6523       <param name="ordinal">The zero-based column ordinal</param>
6524       <returns>The value of the specified column.</returns>
6525       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6526       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6527       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6528       <exception cref="T:System.InvalidCastException">The specified column does not contain a 64-bit signed integer value.</exception>
6529     </member>
6530     <member name="M:System.Data.DataTableReader.GetName(System.Int32)">
6531       <summary>Gets the value of the specified column as a <see cref="T:System.String" />.</summary>
6532       <param name="ordinal">The zero-based column ordinal</param>
6533       <returns>The name of the specified column.</returns>
6534       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6535       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6536     </member>
6537     <member name="M:System.Data.DataTableReader.GetOrdinal(System.String)">
6538       <summary>Gets the column ordinal, given the name of the column.</summary>
6539       <param name="name">The name of the column.</param>
6540       <returns>The zero-based column ordinal.</returns>
6541       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6542       <exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
6543     </member>
6544     <member name="M:System.Data.DataTableReader.GetProviderSpecificFieldType(System.Int32)">
6545       <summary>Gets the type of the specified column in provider-specific format.</summary>
6546       <param name="ordinal">The zero-based column ordinal.</param>
6547       <returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
6548       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6549       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6550     </member>
6551     <member name="M:System.Data.DataTableReader.GetProviderSpecificValue(System.Int32)">
6552       <summary>Gets the value of the specified column in provider-specific format.</summary>
6553       <param name="ordinal">The zero-based number of the column whose value is retrieved.</param>
6554       <returns>The value of the specified column in provider-specific format.</returns>
6555       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6556       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6557       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /></exception>
6558     </member>
6559     <member name="M:System.Data.DataTableReader.GetProviderSpecificValues(System.Object[])">
6560       <summary>Fills the supplied array with provider-specific type information for all the columns in the <see cref="T:System.Data.DataTableReader" />.</summary>
6561       <param name="values">An array of objects to be filled in with type information for the columns in the <see cref="T:System.Data.DataTableReader" />.</param>
6562       <returns>The number of column values copied into the array.</returns>
6563       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6564       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6565     </member>
6566     <member name="M:System.Data.DataTableReader.GetSchemaTable">
6567       <summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.DataTableReader" />.</summary>
6568       <returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
6569       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.DataTableReader" /> is closed.</exception>
6570     </member>
6571     <member name="M:System.Data.DataTableReader.GetString(System.Int32)">
6572       <summary>Gets the value of the specified column as a string.</summary>
6573       <param name="ordinal">The zero-based column ordinal</param>
6574       <returns>The value of the specified column.</returns>
6575       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6576       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6577       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6578       <exception cref="T:System.InvalidCastException">The specified column does not contain a string.</exception>
6579     </member>
6580     <member name="M:System.Data.DataTableReader.GetValue(System.Int32)">
6581       <summary>Gets the value of the specified column in its native format.</summary>
6582       <param name="ordinal">The zero-based column ordinal</param>
6583       <returns>The value of the specified column. This method returns <see langword="DBNull" /> for null columns.</returns>
6584       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6585       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6586       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access columns in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6587     </member>
6588     <member name="M:System.Data.DataTableReader.GetValues(System.Object[])">
6589       <summary>Populates an array of objects with the column values of the current row.</summary>
6590       <param name="values">An array of <see cref="T:System.Object" /> into which to copy the column values from the <see cref="T:System.Data.DataTableReader" />.</param>
6591       <returns>The number of column values copied into the array.</returns>
6592       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6593       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6594       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6595     </member>
6596     <member name="P:System.Data.DataTableReader.HasRows">
6597       <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader" /> contains one or more rows.</summary>
6598       <returns>
6599         <see langword="true" /> if the <see cref="T:System.Data.DataTableReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
6600       <exception cref="T:System.InvalidOperationException">An attempt was made to retrieve information about a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6601     </member>
6602     <member name="P:System.Data.DataTableReader.IsClosed">
6603       <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader" /> is closed.</summary>
6604       <returns>
6605         <see langword="true" /> if the <see cref="T:System.Data.DataTableReader" /> is closed; otherwise, <see langword="false" />.</returns>
6606     </member>
6607     <member name="M:System.Data.DataTableReader.IsDBNull(System.Int32)">
6608       <summary>Gets a value that indicates whether the column contains non-existent or missing values.</summary>
6609       <param name="ordinal">The zero-based column ordinal</param>
6610       <returns>
6611         <see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
6612       <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6613       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6614       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6615     </member>
6616     <member name="P:System.Data.DataTableReader.Item(System.Int32)">
6617       <summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
6618       <param name="ordinal">The zero-based column ordinal.</param>
6619       <returns>The value of the specified column in its native format.</returns>
6620       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
6621     </member>
6622     <member name="P:System.Data.DataTableReader.Item(System.String)">
6623       <summary>Gets the value of the specified column in its native format given the column name.</summary>
6624       <param name="name">The name of the column.</param>
6625       <returns>The value of the specified column in its native format.</returns>
6626       <exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
6627       <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
6628       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6629     </member>
6630     <member name="M:System.Data.DataTableReader.NextResult">
6631       <summary>Advances the <see cref="T:System.Data.DataTableReader" /> to the next result set, if any.</summary>
6632       <returns>
6633         <see langword="true" /> if there was another result set; otherwise <see langword="false" />.</returns>
6634       <exception cref="T:System.InvalidOperationException">An attempt was made to navigate within a closed <see cref="T:System.Data.DataTableReader" />.</exception>
6635     </member>
6636     <member name="M:System.Data.DataTableReader.Read">
6637       <summary>Advances the <see cref="T:System.Data.DataTableReader" /> to the next record.</summary>
6638       <returns>
6639         <see langword="true" /> if there was another row to read; otherwise <see langword="false" />.</returns>
6640       <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
6641     </member>
6642     <member name="P:System.Data.DataTableReader.RecordsAffected">
6643       <summary>Gets the number of rows inserted, changed, or deleted by execution of the SQL statement.</summary>
6644       <returns>The <see cref="T:System.Data.DataTableReader" /> does not support this property and always returns 0.</returns>
6645     </member>
6646     <member name="T:System.Data.DataView">
6647       <summary>Represents a databindable, customized view of a <see cref="T:System.Data.DataTable" /> for sorting, filtering, searching, editing, and navigation. The <see cref="T:System.Data.DataView" /> does not store data, but instead represents a connected view of its corresponding <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataView" />'s data will affect the <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataTable" />'s data will affect all <see cref="T:System.Data.DataView" />s associated with it.</summary>
6648     </member>
6649     <member name="M:System.Data.DataView.#ctor">
6650       <summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class.</summary>
6651     </member>
6652     <member name="M:System.Data.DataView.#ctor(System.Data.DataTable)">
6653       <summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class with the specified <see cref="T:System.Data.DataTable" />.</summary>
6654       <param name="table">A <see cref="T:System.Data.DataTable" /> to add to the <see cref="T:System.Data.DataView" />.</param>
6655     </member>
6656     <member name="M:System.Data.DataView.#ctor(System.Data.DataTable,System.String,System.String,System.Data.DataViewRowState)">
6657       <summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class with the specified <see cref="T:System.Data.DataTable" />, <see cref="P:System.Data.DataView.RowFilter" />, <see cref="P:System.Data.DataView.Sort" />, and <see cref="T:System.Data.DataViewRowState" />.</summary>
6658       <param name="table">A <see cref="T:System.Data.DataTable" /> to add to the <see cref="T:System.Data.DataView" />.</param>
6659       <param name="RowFilter">A <see cref="P:System.Data.DataView.RowFilter" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
6660       <param name="Sort">A <see cref="P:System.Data.DataView.Sort" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
6661       <param name="RowState">A <see cref="T:System.Data.DataViewRowState" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
6662     </member>
6663     <member name="M:System.Data.DataView.AddNew">
6664       <summary>Adds a new row to the <see cref="T:System.Data.DataView" />.</summary>
6665       <returns>A new <see cref="T:System.Data.DataRowView" /> object.</returns>
6666     </member>
6667     <member name="P:System.Data.DataView.AllowDelete">
6668       <summary>Sets or gets a value that indicates whether deletes are allowed.</summary>
6669       <returns>
6670         <see langword="true" />, if deletes are allowed; otherwise, <see langword="false" />.</returns>
6671     </member>
6672     <member name="P:System.Data.DataView.AllowEdit">
6673       <summary>Gets or sets a value that indicates whether edits are allowed.</summary>
6674       <returns>
6675         <see langword="true" />, if edits are allowed; otherwise, <see langword="false" />.</returns>
6676     </member>
6677     <member name="P:System.Data.DataView.AllowNew">
6678       <summary>Gets or sets a value that indicates whether the new rows can be added by using the <see cref="M:System.Data.DataView.AddNew" /> method.</summary>
6679       <returns>
6680         <see langword="true" />, if new rows can be added; otherwise, <see langword="false" />.</returns>
6681     </member>
6682     <member name="P:System.Data.DataView.ApplyDefaultSort">
6683       <summary>Gets or sets a value that indicates whether to use the default sort. The default sort is (ascending) by all primary keys as specified by <see cref="P:System.Data.DataTable.PrimaryKey" />.</summary>
6684       <returns>
6685         <see langword="true" />, if the default sort is used; otherwise, <see langword="false" />.</returns>
6686     </member>
6687     <member name="M:System.Data.DataView.BeginInit">
6688       <summary>Starts the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
6689     </member>
6690     <member name="M:System.Data.DataView.Close">
6691       <summary>Closes the <see cref="T:System.Data.DataView" />.</summary>
6692     </member>
6693     <member name="M:System.Data.DataView.ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
6694       <summary>Occurs after a <see cref="T:System.Data.DataColumnCollection" /> has been changed successfully.</summary>
6695       <param name="sender">The source of the event.</param>
6696       <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
6697     </member>
6698     <member name="M:System.Data.DataView.CopyTo(System.Array,System.Int32)">
6699       <summary>Copies items into an array. Only for Web Forms Interfaces.</summary>
6700       <param name="array">array to copy into.</param>
6701       <param name="index">index to start at.</param>
6702     </member>
6703     <member name="P:System.Data.DataView.Count">
6704       <summary>Gets the number of records in the <see cref="T:System.Data.DataView" /> after <see cref="P:System.Data.DataView.RowFilter" /> and <see cref="P:System.Data.DataView.RowStateFilter" /> have been applied.</summary>
6705       <returns>The number of records in the <see cref="T:System.Data.DataView" />.</returns>
6706     </member>
6707     <member name="P:System.Data.DataView.DataViewManager">
6708       <summary>Gets the <see cref="T:System.Data.DataViewManager" /> associated with this view.</summary>
6709       <returns>The <see langword="DataViewManager" /> that created this view. If this is the default <see cref="T:System.Data.DataView" /> for a <see cref="T:System.Data.DataTable" />, the <see langword="DataViewManager" /> property returns the default <see langword="DataViewManager" /> for the <see langword="DataSet" />. Otherwise, if the <see langword="DataView" /> was created without a <see langword="DataViewManager" />, this property is <see langword="null" />.</returns>
6710     </member>
6711     <member name="M:System.Data.DataView.Delete(System.Int32)">
6712       <summary>Deletes a row at the specified index.</summary>
6713       <param name="index">The index of the row to delete.</param>
6714     </member>
6715     <member name="M:System.Data.DataView.Dispose(System.Boolean)">
6716       <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Data.DataView" /> object.</summary>
6717       <param name="disposing">
6718         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
6719     </member>
6720     <member name="M:System.Data.DataView.EndInit">
6721       <summary>Ends the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
6722     </member>
6723     <member name="M:System.Data.DataView.Equals(System.Data.DataView)">
6724       <summary>Determines whether the specified <see cref="T:System.Data.DataView" /> instances are considered equal.</summary>
6725       <param name="view">The <see cref="T:System.Data.DataView" /> to be compared.</param>
6726       <returns>
6727         <see langword="true" /> if the two <see cref="T:System.Data.DataView" /> instances are equal; otherwise, <see langword="false" />.</returns>
6728     </member>
6729     <member name="M:System.Data.DataView.Find(System.Object)">
6730       <summary>Finds a row in the <see cref="T:System.Data.DataView" /> by the specified sort key value.</summary>
6731       <param name="key">The object to search for.</param>
6732       <returns>The index of the row in the <see cref="T:System.Data.DataView" /> that contains the sort key value specified; otherwise -1 if the sort key value does not exist.</returns>
6733     </member>
6734     <member name="M:System.Data.DataView.Find(System.Object[])">
6735       <summary>Finds a row in the <see cref="T:System.Data.DataView" /> by the specified sort key values.</summary>
6736       <param name="key">An array of values, typed as <see cref="T:System.Object" />.</param>
6737       <returns>The index of the position of the first row in the <see cref="T:System.Data.DataView" /> that matches the sort key values specified; otherwise -1 if there are no matching sort key values.</returns>
6738     </member>
6739     <member name="M:System.Data.DataView.FindRows(System.Object)">
6740       <summary>Returns an array of <see cref="T:System.Data.DataRowView" /> objects whose columns match the specified sort key value.</summary>
6741       <param name="key">The column value, typed as <see cref="T:System.Object" />, to search for.</param>
6742       <returns>An array of <see langword="DataRowView" /> objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty <see langword="DataRowView" /> array.</returns>
6743     </member>
6744     <member name="M:System.Data.DataView.FindRows(System.Object[])">
6745       <summary>Returns an array of <see cref="T:System.Data.DataRowView" /> objects whose columns match the specified sort key value.</summary>
6746       <param name="key">An array of column values, typed as <see cref="T:System.Object" />, to search for.</param>
6747       <returns>An array of <see langword="DataRowView" /> objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty <see langword="DataRowView" /> array.</returns>
6748     </member>
6749     <member name="M:System.Data.DataView.GetEnumerator">
6750       <summary>Gets an enumerator for this <see cref="T:System.Data.DataView" />.</summary>
6751       <returns>An <see cref="T:System.Collections.IEnumerator" /> for navigating through the list.</returns>
6752     </member>
6753     <member name="M:System.Data.DataView.IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)">
6754       <summary>Occurs after a <see cref="T:System.Data.DataView" /> has been changed successfully.</summary>
6755       <param name="sender">The source of the event.</param>
6756       <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
6757     </member>
6758     <member name="E:System.Data.DataView.Initialized">
6759       <summary>Occurs when initialization of the <see cref="T:System.Data.DataView" /> is completed.</summary>
6760     </member>
6761     <member name="P:System.Data.DataView.IsInitialized">
6762       <summary>Gets a value that indicates whether the component is initialized.</summary>
6763       <returns>
6764         <see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
6765     </member>
6766     <member name="P:System.Data.DataView.IsOpen">
6767       <summary>Gets a value that indicates whether the data source is currently open and projecting views of data on the <see cref="T:System.Data.DataTable" />.</summary>
6768       <returns>
6769         <see langword="true" />, if the source is open; otherwise, <see langword="false" />.</returns>
6770     </member>
6771     <member name="P:System.Data.DataView.Item(System.Int32)">
6772       <summary>Gets a row of data from a specified table.</summary>
6773       <param name="recordIndex">The index of a record in the <see cref="T:System.Data.DataTable" />.</param>
6774       <returns>A <see cref="T:System.Data.DataRowView" /> of the row that you want.</returns>
6775     </member>
6776     <member name="E:System.Data.DataView.ListChanged">
6777       <summary>Occurs when the list managed by the <see cref="T:System.Data.DataView" /> changes.</summary>
6778     </member>
6779     <member name="M:System.Data.DataView.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
6780       <summary>Raises the <see cref="E:System.Data.DataView.ListChanged" /> event.</summary>
6781       <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
6782     </member>
6783     <member name="M:System.Data.DataView.Open">
6784       <summary>Opens a <see cref="T:System.Data.DataView" />.</summary>
6785     </member>
6786     <member name="M:System.Data.DataView.Reset">
6787       <summary>Reserved for internal use only.</summary>
6788     </member>
6789     <member name="P:System.Data.DataView.RowFilter">
6790       <summary>Gets or sets the expression used to filter which rows are viewed in the <see cref="T:System.Data.DataView" />.</summary>
6791       <returns>A string that specifies how rows are to be filtered.</returns>
6792     </member>
6793     <member name="P:System.Data.DataView.RowStateFilter">
6794       <summary>Gets or sets the row state filter used in the <see cref="T:System.Data.DataView" />.</summary>
6795       <returns>One of the <see cref="T:System.Data.DataViewRowState" /> values.</returns>
6796     </member>
6797     <member name="P:System.Data.DataView.Sort">
6798       <summary>Gets or sets the sort column or columns, and sort order for the <see cref="T:System.Data.DataView" />.</summary>
6799       <returns>A string that contains the column name followed by "ASC" (ascending) or "DESC" (descending). Columns are sorted ascending by default. Multiple columns can be separated by commas.</returns>
6800     </member>
6801     <member name="P:System.Data.DataView.System#Collections#ICollection#IsSynchronized">
6802       <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
6803       <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</returns>
6804     </member>
6805     <member name="P:System.Data.DataView.System#Collections#ICollection#SyncRoot">
6806       <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
6807       <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</returns>
6808     </member>
6809     <member name="M:System.Data.DataView.System#Collections#IList#Add(System.Object)">
6810       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
6811       <param name="value">An <see cref="T:System.Object" /> value.</param>
6812       <returns>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</returns>
6813     </member>
6814     <member name="M:System.Data.DataView.System#Collections#IList#Clear">
6815       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
6816     </member>
6817     <member name="M:System.Data.DataView.System#Collections#IList#Contains(System.Object)">
6818       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
6819       <param name="value">An <see cref="T:System.Object" /> value.</param>
6820       <returns>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</returns>
6821     </member>
6822     <member name="M:System.Data.DataView.System#Collections#IList#IndexOf(System.Object)">
6823       <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
6824       <param name="value">An <see cref="T:System.Object" /> value.</param>
6825       <returns>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</returns>
6826     </member>
6827     <member name="M:System.Data.DataView.System#Collections#IList#Insert(System.Int32,System.Object)">
6828       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
6829       <param name="index">An <see cref="T:System.Int32" /> value.</param>
6830       <param name="value">An <see cref="T:System.Object" /> value to be inserted.</param>
6831     </member>
6832     <member name="P:System.Data.DataView.System#Collections#IList#IsFixedSize">
6833       <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
6834       <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</returns>
6835     </member>
6836     <member name="P:System.Data.DataView.System#Collections#IList#IsReadOnly">
6837       <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
6838       <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</returns>
6839     </member>
6840     <member name="P:System.Data.DataView.System#Collections#IList#Item(System.Int32)">
6841       <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
6842       <param name="recordIndex">An <see cref="T:System.Int32" /> value.</param>
6843       <returns>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</returns>
6844     </member>
6845     <member name="M:System.Data.DataView.System#Collections#IList#Remove(System.Object)">
6846       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
6847       <param name="value">An <see cref="T:System.Object" /> value.</param>
6848     </member>
6849     <member name="M:System.Data.DataView.System#Collections#IList#RemoveAt(System.Int32)">
6850       <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
6851       <param name="index">An <see cref="T:System.Int32" /> value.</param>
6852     </member>
6853     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
6854       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
6855       <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
6856     </member>
6857     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddNew">
6858       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
6859       <returns>The item added to the list.</returns>
6860     </member>
6861     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowEdit">
6862       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</summary>
6863       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</returns>
6864     </member>
6865     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowNew">
6866       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</summary>
6867       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</returns>
6868     </member>
6869     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowRemove">
6870       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</summary>
6871       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</returns>
6872     </member>
6873     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
6874       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
6875       <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
6876       <param name="direction">A <see cref="T:System.ComponentModel.ListSortDirection" /> object.</param>
6877     </member>
6878     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
6879       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</summary>
6880       <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
6881       <param name="key">An <see cref="T:System.Object" /> value.</param>
6882       <returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</returns>
6883     </member>
6884     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#IsSorted">
6885       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
6886       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</returns>
6887     </member>
6888     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
6889       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
6890       <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
6891     </member>
6892     <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveSort">
6893       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveSort" />.</summary>
6894     </member>
6895     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortDirection">
6896       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
6897       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</returns>
6898     </member>
6899     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortProperty">
6900       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
6901       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</returns>
6902     </member>
6903     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsChangeNotification">
6904       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
6905       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</returns>
6906     </member>
6907     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSearching">
6908       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
6909       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</returns>
6910     </member>
6911     <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSorting">
6912       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
6913       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</returns>
6914     </member>
6915     <member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#ApplySort(System.ComponentModel.ListSortDescriptionCollection)">
6916       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection)" />.</summary>
6917       <param name="sorts">A <see cref="T:System.ComponentModel.ListSortDescriptionCollection" /> object.</param>
6918     </member>
6919     <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#Filter">
6920       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</summary>
6921       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</returns>
6922     </member>
6923     <member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#RemoveFilter">
6924       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.RemoveFilter" />.</summary>
6925     </member>
6926     <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SortDescriptions">
6927       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</summary>
6928       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</returns>
6929     </member>
6930     <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsAdvancedSorting">
6931       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</summary>
6932       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</returns>
6933     </member>
6934     <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsFiltering">
6935       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</summary>
6936       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</returns>
6937     </member>
6938     <member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
6939       <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])" />.</summary>
6940       <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the collection as bindable. This can be <see langword="null" />.</param>
6941     </member>
6942     <member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
6943       <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</summary>
6944       <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</param>
6945       <returns>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</returns>
6946     </member>
6947     <member name="P:System.Data.DataView.Table">
6948       <summary>Gets or sets the source <see cref="T:System.Data.DataTable" />.</summary>
6949       <returns>A <see cref="T:System.Data.DataTable" /> that provides the data for this view.</returns>
6950     </member>
6951     <member name="M:System.Data.DataView.ToTable">
6952       <summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
6953       <returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
6954     </member>
6955     <member name="M:System.Data.DataView.ToTable(System.Boolean,System.String[])">
6956       <summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
6957       <param name="distinct">If <see langword="true" />, the returned <see cref="T:System.Data.DataTable" /> contains rows that have distinct values for all its columns. The default value is <see langword="false" />.</param>
6958       <param name="columnNames">A string array that contains a list of the column names to be included in the returned <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> contains the specified columns in the order they appear within this array.</param>
6959       <returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
6960     </member>
6961     <member name="M:System.Data.DataView.ToTable(System.String)">
6962       <summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
6963       <param name="tableName">The name of the returned <see cref="T:System.Data.DataTable" />.</param>
6964       <returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
6965     </member>
6966     <member name="M:System.Data.DataView.ToTable(System.String,System.Boolean,System.String[])">
6967       <summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
6968       <param name="tableName">The name of the returned <see cref="T:System.Data.DataTable" />.</param>
6969       <param name="distinct">If <see langword="true" />, the returned <see cref="T:System.Data.DataTable" /> contains rows that have distinct values for all its columns. The default value is <see langword="false" />.</param>
6970       <param name="columnNames">A string array that contains a list of the column names to be included in the returned <see cref="T:System.Data.DataTable" />. The <see langword="DataTable" /> contains the specified columns in the order they appear within this array.</param>
6971       <returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
6972     </member>
6973     <member name="M:System.Data.DataView.UpdateIndex">
6974       <summary>Reserved for internal use only.</summary>
6975     </member>
6976     <member name="M:System.Data.DataView.UpdateIndex(System.Boolean)">
6977       <summary>Reserved for internal use only.</summary>
6978       <param name="force">Reserved for internal use only.</param>
6979     </member>
6980     <member name="T:System.Data.DataViewManager">
6981       <summary>Contains a default <see cref="T:System.Data.DataViewSettingCollection" /> for each <see cref="T:System.Data.DataTable" /> in a <see cref="T:System.Data.DataSet" />.</summary>
6982     </member>
6983     <member name="M:System.Data.DataViewManager.#ctor">
6984       <summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager" /> class.</summary>
6985     </member>
6986     <member name="M:System.Data.DataViewManager.#ctor(System.Data.DataSet)">
6987       <summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager" /> class for the specified <see cref="T:System.Data.DataSet" />.</summary>
6988       <param name="dataSet">The name of the <see cref="T:System.Data.DataSet" /> to use.</param>
6989     </member>
6990     <member name="M:System.Data.DataViewManager.CreateDataView(System.Data.DataTable)">
6991       <summary>Creates a <see cref="T:System.Data.DataView" /> for the specified <see cref="T:System.Data.DataTable" />.</summary>
6992       <param name="table">The name of the <see cref="T:System.Data.DataTable" /> to use in the <see cref="T:System.Data.DataView" />.</param>
6993       <returns>A <see cref="T:System.Data.DataView" /> object.</returns>
6994     </member>
6995     <member name="P:System.Data.DataViewManager.DataSet">
6996       <summary>Gets or sets the <see cref="T:System.Data.DataSet" /> to use with the <see cref="T:System.Data.DataViewManager" />.</summary>
6997       <returns>The <see cref="T:System.Data.DataSet" /> to use.</returns>
6998     </member>
6999     <member name="P:System.Data.DataViewManager.DataViewSettingCollectionString">
7000       <summary>Gets or sets a value that is used for code persistence.</summary>
7001       <returns>A value that is used for code persistence.</returns>
7002     </member>
7003     <member name="P:System.Data.DataViewManager.DataViewSettings">
7004       <summary>Gets the <see cref="T:System.Data.DataViewSettingCollection" /> for each <see cref="T:System.Data.DataTable" /> in the <see cref="T:System.Data.DataSet" />.</summary>
7005       <returns>A <see cref="T:System.Data.DataViewSettingCollection" /> for each <see langword="DataTable" />.</returns>
7006     </member>
7007     <member name="E:System.Data.DataViewManager.ListChanged">
7008       <summary>Occurs after a row is added to or deleted from a <see cref="T:System.Data.DataView" />.</summary>
7009     </member>
7010     <member name="M:System.Data.DataViewManager.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
7011       <summary>Raises the <see cref="E:System.Data.DataViewManager.ListChanged" /> event.</summary>
7012       <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
7013     </member>
7014     <member name="M:System.Data.DataViewManager.RelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
7015       <summary>Raises a <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event when a <see cref="T:System.Data.DataRelation" /> is added to or removed from the <see cref="T:System.Data.DataRelationCollection" />.</summary>
7016       <param name="sender">The source of the event.</param>
7017       <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
7018     </member>
7019     <member name="M:System.Data.DataViewManager.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
7020       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
7021       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
7022       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
7023     </member>
7024     <member name="P:System.Data.DataViewManager.System#Collections#ICollection#Count">
7025       <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.Count" />.</summary>
7026       <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.Count" />.</returns>
7027     </member>
7028     <member name="P:System.Data.DataViewManager.System#Collections#ICollection#IsSynchronized">
7029       <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
7030       <returns>
7031         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
7032     </member>
7033     <member name="P:System.Data.DataViewManager.System#Collections#ICollection#SyncRoot">
7034       <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
7035       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
7036     </member>
7037     <member name="M:System.Data.DataViewManager.System#Collections#IEnumerable#GetEnumerator">
7038       <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</summary>
7039       <returns>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</returns>
7040     </member>
7041     <member name="M:System.Data.DataViewManager.System#Collections#IList#Add(System.Object)">
7042       <summary>Adds an item to the <see cref="T:System.Collections.IList" />.</summary>
7043       <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
7044       <returns>The position into which the new element was inserted.</returns>
7045     </member>
7046     <member name="M:System.Data.DataViewManager.System#Collections#IList#Clear">
7047       <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
7048     </member>
7049     <member name="M:System.Data.DataViewManager.System#Collections#IList#Contains(System.Object)">
7050       <summary>Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value.</summary>
7051       <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
7052       <returns>
7053         <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
7054     </member>
7055     <member name="M:System.Data.DataViewManager.System#Collections#IList#IndexOf(System.Object)">
7056       <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList" />.</summary>
7057       <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
7058       <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
7059     </member>
7060     <member name="M:System.Data.DataViewManager.System#Collections#IList#Insert(System.Int32,System.Object)">
7061       <summary>Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index.</summary>
7062       <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
7063       <param name="value">The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />.</param>
7064     </member>
7065     <member name="P:System.Data.DataViewManager.System#Collections#IList#IsFixedSize">
7066       <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
7067       <returns>
7068         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
7069     </member>
7070     <member name="P:System.Data.DataViewManager.System#Collections#IList#IsReadOnly">
7071       <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
7072       <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</returns>
7073     </member>
7074     <member name="P:System.Data.DataViewManager.System#Collections#IList#Item(System.Int32)">
7075       <summary>Gets or sets the element at the specified index.</summary>
7076       <param name="index">The zero-based index of the element to get or set.</param>
7077       <returns>The element at the specified index.</returns>
7078     </member>
7079     <member name="M:System.Data.DataViewManager.System#Collections#IList#Remove(System.Object)">
7080       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />.</summary>
7081       <param name="value">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />.</param>
7082     </member>
7083     <member name="M:System.Data.DataViewManager.System#Collections#IList#RemoveAt(System.Int32)">
7084       <summary>Removes the <see cref="T:System.Collections.IList" /> item at the specified index.</summary>
7085       <param name="index">The zero-based index of the item to remove.</param>
7086     </member>
7087     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
7088       <summary>Adds the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to the indexes used for searching.</summary>
7089       <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add to the indexes used for searching.</param>
7090     </member>
7091     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddNew">
7092       <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
7093       <returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</returns>
7094     </member>
7095     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowEdit">
7096       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</summary>
7097       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</returns>
7098     </member>
7099     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowNew">
7100       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</summary>
7101       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</returns>
7102     </member>
7103     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowRemove">
7104       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</summary>
7105       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</returns>
7106     </member>
7107     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
7108       <summary>Sorts the list based on a <see cref="T:System.ComponentModel.PropertyDescriptor" /> and a <see cref="T:System.ComponentModel.ListSortDirection" />.</summary>
7109       <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to sort by.</param>
7110       <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</param>
7111     </member>
7112     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
7113       <summary>Returns the index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</summary>
7114       <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to search on.</param>
7115       <param name="key">The value of the property parameter to search for.</param>
7116       <returns>The index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</returns>
7117     </member>
7118     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#IsSorted">
7119       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
7120       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</returns>
7121     </member>
7122     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
7123       <summary>Removes the <see cref="T:System.ComponentModel.PropertyDescriptor" /> from the indexes used for searching.</summary>
7124       <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the indexes used for searching.</param>
7125     </member>
7126     <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveSort">
7127       <summary>Removes any sort applied using <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
7128     </member>
7129     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortDirection">
7130       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
7131       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</returns>
7132     </member>
7133     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortProperty">
7134       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
7135       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</returns>
7136     </member>
7137     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsChangeNotification">
7138       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
7139       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</returns>
7140     </member>
7141     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSearching">
7142       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
7143       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</returns>
7144     </member>
7145     <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSorting">
7146       <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
7147       <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</returns>
7148     </member>
7149     <member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
7150       <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties on each item used to bind data.</summary>
7151       <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the collection as bindable. This can be <see langword="null" />.</param>
7152       <returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties on each item used to bind data.</returns>
7153     </member>
7154     <member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
7155       <summary>Returns the name of the list.</summary>
7156       <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects, for which the list name is returned. This can be <see langword="null" />.</param>
7157       <returns>The name of the list.</returns>
7158     </member>
7159     <member name="M:System.Data.DataViewManager.TableCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
7160       <summary>Raises a <see cref="E:System.Data.DataTableCollection.CollectionChanged" /> event when a <see cref="T:System.Data.DataTable" /> is added to or removed from the <see cref="T:System.Data.DataTableCollection" />.</summary>
7161       <param name="sender">The source of the event.</param>
7162       <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
7163     </member>
7164     <member name="T:System.Data.DataViewRowState">
7165       <summary>Describes the version of data in a <see cref="T:System.Data.DataRow" />.</summary>
7166     </member>
7167     <member name="F:System.Data.DataViewRowState.Added">
7168       <summary>A new row.</summary>
7169     </member>
7170     <member name="F:System.Data.DataViewRowState.CurrentRows">
7171       <summary>Current rows including unchanged, new, and modified rows. By default, <see cref="T:System.Data.DataViewRowState" /> is set to CurrentRows.</summary>
7172     </member>
7173     <member name="F:System.Data.DataViewRowState.Deleted">
7174       <summary>A deleted row.</summary>
7175     </member>
7176     <member name="F:System.Data.DataViewRowState.ModifiedCurrent">
7177       <summary>A current version of original data that has been modified (see <see langword="ModifiedOriginal" />).</summary>
7178     </member>
7179     <member name="F:System.Data.DataViewRowState.ModifiedOriginal">
7180       <summary>The original version of the data that was modified. (Although the data has since been modified, it is available as <see langword="ModifiedCurrent" />).</summary>
7181     </member>
7182     <member name="F:System.Data.DataViewRowState.None">
7183       <summary>None.</summary>
7184     </member>
7185     <member name="F:System.Data.DataViewRowState.OriginalRows">
7186       <summary>Original rows including unchanged and deleted rows.</summary>
7187     </member>
7188     <member name="F:System.Data.DataViewRowState.Unchanged">
7189       <summary>An unchanged row.</summary>
7190     </member>
7191     <member name="T:System.Data.DataViewSetting">
7192       <summary>Represents the default settings for <see cref="P:System.Data.DataView.ApplyDefaultSort" />, <see cref="P:System.Data.DataView.DataViewManager" />, <see cref="P:System.Data.DataView.RowFilter" />, <see cref="P:System.Data.DataView.RowStateFilter" />, <see cref="P:System.Data.DataView.Sort" />, and <see cref="P:System.Data.DataView.Table" /> for DataViews created from the <see cref="T:System.Data.DataViewManager" />.</summary>
7193     </member>
7194     <member name="P:System.Data.DataViewSetting.ApplyDefaultSort">
7195       <summary>Gets or sets a value indicating whether to use the default sort.</summary>
7196       <returns>
7197         <see langword="true" /> if the default sort is used; otherwise <see langword="false" />.</returns>
7198     </member>
7199     <member name="P:System.Data.DataViewSetting.DataViewManager">
7200       <summary>Gets the <see cref="T:System.Data.DataViewManager" /> that contains this <see cref="T:System.Data.DataViewSetting" />.</summary>
7201       <returns>A <see cref="T:System.Data.DataViewManager" /> object.</returns>
7202     </member>
7203     <member name="P:System.Data.DataViewSetting.RowFilter">
7204       <summary>Gets or sets the filter to apply in the <see cref="T:System.Data.DataView" />. See <see cref="P:System.Data.DataView.RowFilter" /> for a code sample using RowFilter.</summary>
7205       <returns>A string that contains the filter to apply.</returns>
7206     </member>
7207     <member name="P:System.Data.DataViewSetting.RowStateFilter">
7208       <summary>Gets or sets a value indicating whether to display Current, Deleted, Modified Current, ModifiedOriginal, New, Original, Unchanged, or no rows in the <see cref="T:System.Data.DataView" />.</summary>
7209       <returns>A value that indicates which rows to display.</returns>
7210     </member>
7211     <member name="P:System.Data.DataViewSetting.Sort">
7212       <summary>Gets or sets a value indicating the sort to apply in the <see cref="T:System.Data.DataView" />.</summary>
7213       <returns>The sort to apply in the <see cref="T:System.Data.DataView" />.</returns>
7214     </member>
7215     <member name="P:System.Data.DataViewSetting.Table">
7216       <summary>Gets the <see cref="T:System.Data.DataTable" /> to which the <see cref="T:System.Data.DataViewSetting" /> properties apply.</summary>
7217       <returns>A <see cref="T:System.Data.DataTable" /> object.</returns>
7218     </member>
7219     <member name="T:System.Data.DataViewSettingCollection">
7220       <summary>Contains a read-only collection of <see cref="T:System.Data.DataViewSetting" /> objects for each <see cref="T:System.Data.DataTable" /> in a <see cref="T:System.Data.DataSet" />.</summary>
7221     </member>
7222     <member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Array,System.Int32)">
7223       <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
7224       <param name="ar">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
7225       <param name="index">The index of the array at which to start inserting.</param>
7226     </member>
7227     <member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Data.DataViewSetting[],System.Int32)">
7228       <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
7229       <param name="ar">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
7230       <param name="index">The index of the array at which to start inserting.</param>
7231     </member>
7232     <member name="P:System.Data.DataViewSettingCollection.Count">
7233       <summary>Gets the number of <see cref="T:System.Data.DataViewSetting" /> objects in the <see cref="T:System.Data.DataViewSettingCollection" />.</summary>
7234       <returns>The number of <see cref="T:System.Data.DataViewSetting" /> objects in the collection.</returns>
7235     </member>
7236     <member name="M:System.Data.DataViewSettingCollection.GetEnumerator">
7237       <summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for the collection.</summary>
7238       <returns>An <see cref="T:System.Collections.IEnumerator" /> object.</returns>
7239     </member>
7240     <member name="P:System.Data.DataViewSettingCollection.IsReadOnly">
7241       <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataViewSettingCollection" /> is read-only.</summary>
7242       <returns>Always returns <see langword="true" /> to indicate the collection is read-only.</returns>
7243     </member>
7244     <member name="P:System.Data.DataViewSettingCollection.IsSynchronized">
7245       <summary>Gets a value that indicates whether access to the <see cref="T:System.Data.DataViewSettingCollection" /> is synchronized (thread-safe).</summary>
7246       <returns>This property is always <see langword="false" />, unless overridden by a derived class.</returns>
7247     </member>
7248     <member name="P:System.Data.DataViewSettingCollection.Item(System.Data.DataTable)">
7249       <summary>Gets the <see cref="T:System.Data.DataViewSetting" /> objects of the specified <see cref="T:System.Data.DataTable" /> from the collection.</summary>
7250       <param name="table">The <see cref="T:System.Data.DataTable" /> to find.</param>
7251       <returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
7252     </member>
7253     <member name="P:System.Data.DataViewSettingCollection.Item(System.Int32)">
7254       <summary>Gets the <see cref="T:System.Data.DataViewSetting" /> objects of the <see cref="T:System.Data.DataTable" /> specified by its index.</summary>
7255       <param name="index">The zero-based index of the <see cref="T:System.Data.DataTable" /> to find.</param>
7256       <returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
7257     </member>
7258     <member name="P:System.Data.DataViewSettingCollection.Item(System.String)">
7259       <summary>Gets the <see cref="T:System.Data.DataViewSetting" /> of the <see cref="T:System.Data.DataTable" /> specified by its name.</summary>
7260       <param name="tableName">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
7261       <returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
7262     </member>
7263     <member name="P:System.Data.DataViewSettingCollection.SyncRoot">
7264       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection" />.</summary>
7265       <returns>An object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection" />.</returns>
7266     </member>
7267     <member name="T:System.Data.DBConcurrencyException">
7268       <summary>The exception that is thrown by the <see cref="T:System.Data.Common.DataAdapter" /> during an insert, update, or delete operation if the number of rows affected equals zero.</summary>
7269     </member>
7270     <member name="M:System.Data.DBConcurrencyException.#ctor">
7271       <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
7272     </member>
7273     <member name="M:System.Data.DBConcurrencyException.#ctor(System.String)">
7274       <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
7275       <param name="message">The text string describing the details of the exception.</param>
7276     </member>
7277     <member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception)">
7278       <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
7279       <param name="message">The text string describing the details of the exception.</param>
7280       <param name="inner">A reference to an inner exception.</param>
7281     </member>
7282     <member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception,System.Data.DataRow[])">
7283       <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
7284       <param name="message">The error message that explains the reason for this exception.</param>
7285       <param name="inner">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
7286       <param name="dataRows">An array containing the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception.</param>
7287     </member>
7288     <member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[])">
7289       <summary>Copies the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow" /> objects.</summary>
7290       <param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow" /> objects to copy the <see cref="T:System.Data.DataRow" /> objects into.</param>
7291     </member>
7292     <member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[],System.Int32)">
7293       <summary>Copies the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow" /> objects, starting at the specified destination array index.</summary>
7294       <param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow" /> objects to copy the <see cref="T:System.Data.DataRow" /> objects into.</param>
7295       <param name="arrayIndex">The destination array index to start copying into.</param>
7296     </member>
7297     <member name="M:System.Data.DBConcurrencyException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7298       <summary>Populates the specified serialization information object with the data needed to serialize the <see cref="T:System.Data.DBConcurrencyException" />.</summary>
7299       <param name="si">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data associated with the <see cref="T:System.Data.DBConcurrencyException" />.</param>
7300       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DBConcurrencyException" />.</param>
7301       <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
7302     </member>
7303     <member name="P:System.Data.DBConcurrencyException.Row">
7304       <summary>Gets or sets the value of the <see cref="T:System.Data.DataRow" /> that generated the <see cref="T:System.Data.DBConcurrencyException" />.</summary>
7305       <returns>The value of the <see cref="T:System.Data.DataRow" />.</returns>
7306     </member>
7307     <member name="P:System.Data.DBConcurrencyException.RowCount">
7308       <summary>Gets the number of rows whose update failed, generating this exception.</summary>
7309       <returns>An integer containing a count of the number of rows whose update failed.</returns>
7310     </member>
7311     <member name="T:System.Data.DbType">
7312       <summary>Specifies the data type of a field, a property, or a <see langword="Parameter" /> object of a .NET Framework data provider.</summary>
7313     </member>
7314     <member name="F:System.Data.DbType.AnsiString">
7315       <summary>A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
7316     </member>
7317     <member name="F:System.Data.DbType.AnsiStringFixedLength">
7318       <summary>A fixed-length stream of non-Unicode characters.</summary>
7319     </member>
7320     <member name="F:System.Data.DbType.Binary">
7321       <summary>A variable-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
7322     </member>
7323     <member name="F:System.Data.DbType.Boolean">
7324       <summary>A simple type representing Boolean values of <see langword="true" /> or <see langword="false" />.</summary>
7325     </member>
7326     <member name="F:System.Data.DbType.Byte">
7327       <summary>An 8-bit unsigned integer ranging in value from 0 to 255.</summary>
7328     </member>
7329     <member name="F:System.Data.DbType.Currency">
7330       <summary>A currency value ranging from -2 63 (or -922,337,203,685,477.5808) to 2 63 -1 (or +922,337,203,685,477.5807) with an accuracy to a ten-thousandth of a currency unit.</summary>
7331     </member>
7332     <member name="F:System.Data.DbType.Date">
7333       <summary>A type representing a date value.</summary>
7334     </member>
7335     <member name="F:System.Data.DbType.DateTime">
7336       <summary>A type representing a date and time value.</summary>
7337     </member>
7338     <member name="F:System.Data.DbType.DateTime2">
7339       <summary>Date and time data. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds.</summary>
7340     </member>
7341     <member name="F:System.Data.DbType.DateTimeOffset">
7342       <summary>Date and time data with time zone awareness. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds. Time zone value range is -14:00 through +14:00.</summary>
7343     </member>
7344     <member name="F:System.Data.DbType.Decimal">
7345       <summary>A simple type representing values ranging from 1.0 x 10 -28 to approximately 7.9 x 10 28 with 28-29 significant digits.</summary>
7346     </member>
7347     <member name="F:System.Data.DbType.Double">
7348       <summary>A floating point type representing values ranging from approximately 5.0 x 10 -324 to 1.7 x 10 308 with a precision of 15-16 digits.</summary>
7349     </member>
7350     <member name="F:System.Data.DbType.Guid">
7351       <summary>A globally unique identifier (or GUID).</summary>
7352     </member>
7353     <member name="F:System.Data.DbType.Int16">
7354       <summary>An integral type representing signed 16-bit integers with values between -32768 and 32767.</summary>
7355     </member>
7356     <member name="F:System.Data.DbType.Int32">
7357       <summary>An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647.</summary>
7358     </member>
7359     <member name="F:System.Data.DbType.Int64">
7360       <summary>An integral type representing signed 64-bit integers with values between -9223372036854775808 and 9223372036854775807.</summary>
7361     </member>
7362     <member name="F:System.Data.DbType.Object">
7363       <summary>A general type representing any reference or value type not explicitly represented by another <see langword="DbType" /> value.</summary>
7364     </member>
7365     <member name="F:System.Data.DbType.SByte">
7366       <summary>An integral type representing signed 8-bit integers with values between -128 and 127.</summary>
7367     </member>
7368     <member name="F:System.Data.DbType.Single">
7369       <summary>A floating point type representing values ranging from approximately 1.5 x 10 -45 to 3.4 x 10 38 with a precision of 7 digits.</summary>
7370     </member>
7371     <member name="F:System.Data.DbType.String">
7372       <summary>A type representing Unicode character strings.</summary>
7373     </member>
7374     <member name="F:System.Data.DbType.StringFixedLength">
7375       <summary>A fixed-length string of Unicode characters.</summary>
7376     </member>
7377     <member name="F:System.Data.DbType.Time">
7378       <summary>A type representing a SQL Server <see langword="DateTime" /> value. If you want to use a SQL Server <see langword="time" /> value, use <see cref="F:System.Data.SqlDbType.Time" />.</summary>
7379     </member>
7380     <member name="F:System.Data.DbType.UInt16">
7381       <summary>An integral type representing unsigned 16-bit integers with values between 0 and 65535.</summary>
7382     </member>
7383     <member name="F:System.Data.DbType.UInt32">
7384       <summary>An integral type representing unsigned 32-bit integers with values between 0 and 4294967295.</summary>
7385     </member>
7386     <member name="F:System.Data.DbType.UInt64">
7387       <summary>An integral type representing unsigned 64-bit integers with values between 0 and 18446744073709551615.</summary>
7388     </member>
7389     <member name="F:System.Data.DbType.VarNumeric">
7390       <summary>A variable-length numeric value.</summary>
7391     </member>
7392     <member name="F:System.Data.DbType.Xml">
7393       <summary>A parsed representation of an XML document or fragment.</summary>
7394     </member>
7395     <member name="T:System.Data.DeletedRowInaccessibleException">
7396       <summary>Represents the exception that is thrown when an action is tried on a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
7397     </member>
7398     <member name="M:System.Data.DeletedRowInaccessibleException.#ctor">
7399       <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class.</summary>
7400     </member>
7401     <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7402       <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with serialization information.</summary>
7403       <param name="info">The data that is required to serialize or deserialize an object.</param>
7404       <param name="context">Description of the source and destination of the specified serialized stream.</param>
7405     </member>
7406     <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String)">
7407       <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with the specified string.</summary>
7408       <param name="s">The string to display when the exception is thrown.</param>
7409     </member>
7410     <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String,System.Exception)">
7411       <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
7412       <param name="message">The error message that explains the reason for the exception.</param>
7413       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
7414     </member>
7415     <member name="T:System.Data.DuplicateNameException">
7416       <summary>Represents the exception that is thrown when a duplicate database object name is encountered during an add operation in a <see cref="T:System.Data.DataSet" /> -related object.</summary>
7417     </member>
7418     <member name="M:System.Data.DuplicateNameException.#ctor">
7419       <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class.</summary>
7420     </member>
7421     <member name="M:System.Data.DuplicateNameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7422       <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with serialization information.</summary>
7423       <param name="info">The data that is required to serialize or deserialize an object.</param>
7424       <param name="context">Description of the source and destination of the specified serialized stream.</param>
7425     </member>
7426     <member name="M:System.Data.DuplicateNameException.#ctor(System.String)">
7427       <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with the specified string.</summary>
7428       <param name="s">The string to display when the exception is thrown.</param>
7429     </member>
7430     <member name="M:System.Data.DuplicateNameException.#ctor(System.String,System.Exception)">
7431       <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with the specified string and exception.</summary>
7432       <param name="message">The error message that explains the reason for the exception.</param>
7433       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
7434     </member>
7435     <member name="T:System.Data.EnumerableRowCollection">
7436       <summary>Represents a collection of <see cref="T:System.Data.DataRow" /> objects returned from a LINQ to DataSet query. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
7437     </member>
7438     <member name="M:System.Data.EnumerableRowCollection.System#Collections#IEnumerable#GetEnumerator">
7439       <summary>Returns an enumerator for the collection of <see cref="T:System.Data.DataRow" /> objects. This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
7440       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to traverse the collection of <see cref="T:System.Data.DataRow" /> objects.</returns>
7441     </member>
7442     <member name="T:System.Data.EnumerableRowCollection`1">
7443       <summary>Represents a collection of <see cref="T:System.Data.DataRow" /> objects returned from a query.</summary>
7444       <typeparam name="TRow">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7445     </member>
7446     <member name="M:System.Data.EnumerableRowCollection`1.GetEnumerator">
7447       <summary>Returns an enumerator for the collection of contained row objects.</summary>
7448       <returns>A strongly-typed <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to traverse the collection of <paramref name="TRow" /> objects.</returns>
7449     </member>
7450     <member name="M:System.Data.EnumerableRowCollection`1.System#Collections#IEnumerable#GetEnumerator">
7451       <summary>Returns an enumerator for the collection of <see cref="T:System.Data.DataRow" /> objects.</summary>
7452       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to traverse the collection of <see cref="T:System.Data.DataRow" /> objects.</returns>
7453     </member>
7454     <member name="T:System.Data.EnumerableRowCollectionExtensions">
7455       <summary>Contains the extension methods for the data row collection classes.</summary>
7456     </member>
7457     <member name="M:System.Data.EnumerableRowCollectionExtensions.Cast``1(System.Data.EnumerableRowCollection)">
7458       <summary>Converts the elements of an <see cref="T:System.Data.EnumerableRowCollection" /> to the specified type.</summary>
7459       <param name="source">The <see cref="T:System.Data.EnumerableRowCollection" /> that contains the elements to be converted.</param>
7460       <typeparam name="TResult">The type to convert the elements of source to.</typeparam>
7461       <returns>An <see cref="T:System.Data.EnumerableRowCollection" /> that contains each element of the source sequence converted to the specified type.</returns>
7462       <exception cref="T:System.ArgumentNullException">
7463         <paramref name="source" /> is <see langword="null" />.</exception>
7464       <exception cref="T:System.InvalidCastException">An element in the sequence cannot be cast to type <paramref name="TResult" />.</exception>
7465     </member>
7466     <member name="M:System.Data.EnumerableRowCollectionExtensions.OrderBy``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1})">
7467       <summary>Sorts the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in ascending order according to the specified key.</summary>
7468       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7469       <param name="keySelector">A function to extract a key from an element.</param>
7470       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7471       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7472       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
7473     </member>
7474     <member name="M:System.Data.EnumerableRowCollectionExtensions.OrderBy``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
7475       <summary>Sorts the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in ascending order according to the specified key and comparer.</summary>
7476       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7477       <param name="keySelector">A function to extract a key from an element.</param>
7478       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
7479       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7480       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7481       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
7482     </member>
7483     <member name="M:System.Data.EnumerableRowCollectionExtensions.OrderByDescending``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1})">
7484       <summary>Sorts the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in descending order according to the specified key.</summary>
7485       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7486       <param name="keySelector">A function to extract a key from an element.</param>
7487       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7488       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7489       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
7490     </member>
7491     <member name="M:System.Data.EnumerableRowCollectionExtensions.OrderByDescending``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
7492       <summary>Sorts the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in descending order according to the specified key and comparer.</summary>
7493       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7494       <param name="keySelector">A function to extract a key from an element.</param>
7495       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
7496       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7497       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7498       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
7499     </member>
7500     <member name="M:System.Data.EnumerableRowCollectionExtensions.Select``2(System.Data.EnumerableRowCollection{``0},System.Func{``0,``1})">
7501       <summary>Projects each element of an <see cref="T:System.Data.EnumerableRowCollection`1" /> into a new form.</summary>
7502       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection`1" /> containing the <see cref="T:System.Data.DataRow" /> elements to invoke a transform function upon.</param>
7503       <param name="selector">A transform function to apply to each element.</param>
7504       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7505       <typeparam name="S">The type that <paramref name="TRow" /> will be transformed into.</typeparam>
7506       <returns>An <see cref="T:System.Data.EnumerableRowCollection`1" /> whose elements are the result of invoking the transform function on each element of <paramref name="source" />.</returns>
7507     </member>
7508     <member name="M:System.Data.EnumerableRowCollectionExtensions.ThenBy``2(System.Data.OrderedEnumerableRowCollection{``0},System.Func{``0,``1})">
7509       <summary>Performs a secondary ordering of the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in ascending order according to the specified key.</summary>
7510       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7511       <param name="keySelector">A function to extract a key from an element.</param>
7512       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7513       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7514       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
7515     </member>
7516     <member name="M:System.Data.EnumerableRowCollectionExtensions.ThenBy``2(System.Data.OrderedEnumerableRowCollection{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
7517       <summary>Performs a secondary ordering of the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in ascending order according to the specified key and comparer.</summary>
7518       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7519       <param name="keySelector">A function to extract a key from an element.</param>
7520       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
7521       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7522       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7523       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
7524     </member>
7525     <member name="M:System.Data.EnumerableRowCollectionExtensions.ThenByDescending``2(System.Data.OrderedEnumerableRowCollection{``0},System.Func{``0,``1})">
7526       <summary>Performs a secondary ordering of the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in descending order according to the specified key.</summary>
7527       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7528       <param name="keySelector">A function to extract a key from an element.</param>
7529       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7530       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7531       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
7532     </member>
7533     <member name="M:System.Data.EnumerableRowCollectionExtensions.ThenByDescending``2(System.Data.OrderedEnumerableRowCollection{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
7534       <summary>Performs a secondary ordering of the rows of a <see cref="T:System.Data.EnumerableRowCollection" /> in descending order according to the specified key and comparer.</summary>
7535       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
7536       <param name="keySelector">A function to extract a key from an element.</param>
7537       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
7538       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7539       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
7540       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
7541     </member>
7542     <member name="M:System.Data.EnumerableRowCollectionExtensions.Where``1(System.Data.EnumerableRowCollection{``0},System.Func{``0,System.Boolean})">
7543       <summary>Filters a sequence of rows based on the specified predicate.</summary>
7544       <param name="source">An <see cref="T:System.Data.EnumerableRowCollection" /> containing the <see cref="T:System.Data.DataRow" /> elements to filter.</param>
7545       <param name="predicate">A function to test each element for a condition.</param>
7546       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
7547       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> that contains rows from the input sequence that satisfy the condition.</returns>
7548     </member>
7549     <member name="T:System.Data.EvaluateException">
7550       <summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression" /> property of a <see cref="T:System.Data.DataColumn" /> cannot be evaluated.</summary>
7551     </member>
7552     <member name="M:System.Data.EvaluateException.#ctor">
7553       <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class.</summary>
7554     </member>
7555     <member name="M:System.Data.EvaluateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7556       <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
7557       <param name="info">The data needed to serialize or deserialize an object.</param>
7558       <param name="context">The source and destination of a particular serialized stream.</param>
7559     </member>
7560     <member name="M:System.Data.EvaluateException.#ctor(System.String)">
7561       <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with the specified string.</summary>
7562       <param name="s">The string to display when the exception is thrown.</param>
7563     </member>
7564     <member name="M:System.Data.EvaluateException.#ctor(System.String,System.Exception)">
7565       <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
7566       <param name="message">The error message that explains the reason for the exception.</param>
7567       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
7568     </member>
7569     <member name="T:System.Data.FillErrorEventArgs">
7570       <summary>Provides data for the <see cref="E:System.Data.Common.DataAdapter.FillError" /> event of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
7571     </member>
7572     <member name="M:System.Data.FillErrorEventArgs.#ctor(System.Data.DataTable,System.Object[])">
7573       <summary>Initializes a new instance of the <see cref="T:System.Data.FillErrorEventArgs" /> class.</summary>
7574       <param name="dataTable">The <see cref="T:System.Data.DataTable" /> being updated.</param>
7575       <param name="values">The values for the row being updated.</param>
7576     </member>
7577     <member name="P:System.Data.FillErrorEventArgs.Continue">
7578       <summary>Gets or sets a value indicating whether to continue the fill operation despite the error.</summary>
7579       <returns>
7580         <see langword="true" /> if the fill operation should continue; otherwise, <see langword="false" />.</returns>
7581     </member>
7582     <member name="P:System.Data.FillErrorEventArgs.DataTable">
7583       <summary>Gets the <see cref="T:System.Data.DataTable" /> being updated when the error occurred.</summary>
7584       <returns>The <see cref="T:System.Data.DataTable" /> being updated.</returns>
7585     </member>
7586     <member name="P:System.Data.FillErrorEventArgs.Errors">
7587       <summary>Gets the errors being handled.</summary>
7588       <returns>The errors being handled.</returns>
7589     </member>
7590     <member name="P:System.Data.FillErrorEventArgs.Values">
7591       <summary>Gets the values for the row being updated when the error occurred.</summary>
7592       <returns>The values for the row being updated.</returns>
7593     </member>
7594     <member name="T:System.Data.FillErrorEventHandler">
7595       <summary>Represents the method that will handle the <see cref="E:System.Data.Common.DataAdapter.FillError" /> event.</summary>
7596       <param name="sender">The source of the event.</param>
7597       <param name="e">The <see cref="T:System.Data.FillErrorEventArgs" /> that contains the event data.</param>
7598     </member>
7599     <member name="T:System.Data.ForeignKeyConstraint">
7600       <summary>Represents an action restriction enforced on a set of columns in a primary key/foreign key relationship when a value or row is either deleted or updated.</summary>
7601     </member>
7602     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn,System.Data.DataColumn)">
7603       <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
7604       <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7605       <param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7606       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7607       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7608 -Or -
7609 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7610     </member>
7611     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn[],System.Data.DataColumn[])">
7612       <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
7613       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7614       <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7615       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7616       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7617 -Or -
7618 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7619     </member>
7620     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
7621       <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified name, parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
7622       <param name="constraintName">The name of the constraint.</param>
7623       <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7624       <param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7625       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7626       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7627 -Or -
7628 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7629     </member>
7630     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
7631       <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified name, and arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
7632       <param name="constraintName">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />. If <see langword="null" /> or empty string, a default name will be given when added to the constraints collection.</param>
7633       <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7634       <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
7635       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7636       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7637 -Or -
7638 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7639     </member>
7640     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.String,System.String,System.String[],System.String[],System.Data.AcceptRejectRule,System.Data.Rule,System.Data.Rule)">
7641       <summary>This constructor is provided for design time support in the Visual Studio  environment. <see cref="T:System.Data.ForeignKeyConstraint" /> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])" />. Tables and columns with the specified names must exist at the time the method is called, or if <see cref="M:System.Data.DataTable.BeginInit" /> has been called prior to calling this constructor, the tables and columns with the specified names must exist at the time that <see cref="M:System.Data.DataTable.EndInit" /> is called.</summary>
7642       <param name="constraintName">The name of the constraint.</param>
7643       <param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable" /> that contains parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7644       <param name="parentTableNamespace">The name of the <see cref="P:System.Data.DataTable.Namespace" />.</param>
7645       <param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7646       <param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7647       <param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, <see langword="Cascade" />, and <see langword="Default" />.</param>
7648       <param name="deleteRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is deleted. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
7649       <param name="updateRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is updated. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
7650       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7651       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7652 -Or -
7653 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7654     </member>
7655     <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.String,System.String[],System.String[],System.Data.AcceptRejectRule,System.Data.Rule,System.Data.Rule)">
7656       <summary>This constructor is provided for design time support in the Visual Studio  environment. <see cref="T:System.Data.ForeignKeyConstraint" /> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])" />. Tables and columns with the specified names must exist at the time the method is called, or if <see cref="M:System.Data.DataTable.BeginInit" /> has been called prior to calling this constructor, the tables and columns with the specified names must exist at the time that <see cref="M:System.Data.DataTable.EndInit" /> is called.</summary>
7657       <param name="constraintName">The name of the constraint.</param>
7658       <param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable" /> that contains parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7659       <param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7660       <param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
7661       <param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, <see langword="Cascade" />, and <see langword="Default" />.</param>
7662       <param name="deleteRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is deleted. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
7663       <param name="updateRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is updated. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
7664       <exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
7665       <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
7666 -Or -
7667 The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
7668     </member>
7669     <member name="P:System.Data.ForeignKeyConstraint.AcceptRejectRule">
7670       <summary>Indicates the action that should take place across this constraint when <see cref="M:System.Data.DataTable.AcceptChanges" /> is invoked.</summary>
7671       <returns>One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, and <see langword="Cascade" />. The default is <see langword="None" />.</returns>
7672     </member>
7673     <member name="P:System.Data.ForeignKeyConstraint.Columns">
7674       <summary>Gets the child columns of this constraint.</summary>
7675       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the child columns of the constraint.</returns>
7676     </member>
7677     <member name="P:System.Data.ForeignKeyConstraint.DeleteRule">
7678       <summary>Gets or sets the action that occurs across this constraint when a row is deleted.</summary>
7679       <returns>One of the <see cref="T:System.Data.Rule" /> values. The default is <see langword="Cascade" />.</returns>
7680     </member>
7681     <member name="M:System.Data.ForeignKeyConstraint.Equals(System.Object)">
7682       <summary>Gets a value indicating whether the current <see cref="T:System.Data.ForeignKeyConstraint" /> is identical to the specified object.</summary>
7683       <param name="key">The object to which this <see cref="T:System.Data.ForeignKeyConstraint" /> is compared. Two <see cref="T:System.Data.ForeignKeyConstraint" /> are equal if they constrain the same columns.</param>
7684       <returns>
7685         <see langword="true" />, if the objects are identical; otherwise, <see langword="false" />.</returns>
7686     </member>
7687     <member name="M:System.Data.ForeignKeyConstraint.GetHashCode">
7688       <summary>Gets the hash code of this instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> object.</summary>
7689       <returns>A 32-bit signed integer hash code.</returns>
7690     </member>
7691     <member name="P:System.Data.ForeignKeyConstraint.RelatedColumns">
7692       <summary>The parent columns of this constraint.</summary>
7693       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of the constraint.</returns>
7694     </member>
7695     <member name="P:System.Data.ForeignKeyConstraint.RelatedTable">
7696       <summary>Gets the parent table of this constraint.</summary>
7697       <returns>The parent <see cref="T:System.Data.DataTable" /> of this constraint.</returns>
7698     </member>
7699     <member name="P:System.Data.ForeignKeyConstraint.Table">
7700       <summary>Gets the child table of this constraint.</summary>
7701       <returns>A <see cref="T:System.Data.DataTable" /> that is the child table in the constraint.</returns>
7702     </member>
7703     <member name="P:System.Data.ForeignKeyConstraint.UpdateRule">
7704       <summary>Gets or sets the action that occurs across this constraint on when a row is updated.</summary>
7705       <returns>One of the <see cref="T:System.Data.Rule" /> values. The default is <see langword="Cascade" />.</returns>
7706     </member>
7707     <member name="T:System.Data.IColumnMapping">
7708       <summary>Associates a data source column with a <see cref="T:System.Data.DataSet" /> column, and is implemented by the <see cref="T:System.Data.Common.DataColumnMapping" /> class, which is used in common by .NET Framework data providers.</summary>
7709     </member>
7710     <member name="P:System.Data.IColumnMapping.DataSetColumn">
7711       <summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet" /> to map to.</summary>
7712       <returns>The name of the column within the <see cref="T:System.Data.DataSet" /> to map to. The name is not case sensitive.</returns>
7713     </member>
7714     <member name="P:System.Data.IColumnMapping.SourceColumn">
7715       <summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
7716       <returns>The case-sensitive name of the column in the data source.</returns>
7717     </member>
7718     <member name="T:System.Data.IColumnMappingCollection">
7719       <summary>Contains a collection of DataColumnMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataColumnMappingCollection" />, which is used in common by .NET Framework data providers.</summary>
7720     </member>
7721     <member name="M:System.Data.IColumnMappingCollection.Add(System.String,System.String)">
7722       <summary>Adds a ColumnMapping object to the ColumnMapping collection using the source column and <see cref="T:System.Data.DataSet" /> column names.</summary>
7723       <param name="sourceColumnName">The case-sensitive name of the source column.</param>
7724       <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column.</param>
7725       <returns>The ColumnMapping object that was added to the collection.</returns>
7726     </member>
7727     <member name="M:System.Data.IColumnMappingCollection.Contains(System.String)">
7728       <summary>Gets a value indicating whether the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> contains a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</summary>
7729       <param name="sourceColumnName">The case-sensitive name of the source column.</param>
7730       <returns>
7731         <see langword="true" /> if a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name exists, otherwise <see langword="false" />.</returns>
7732     </member>
7733     <member name="M:System.Data.IColumnMappingCollection.GetByDataSetColumn(System.String)">
7734       <summary>Gets the ColumnMapping object with the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
7735       <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column within the collection.</param>
7736       <returns>The ColumnMapping object with the specified <see langword="DataSet" /> column name.</returns>
7737     </member>
7738     <member name="M:System.Data.IColumnMappingCollection.IndexOf(System.String)">
7739       <summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name. The name is case-sensitive.</summary>
7740       <param name="sourceColumnName">The case-sensitive name of the source column.</param>
7741       <returns>The zero-based location of the <see langword="DataColumnMapping" /> object with the specified source column name.</returns>
7742     </member>
7743     <member name="P:System.Data.IColumnMappingCollection.Item(System.String)">
7744       <summary>Gets or sets the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</summary>
7745       <param name="index">The <see langword="SourceColumn" /> name of the <see langword="IColumnMapping" /> object to find.</param>
7746       <returns>The <see langword="IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</returns>
7747     </member>
7748     <member name="M:System.Data.IColumnMappingCollection.RemoveAt(System.String)">
7749       <summary>Removes the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see cref="P:System.Data.IColumnMapping.SourceColumn" /> name from the collection.</summary>
7750       <param name="sourceColumnName">The case-sensitive <see langword="SourceColumn" /> name.</param>
7751       <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataColumnMapping" /> object does not exist with the specified <see langword="SourceColumn" /> name.</exception>
7752     </member>
7753     <member name="T:System.Data.IDataAdapter">
7754       <summary>Allows an object to implement a DataAdapter, and represents a set of methods and mapping action-related properties that are used to fill and update a <see cref="T:System.Data.DataSet" /> and update a data source.
7755 <see cref="T:System.Data.IDbDataAdapter" /> instances are for data sources that are (or resemble) relational databases with textual commands (like Transact-SQL), while <see cref="T:System.Data.IDataAdapter" /> instances could can use any type of data source.</summary>
7756     </member>
7757     <member name="M:System.Data.IDataAdapter.Fill(System.Data.DataSet)">
7758       <summary>Adds or updates rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> name, and creates a <see cref="T:System.Data.DataTable" /> named "Table".</summary>
7759       <param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
7760       <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
7761     </member>
7762     <member name="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
7763       <summary>Adds a <see cref="T:System.Data.DataTable" /> named "Table" to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
7764       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
7765       <param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
7766       <returns>An array of <see cref="T:System.Data.DataTable" /> objects that contain schema information returned from the data source.</returns>
7767     </member>
7768     <member name="M:System.Data.IDataAdapter.GetFillParameters">
7769       <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
7770       <returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
7771     </member>
7772     <member name="P:System.Data.IDataAdapter.MissingMappingAction">
7773       <summary>Indicates or specifies whether unmapped source tables or columns are passed with their source names in order to be filtered or to raise an error.</summary>
7774       <returns>One of the <see cref="T:System.Data.MissingMappingAction" /> values. The default is <see langword="Passthrough" />.</returns>
7775       <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction" /> values.</exception>
7776     </member>
7777     <member name="P:System.Data.IDataAdapter.MissingSchemaAction">
7778       <summary>Indicates or specifies whether missing source tables, columns, and their relationships are added to the dataset schema, ignored, or cause an error to be raised.</summary>
7779       <returns>One of the <see cref="T:System.Data.MissingSchemaAction" /> values. The default is <see langword="Add" />.</returns>
7780       <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction" /> values.</exception>
7781     </member>
7782     <member name="P:System.Data.IDataAdapter.TableMappings">
7783       <summary>Indicates how a source table is mapped to a dataset table.</summary>
7784       <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
7785     </member>
7786     <member name="M:System.Data.IDataAdapter.Update(System.Data.DataSet)">
7787       <summary>Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" /> from a <see cref="T:System.Data.DataTable" /> named "Table".</summary>
7788       <param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
7789       <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
7790       <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
7791     </member>
7792     <member name="T:System.Data.IDataParameter">
7793       <summary>Represents a parameter to a Command object, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns; and is implemented by .NET Framework data providers that access data sources.</summary>
7794     </member>
7795     <member name="P:System.Data.IDataParameter.DbType">
7796       <summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
7797       <returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.String" />.</returns>
7798       <exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType" />.</exception>
7799     </member>
7800     <member name="P:System.Data.IDataParameter.Direction">
7801       <summary>Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
7802       <returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
7803       <exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
7804     </member>
7805     <member name="P:System.Data.IDataParameter.IsNullable">
7806       <summary>Gets a value indicating whether the parameter accepts null values.</summary>
7807       <returns>
7808         <see langword="true" /> if null values are accepted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
7809     </member>
7810     <member name="P:System.Data.IDataParameter.ParameterName">
7811       <summary>Gets or sets the name of the <see cref="T:System.Data.IDataParameter" />.</summary>
7812       <returns>The name of the <see cref="T:System.Data.IDataParameter" />. The default is an empty string.</returns>
7813     </member>
7814     <member name="P:System.Data.IDataParameter.SourceColumn">
7815       <summary>Gets or sets the name of the source column that is mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.IDataParameter.Value" />.</summary>
7816       <returns>The name of the source column that is mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string.</returns>
7817     </member>
7818     <member name="P:System.Data.IDataParameter.SourceVersion">
7819       <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when loading <see cref="P:System.Data.IDataParameter.Value" />.</summary>
7820       <returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
7821       <exception cref="T:System.ArgumentException">The property was not set one of the <see cref="T:System.Data.DataRowVersion" /> values.</exception>
7822     </member>
7823     <member name="P:System.Data.IDataParameter.Value">
7824       <summary>Gets or sets the value of the parameter.</summary>
7825       <returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
7826     </member>
7827     <member name="T:System.Data.IDataParameterCollection">
7828       <summary>Collects all parameters relevant to a Command object and their mappings to <see cref="T:System.Data.DataSet" /> columns, and is implemented by .NET Framework data providers that access data sources.</summary>
7829     </member>
7830     <member name="M:System.Data.IDataParameterCollection.Contains(System.String)">
7831       <summary>Gets a value indicating whether a parameter in the collection has the specified name.</summary>
7832       <param name="parameterName">The name of the parameter.</param>
7833       <returns>
7834         <see langword="true" /> if the collection contains the parameter; otherwise, <see langword="false" />.</returns>
7835     </member>
7836     <member name="M:System.Data.IDataParameterCollection.IndexOf(System.String)">
7837       <summary>Gets the location of the <see cref="T:System.Data.IDataParameter" /> within the collection.</summary>
7838       <param name="parameterName">The name of the parameter.</param>
7839       <returns>The zero-based location of the <see cref="T:System.Data.IDataParameter" /> within the collection.</returns>
7840     </member>
7841     <member name="P:System.Data.IDataParameterCollection.Item(System.String)">
7842       <summary>Gets or sets the parameter at the specified index.</summary>
7843       <param name="parameterName">The name of the parameter to retrieve.</param>
7844       <returns>An <see cref="T:System.Object" /> at the specified index.</returns>
7845     </member>
7846     <member name="M:System.Data.IDataParameterCollection.RemoveAt(System.String)">
7847       <summary>Removes the <see cref="T:System.Data.IDataParameter" /> from the collection.</summary>
7848       <param name="parameterName">The name of the parameter.</param>
7849     </member>
7850     <member name="T:System.Data.IDataReader">
7851       <summary>Provides a means of reading one or more forward-only streams of result sets obtained by executing a command at a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
7852     </member>
7853     <member name="M:System.Data.IDataReader.Close">
7854       <summary>Closes the <see cref="T:System.Data.IDataReader" /> Object.</summary>
7855     </member>
7856     <member name="P:System.Data.IDataReader.Depth">
7857       <summary>Gets a value indicating the depth of nesting for the current row.</summary>
7858       <returns>The level of nesting.</returns>
7859     </member>
7860     <member name="M:System.Data.IDataReader.GetSchemaTable">
7861       <summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.IDataReader" />.</summary>
7862       <returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
7863       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.IDataReader" /> is closed.</exception>
7864     </member>
7865     <member name="P:System.Data.IDataReader.IsClosed">
7866       <summary>Gets a value indicating whether the data reader is closed.</summary>
7867       <returns>
7868         <see langword="true" /> if the data reader is closed; otherwise, <see langword="false" />.</returns>
7869     </member>
7870     <member name="M:System.Data.IDataReader.NextResult">
7871       <summary>Advances the data reader to the next result, when reading the results of batch SQL statements.</summary>
7872       <returns>
7873         <see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
7874     </member>
7875     <member name="M:System.Data.IDataReader.Read">
7876       <summary>Advances the <see cref="T:System.Data.IDataReader" /> to the next record.</summary>
7877       <returns>
7878         <see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
7879     </member>
7880     <member name="P:System.Data.IDataReader.RecordsAffected">
7881       <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
7882       <returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
7883     </member>
7884     <member name="T:System.Data.IDataRecord">
7885       <summary>Provides access to the column values within each row for a <see langword="DataReader" />, and is implemented by .NET Framework data providers that access relational databases.</summary>
7886     </member>
7887     <member name="P:System.Data.IDataRecord.FieldCount">
7888       <summary>Gets the number of columns in the current row.</summary>
7889       <returns>When not positioned in a valid recordset, 0; otherwise, the number of columns in the current record. The default is -1.</returns>
7890     </member>
7891     <member name="M:System.Data.IDataRecord.GetBoolean(System.Int32)">
7892       <summary>Gets the value of the specified column as a Boolean.</summary>
7893       <param name="i">The zero-based column ordinal.</param>
7894       <returns>The value of the column.</returns>
7895       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7896     </member>
7897     <member name="M:System.Data.IDataRecord.GetByte(System.Int32)">
7898       <summary>Gets the 8-bit unsigned integer value of the specified column.</summary>
7899       <param name="i">The zero-based column ordinal.</param>
7900       <returns>The 8-bit unsigned integer value of the specified column.</returns>
7901       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7902     </member>
7903     <member name="M:System.Data.IDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
7904       <summary>Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
7905       <param name="i">The zero-based column ordinal.</param>
7906       <param name="fieldOffset">The index within the field from which to start the read operation.</param>
7907       <param name="buffer">The buffer into which to read the stream of bytes.</param>
7908       <param name="bufferoffset">The index for <paramref name="buffer" /> to start the read operation.</param>
7909       <param name="length">The number of bytes to read.</param>
7910       <returns>The actual number of bytes read.</returns>
7911       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7912     </member>
7913     <member name="M:System.Data.IDataRecord.GetChar(System.Int32)">
7914       <summary>Gets the character value of the specified column.</summary>
7915       <param name="i">The zero-based column ordinal.</param>
7916       <returns>The character value of the specified column.</returns>
7917       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7918     </member>
7919     <member name="M:System.Data.IDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
7920       <summary>Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
7921       <param name="i">The zero-based column ordinal.</param>
7922       <param name="fieldoffset">The index within the row from which to start the read operation.</param>
7923       <param name="buffer">The buffer into which to read the stream of bytes.</param>
7924       <param name="bufferoffset">The index for <paramref name="buffer" /> to start the read operation.</param>
7925       <param name="length">The number of bytes to read.</param>
7926       <returns>The actual number of characters read.</returns>
7927       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7928     </member>
7929     <member name="M:System.Data.IDataRecord.GetData(System.Int32)">
7930       <summary>Returns an <see cref="T:System.Data.IDataReader" /> for the specified column ordinal.</summary>
7931       <param name="i">The index of the field to find.</param>
7932       <returns>The <see cref="T:System.Data.IDataReader" /> for the specified column ordinal.</returns>
7933       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7934     </member>
7935     <member name="M:System.Data.IDataRecord.GetDataTypeName(System.Int32)">
7936       <summary>Gets the data type information for the specified field.</summary>
7937       <param name="i">The index of the field to find.</param>
7938       <returns>The data type information for the specified field.</returns>
7939       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7940     </member>
7941     <member name="M:System.Data.IDataRecord.GetDateTime(System.Int32)">
7942       <summary>Gets the date and time data value of the specified field.</summary>
7943       <param name="i">The index of the field to find.</param>
7944       <returns>The date and time data value of the specified field.</returns>
7945       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7946     </member>
7947     <member name="M:System.Data.IDataRecord.GetDecimal(System.Int32)">
7948       <summary>Gets the fixed-position numeric value of the specified field.</summary>
7949       <param name="i">The index of the field to find.</param>
7950       <returns>The fixed-position numeric value of the specified field.</returns>
7951       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7952     </member>
7953     <member name="M:System.Data.IDataRecord.GetDouble(System.Int32)">
7954       <summary>Gets the double-precision floating point number of the specified field.</summary>
7955       <param name="i">The index of the field to find.</param>
7956       <returns>The double-precision floating point number of the specified field.</returns>
7957       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7958     </member>
7959     <member name="M:System.Data.IDataRecord.GetFieldType(System.Int32)">
7960       <summary>Gets the <see cref="T:System.Type" /> information corresponding to the type of <see cref="T:System.Object" /> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)" />.</summary>
7961       <param name="i">The index of the field to find.</param>
7962       <returns>The <see cref="T:System.Type" /> information corresponding to the type of <see cref="T:System.Object" /> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)" />.</returns>
7963       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7964     </member>
7965     <member name="M:System.Data.IDataRecord.GetFloat(System.Int32)">
7966       <summary>Gets the single-precision floating point number of the specified field.</summary>
7967       <param name="i">The index of the field to find.</param>
7968       <returns>The single-precision floating point number of the specified field.</returns>
7969       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7970     </member>
7971     <member name="M:System.Data.IDataRecord.GetGuid(System.Int32)">
7972       <summary>Returns the GUID value of the specified field.</summary>
7973       <param name="i">The index of the field to find.</param>
7974       <returns>The GUID value of the specified field.</returns>
7975       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7976     </member>
7977     <member name="M:System.Data.IDataRecord.GetInt16(System.Int32)">
7978       <summary>Gets the 16-bit signed integer value of the specified field.</summary>
7979       <param name="i">The index of the field to find.</param>
7980       <returns>The 16-bit signed integer value of the specified field.</returns>
7981       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7982     </member>
7983     <member name="M:System.Data.IDataRecord.GetInt32(System.Int32)">
7984       <summary>Gets the 32-bit signed integer value of the specified field.</summary>
7985       <param name="i">The index of the field to find.</param>
7986       <returns>The 32-bit signed integer value of the specified field.</returns>
7987       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7988     </member>
7989     <member name="M:System.Data.IDataRecord.GetInt64(System.Int32)">
7990       <summary>Gets the 64-bit signed integer value of the specified field.</summary>
7991       <param name="i">The index of the field to find.</param>
7992       <returns>The 64-bit signed integer value of the specified field.</returns>
7993       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
7994     </member>
7995     <member name="M:System.Data.IDataRecord.GetName(System.Int32)">
7996       <summary>Gets the name for the field to find.</summary>
7997       <param name="i">The index of the field to find.</param>
7998       <returns>The name of the field or the empty string (""), if there is no value to return.</returns>
7999       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
8000     </member>
8001     <member name="M:System.Data.IDataRecord.GetOrdinal(System.String)">
8002       <summary>Return the index of the named field.</summary>
8003       <param name="name">The name of the field to find.</param>
8004       <returns>The index of the named field.</returns>
8005     </member>
8006     <member name="M:System.Data.IDataRecord.GetString(System.Int32)">
8007       <summary>Gets the string value of the specified field.</summary>
8008       <param name="i">The index of the field to find.</param>
8009       <returns>The string value of the specified field.</returns>
8010       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
8011     </member>
8012     <member name="M:System.Data.IDataRecord.GetValue(System.Int32)">
8013       <summary>Return the value of the specified field.</summary>
8014       <param name="i">The index of the field to find.</param>
8015       <returns>The <see cref="T:System.Object" /> which will contain the field value upon return.</returns>
8016       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
8017     </member>
8018     <member name="M:System.Data.IDataRecord.GetValues(System.Object[])">
8019       <summary>Populates an array of objects with the column values of the current record.</summary>
8020       <param name="values">An array of <see cref="T:System.Object" /> to copy the attribute fields into.</param>
8021       <returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
8022     </member>
8023     <member name="M:System.Data.IDataRecord.IsDBNull(System.Int32)">
8024       <summary>Return whether the specified field is set to null.</summary>
8025       <param name="i">The index of the field to find.</param>
8026       <returns>
8027         <see langword="true" /> if the specified field is set to null; otherwise, <see langword="false" />.</returns>
8028       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
8029     </member>
8030     <member name="P:System.Data.IDataRecord.Item(System.Int32)">
8031       <summary>Gets the column located at the specified index.</summary>
8032       <param name="i">The zero-based index of the column to get.</param>
8033       <returns>The column located at the specified index as an <see cref="T:System.Object" />.</returns>
8034       <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
8035     </member>
8036     <member name="P:System.Data.IDataRecord.Item(System.String)">
8037       <summary>Gets the column with the specified name.</summary>
8038       <param name="name">The name of the column to find.</param>
8039       <returns>The column with the specified name as an <see cref="T:System.Object" />.</returns>
8040       <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
8041     </member>
8042     <member name="T:System.Data.IDbCommand">
8043       <summary>Represents an SQL statement that is executed while connected to a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
8044     </member>
8045     <member name="M:System.Data.IDbCommand.Cancel">
8046       <summary>Attempts to cancels the execution of an <see cref="T:System.Data.IDbCommand" />.</summary>
8047     </member>
8048     <member name="P:System.Data.IDbCommand.CommandText">
8049       <summary>Gets or sets the text command to run against the data source.</summary>
8050       <returns>The text command to execute. The default value is an empty string ("").</returns>
8051     </member>
8052     <member name="P:System.Data.IDbCommand.CommandTimeout">
8053       <summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
8054       <returns>The time (in seconds) to wait for the command to execute. The default value is 30 seconds.</returns>
8055       <exception cref="T:System.ArgumentException">The property value assigned is less than 0.</exception>
8056     </member>
8057     <member name="P:System.Data.IDbCommand.CommandType">
8058       <summary>Indicates or specifies how the <see cref="P:System.Data.IDbCommand.CommandText" /> property is interpreted.</summary>
8059       <returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
8060     </member>
8061     <member name="P:System.Data.IDbCommand.Connection">
8062       <summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used by this instance of the <see cref="T:System.Data.IDbCommand" />.</summary>
8063       <returns>The connection to the data source.</returns>
8064     </member>
8065     <member name="M:System.Data.IDbCommand.CreateParameter">
8066       <summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter" /> object.</summary>
8067       <returns>An <see langword="IDbDataParameter" /> object.</returns>
8068     </member>
8069     <member name="M:System.Data.IDbCommand.ExecuteNonQuery">
8070       <summary>Executes an SQL statement against the <see langword="Connection" /> object of a .NET Framework data provider, and returns the number of rows affected.</summary>
8071       <returns>The number of rows affected.</returns>
8072       <exception cref="T:System.InvalidOperationException">The connection does not exist.
8073 -or-
8074 The connection is not open.</exception>
8075     </member>
8076     <member name="M:System.Data.IDbCommand.ExecuteReader">
8077       <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" /> and builds an <see cref="T:System.Data.IDataReader" />.</summary>
8078       <returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
8079     </member>
8080     <member name="M:System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior)">
8081       <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" />, and builds an <see cref="T:System.Data.IDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
8082       <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
8083       <returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
8084     </member>
8085     <member name="M:System.Data.IDbCommand.ExecuteScalar">
8086       <summary>Executes the query, and returns the first column of the first row in the resultset returned by the query. Extra columns or rows are ignored.</summary>
8087       <returns>The first column of the first row in the resultset.</returns>
8088     </member>
8089     <member name="P:System.Data.IDbCommand.Parameters">
8090       <summary>Gets the <see cref="T:System.Data.IDataParameterCollection" />.</summary>
8091       <returns>The parameters of the SQL statement or stored procedure.</returns>
8092     </member>
8093     <member name="M:System.Data.IDbCommand.Prepare">
8094       <summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
8095       <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not set.
8096 -or-
8097 The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not <see cref="M:System.Data.OleDb.OleDbConnection.Open" />.</exception>
8098     </member>
8099     <member name="P:System.Data.IDbCommand.Transaction">
8100       <summary>Gets or sets the transaction within which the <see langword="Command" /> object of a .NET Framework data provider executes.</summary>
8101       <returns>the <see langword="Command" /> object of a .NET Framework data provider executes. The default value is <see langword="null" />.</returns>
8102     </member>
8103     <member name="P:System.Data.IDbCommand.UpdatedRowSource">
8104       <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> method of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
8105       <returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values. The default is <see langword="Both" /> unless the command is automatically generated. Then the default is <see langword="None" />.</returns>
8106       <exception cref="T:System.ArgumentException">The value entered was not one of the <see cref="T:System.Data.UpdateRowSource" /> values.</exception>
8107     </member>
8108     <member name="T:System.Data.IDbConnection">
8109       <summary>Represents an open connection to a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
8110     </member>
8111     <member name="M:System.Data.IDbConnection.BeginTransaction">
8112       <summary>Begins a database transaction.</summary>
8113       <returns>An object representing the new transaction.</returns>
8114     </member>
8115     <member name="M:System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel)">
8116       <summary>Begins a database transaction with the specified <see cref="T:System.Data.IsolationLevel" /> value.</summary>
8117       <param name="il">One of the <see cref="T:System.Data.IsolationLevel" /> values.</param>
8118       <returns>An object representing the new transaction.</returns>
8119     </member>
8120     <member name="M:System.Data.IDbConnection.ChangeDatabase(System.String)">
8121       <summary>Changes the current database for an open <see langword="Connection" /> object.</summary>
8122       <param name="databaseName">The name of the database to use in place of the current database.</param>
8123     </member>
8124     <member name="M:System.Data.IDbConnection.Close">
8125       <summary>Closes the connection to the database.</summary>
8126     </member>
8127     <member name="P:System.Data.IDbConnection.ConnectionString">
8128       <summary>Gets or sets the string used to open a database.</summary>
8129       <returns>A string containing connection settings.</returns>
8130     </member>
8131     <member name="P:System.Data.IDbConnection.ConnectionTimeout">
8132       <summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.</summary>
8133       <returns>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</returns>
8134     </member>
8135     <member name="M:System.Data.IDbConnection.CreateCommand">
8136       <summary>Creates and returns a Command object associated with the connection.</summary>
8137       <returns>A Command object associated with the connection.</returns>
8138     </member>
8139     <member name="P:System.Data.IDbConnection.Database">
8140       <summary>Gets the name of the current database or the database to be used after a connection is opened.</summary>
8141       <returns>The name of the current database or the name of the database to be used once a connection is open. The default value is an empty string.</returns>
8142     </member>
8143     <member name="M:System.Data.IDbConnection.Open">
8144       <summary>Opens a database connection with the settings specified by the <see langword="ConnectionString" /> property of the provider-specific Connection object.</summary>
8145     </member>
8146     <member name="P:System.Data.IDbConnection.State">
8147       <summary>Gets the current state of the connection.</summary>
8148       <returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
8149     </member>
8150     <member name="T:System.Data.IDbDataAdapter">
8151       <summary>Represents a set of command-related properties that are used to fill the <see cref="T:System.Data.DataSet" /> and update a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
8152     </member>
8153     <member name="P:System.Data.IDbDataAdapter.DeleteCommand">
8154       <summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
8155       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
8156     </member>
8157     <member name="P:System.Data.IDbDataAdapter.InsertCommand">
8158       <summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
8159       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
8160     </member>
8161     <member name="P:System.Data.IDbDataAdapter.SelectCommand">
8162       <summary>Gets or sets an SQL statement used to select records in the data source.</summary>
8163       <returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
8164     </member>
8165     <member name="P:System.Data.IDbDataAdapter.UpdateCommand">
8166       <summary>Gets or sets an SQL statement used to update records in the data source.</summary>
8167       <returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
8168     </member>
8169     <member name="T:System.Data.IDbDataParameter">
8170       <summary>Used by the Visual Basic .NET Data Designers to represent a parameter to a Command object, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns.</summary>
8171     </member>
8172     <member name="P:System.Data.IDbDataParameter.Precision">
8173       <summary>Indicates the precision of numeric parameters.</summary>
8174       <returns>The maximum number of digits used to represent the Value property of a data provider Parameter object. The default value is 0, which indicates that a data provider sets the precision for Value.</returns>
8175     </member>
8176     <member name="P:System.Data.IDbDataParameter.Scale">
8177       <summary>Indicates the scale of numeric parameters.</summary>
8178       <returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved. The default is 0.</returns>
8179     </member>
8180     <member name="P:System.Data.IDbDataParameter.Size">
8181       <summary>The size of the parameter.</summary>
8182       <returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
8183     </member>
8184     <member name="T:System.Data.IDbTransaction">
8185       <summary>Represents a transaction to be performed at a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
8186     </member>
8187     <member name="M:System.Data.IDbTransaction.Commit">
8188       <summary>Commits the database transaction.</summary>
8189       <exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
8190       <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
8191 -or-
8192 The connection is broken.</exception>
8193     </member>
8194     <member name="P:System.Data.IDbTransaction.Connection">
8195       <summary>Specifies the Connection object to associate with the transaction.</summary>
8196       <returns>The Connection object to associate with the transaction.</returns>
8197     </member>
8198     <member name="P:System.Data.IDbTransaction.IsolationLevel">
8199       <summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
8200       <returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default is <see langword="ReadCommitted" />.</returns>
8201     </member>
8202     <member name="M:System.Data.IDbTransaction.Rollback">
8203       <summary>Rolls back a transaction from a pending state.</summary>
8204       <exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
8205       <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
8206 -or-
8207 The connection is broken.</exception>
8208     </member>
8209     <member name="T:System.Data.InRowChangingEventException">
8210       <summary>Represents the exception that is thrown when you call the <see cref="M:System.Data.DataRow.EndEdit" /> method within the <see cref="E:System.Data.DataTable.RowChanging" /> event.</summary>
8211     </member>
8212     <member name="M:System.Data.InRowChangingEventException.#ctor">
8213       <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class.</summary>
8214     </member>
8215     <member name="M:System.Data.InRowChangingEventException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8216       <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with serialization information.</summary>
8217       <param name="info">The data that is required to serialize or deserialize an object.</param>
8218       <param name="context">Description of the source and destination of the specified serialized stream.</param>
8219     </member>
8220     <member name="M:System.Data.InRowChangingEventException.#ctor(System.String)">
8221       <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with the specified string.</summary>
8222       <param name="s">The string to display when the exception is thrown.</param>
8223     </member>
8224     <member name="M:System.Data.InRowChangingEventException.#ctor(System.String,System.Exception)">
8225       <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8226       <param name="message">The error message that explains the reason for the exception.</param>
8227       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8228     </member>
8229     <member name="T:System.Data.InternalDataCollectionBase">
8230       <summary>Provides the base functionality for creating collections.</summary>
8231     </member>
8232     <member name="M:System.Data.InternalDataCollectionBase.#ctor">
8233       <summary>Initializes a new instance of the <see cref="T:System.Data.InternalDataCollectionBase" /> class.</summary>
8234     </member>
8235     <member name="M:System.Data.InternalDataCollectionBase.CopyTo(System.Array,System.Int32)">
8236       <summary>Copies all the elements of the current <see cref="T:System.Data.InternalDataCollectionBase" /> to a one-dimensional <see cref="T:System.Array" />, starting at the specified <see cref="T:System.Data.InternalDataCollectionBase" /> index.</summary>
8237       <param name="ar">The one-dimensional <see cref="T:System.Array" /> to copy the current <see cref="T:System.Data.InternalDataCollectionBase" /> object's elements into.</param>
8238       <param name="index">The destination <see cref="T:System.Array" /> index to start copying into.</param>
8239     </member>
8240     <member name="P:System.Data.InternalDataCollectionBase.Count">
8241       <summary>Gets the total number of elements in a collection.</summary>
8242       <returns>The total number of elements in a collection.</returns>
8243     </member>
8244     <member name="M:System.Data.InternalDataCollectionBase.GetEnumerator">
8245       <summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for the collection.</summary>
8246       <returns>An <see cref="T:System.Collections.IEnumerator" /> for the collection.</returns>
8247     </member>
8248     <member name="P:System.Data.InternalDataCollectionBase.IsReadOnly">
8249       <summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase" /> is read-only.</summary>
8250       <returns>
8251         <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
8252     </member>
8253     <member name="P:System.Data.InternalDataCollectionBase.IsSynchronized">
8254       <summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase" /> is synchronized.</summary>
8255       <returns>
8256         <see langword="true" /> if the collection is synchronized; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
8257     </member>
8258     <member name="P:System.Data.InternalDataCollectionBase.List">
8259       <summary>Gets the items of the collection as a list.</summary>
8260       <returns>An <see cref="T:System.Collections.ArrayList" /> that contains the collection.</returns>
8261     </member>
8262     <member name="P:System.Data.InternalDataCollectionBase.SyncRoot">
8263       <summary>Gets an object that can be used to synchronize the collection.</summary>
8264       <returns>The <see cref="T:System.Object" /> used to synchronize the collection.</returns>
8265     </member>
8266     <member name="T:System.Data.InvalidConstraintException">
8267       <summary>Represents the exception that is thrown when incorrectly trying to create or access a relation.</summary>
8268     </member>
8269     <member name="M:System.Data.InvalidConstraintException.#ctor">
8270       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class.</summary>
8271     </member>
8272     <member name="M:System.Data.InvalidConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8273       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with serialization information.</summary>
8274       <param name="info">The data that is required to serialize or deserialize an object.</param>
8275       <param name="context">Description of the source and destination of the specified serialized stream.</param>
8276     </member>
8277     <member name="M:System.Data.InvalidConstraintException.#ctor(System.String)">
8278       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with the specified string.</summary>
8279       <param name="s">The string to display when the exception is thrown.</param>
8280     </member>
8281     <member name="M:System.Data.InvalidConstraintException.#ctor(System.String,System.Exception)">
8282       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8283       <param name="message">The error message that explains the reason for the exception.</param>
8284       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8285     </member>
8286     <member name="T:System.Data.InvalidExpressionException">
8287       <summary>Represents the exception that is thrown when you try to add a <see cref="T:System.Data.DataColumn" /> that contains an invalid <see cref="P:System.Data.DataColumn.Expression" /> to a <see cref="T:System.Data.DataColumnCollection" />.</summary>
8288     </member>
8289     <member name="M:System.Data.InvalidExpressionException.#ctor">
8290       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class.</summary>
8291     </member>
8292     <member name="M:System.Data.InvalidExpressionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8293       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
8294       <param name="info">The data needed to serialize or deserialize an object.</param>
8295       <param name="context">The source and destination of a given serialized stream.</param>
8296     </member>
8297     <member name="M:System.Data.InvalidExpressionException.#ctor(System.String)">
8298       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the specified string.</summary>
8299       <param name="s">The string to display when the exception is thrown.</param>
8300     </member>
8301     <member name="M:System.Data.InvalidExpressionException.#ctor(System.String,System.Exception)">
8302       <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8303       <param name="message">The error message that explains the reason for the exception.</param>
8304       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8305     </member>
8306     <member name="T:System.Data.IsolationLevel">
8307       <summary>Specifies the transaction locking behavior for the connection.</summary>
8308     </member>
8309     <member name="F:System.Data.IsolationLevel.Chaos">
8310       <summary>The pending changes from more highly isolated transactions cannot be overwritten.</summary>
8311     </member>
8312     <member name="F:System.Data.IsolationLevel.ReadCommitted">
8313       <summary>Shared locks are held while the data is being read to avoid dirty reads, but the data can be changed before the end of the transaction, resulting in non-repeatable reads or phantom data.</summary>
8314     </member>
8315     <member name="F:System.Data.IsolationLevel.ReadUncommitted">
8316       <summary>A dirty read is possible, meaning that no shared locks are issued and no exclusive locks are honored.</summary>
8317     </member>
8318     <member name="F:System.Data.IsolationLevel.RepeatableRead">
8319       <summary>Locks are placed on all data that is used in a query, preventing other users from updating the data. Prevents non-repeatable reads but phantom rows are still possible.</summary>
8320     </member>
8321     <member name="F:System.Data.IsolationLevel.Serializable">
8322       <summary>A range lock is placed on the <see cref="T:System.Data.DataSet" />, preventing other users from updating or inserting rows into the dataset until the transaction is complete.</summary>
8323     </member>
8324     <member name="F:System.Data.IsolationLevel.Snapshot">
8325       <summary>Reduces blocking by storing a version of data that one application can read while another is modifying the same data. Indicates that from one transaction you cannot see changes made in other transactions, even if you requery.</summary>
8326     </member>
8327     <member name="F:System.Data.IsolationLevel.Unspecified">
8328       <summary>A different isolation level than the one specified is being used, but the level cannot be determined.</summary>
8329     </member>
8330     <member name="T:System.Data.ITableMapping">
8331       <summary>Associates a source table with a table in a <see cref="T:System.Data.DataSet" />, and is implemented by the <see cref="T:System.Data.Common.DataTableMapping" /> class, which is used in common by .NET Framework data providers.</summary>
8332     </member>
8333     <member name="P:System.Data.ITableMapping.ColumnMappings">
8334       <summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
8335       <returns>A collection of data column mappings.</returns>
8336     </member>
8337     <member name="P:System.Data.ITableMapping.DataSetTable">
8338       <summary>Gets or sets the case-insensitive name of the table within the <see cref="T:System.Data.DataSet" />.</summary>
8339       <returns>The case-insensitive name of the table within the <see cref="T:System.Data.DataSet" />.</returns>
8340     </member>
8341     <member name="P:System.Data.ITableMapping.SourceTable">
8342       <summary>Gets or sets the case-sensitive name of the source table.</summary>
8343       <returns>The case-sensitive name of the source table.</returns>
8344     </member>
8345     <member name="T:System.Data.ITableMappingCollection">
8346       <summary>Contains a collection of TableMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataTableMappingCollection" />, which is used in common by .NET Framework data providers.</summary>
8347     </member>
8348     <member name="M:System.Data.ITableMappingCollection.Add(System.String,System.String)">
8349       <summary>Adds a table mapping to the collection.</summary>
8350       <param name="sourceTableName">The case-sensitive name of the source table.</param>
8351       <param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet" /> table.</param>
8352       <returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping" /> object.</returns>
8353     </member>
8354     <member name="M:System.Data.ITableMappingCollection.Contains(System.String)">
8355       <summary>Gets a value indicating whether the collection contains a table mapping with the specified source table name.</summary>
8356       <param name="sourceTableName">The case-sensitive name of the source table.</param>
8357       <returns>
8358         <see langword="true" /> if a table mapping with the specified source table name exists, otherwise <see langword="false" />.</returns>
8359     </member>
8360     <member name="M:System.Data.ITableMappingCollection.GetByDataSetTable(System.String)">
8361       <summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
8362       <param name="dataSetTableName">The name of the <see langword="DataSet" /> table within the collection.</param>
8363       <returns>The TableMapping object with the specified <see langword="DataSet" /> table name.</returns>
8364     </member>
8365     <member name="M:System.Data.ITableMappingCollection.IndexOf(System.String)">
8366       <summary>Gets the location of the <see cref="T:System.Data.ITableMapping" /> object within the collection.</summary>
8367       <param name="sourceTableName">The case-sensitive name of the source table.</param>
8368       <returns>The zero-based location of the <see cref="T:System.Data.ITableMapping" /> object within the collection.</returns>
8369     </member>
8370     <member name="P:System.Data.ITableMappingCollection.Item(System.String)">
8371       <summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name.</summary>
8372       <param name="index">The <see langword="SourceTable" /> name of the <see cref="T:System.Data.ITableMapping" />.</param>
8373       <returns>The instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see langword="SourceTable" /> name.</returns>
8374     </member>
8375     <member name="M:System.Data.ITableMappingCollection.RemoveAt(System.String)">
8376       <summary>Removes the <see cref="T:System.Data.ITableMapping" /> object with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name from the collection.</summary>
8377       <param name="sourceTableName">The case-sensitive name of the <see langword="SourceTable" />.</param>
8378     </member>
8379     <member name="T:System.Data.KeyRestrictionBehavior">
8380       <summary>Identifies a list of connection string parameters identified by the <see langword="KeyRestrictions" /> property that are either allowed or not allowed.</summary>
8381     </member>
8382     <member name="F:System.Data.KeyRestrictionBehavior.AllowOnly">
8383       <summary>Default. Identifies the only additional connection string parameters that are allowed.</summary>
8384     </member>
8385     <member name="F:System.Data.KeyRestrictionBehavior.PreventUsage">
8386       <summary>Identifies additional connection string parameters that are not allowed.</summary>
8387     </member>
8388     <member name="T:System.Data.LoadOption">
8389       <summary>Controls how the values from the data source will be applied to existing rows when using the <see cref="Overload:System.Data.DataTable.Load" /> or <see cref="Overload:System.Data.DataSet.Load" /> method.</summary>
8390     </member>
8391     <member name="F:System.Data.LoadOption.OverwriteChanges">
8392       <summary>The incoming values for this row will be written to both the current value and the original value versions of the data for each column.</summary>
8393     </member>
8394     <member name="F:System.Data.LoadOption.PreserveChanges">
8395       <summary>The incoming values for this row will be written to the original value version of each column. The current version of the data in each column will not be changed.  This is the default.</summary>
8396     </member>
8397     <member name="F:System.Data.LoadOption.Upsert">
8398       <summary>The incoming values for this row will be written to the current version of each column. The original version of each column's data will not be changed.</summary>
8399     </member>
8400     <member name="T:System.Data.MappingType">
8401       <summary>Specifies how a <see cref="T:System.Data.DataColumn" /> is mapped.</summary>
8402     </member>
8403     <member name="F:System.Data.MappingType.Attribute">
8404       <summary>The column is mapped to an XML attribute.</summary>
8405     </member>
8406     <member name="F:System.Data.MappingType.Element">
8407       <summary>The column is mapped to an XML element.</summary>
8408     </member>
8409     <member name="F:System.Data.MappingType.Hidden">
8410       <summary>The column is mapped to an internal structure.</summary>
8411     </member>
8412     <member name="F:System.Data.MappingType.SimpleContent">
8413       <summary>The column is mapped to an <see cref="T:System.Xml.XmlText" /> node.</summary>
8414     </member>
8415     <member name="T:System.Data.MergeFailedEventArgs">
8416       <summary>Occurs when a target and source <see langword="DataRow" /> have the same primary key value, and the <see cref="P:System.Data.DataSet.EnforceConstraints" /> property is set to true.</summary>
8417     </member>
8418     <member name="M:System.Data.MergeFailedEventArgs.#ctor(System.Data.DataTable,System.String)">
8419       <summary>Initializes a new instance of a <see cref="T:System.Data.MergeFailedEventArgs" /> class with the <see cref="T:System.Data.DataTable" /> and a description of the merge conflict.</summary>
8420       <param name="table">The <see cref="T:System.Data.DataTable" /> object.</param>
8421       <param name="conflict">A description of the merge conflict.</param>
8422     </member>
8423     <member name="P:System.Data.MergeFailedEventArgs.Conflict">
8424       <summary>Returns a description of the merge conflict.</summary>
8425       <returns>A description of the merge conflict.</returns>
8426     </member>
8427     <member name="P:System.Data.MergeFailedEventArgs.Table">
8428       <summary>Returns the <see cref="T:System.Data.DataTable" /> object.</summary>
8429       <returns>The <see cref="T:System.Data.DataTable" /> object.</returns>
8430     </member>
8431     <member name="T:System.Data.MergeFailedEventHandler">
8432       <summary>Represents the method that will handle the <see cref="E:System.Data.DataSet.MergeFailed" /> event.</summary>
8433       <param name="sender">The source of the event.</param>
8434       <param name="e">The data for the event.</param>
8435     </member>
8436     <member name="T:System.Data.MissingMappingAction">
8437       <summary>Determines the action that occurs when a mapping is missing from a source table or a source column.</summary>
8438     </member>
8439     <member name="F:System.Data.MissingMappingAction.Error">
8440       <summary>An <see cref="T:System.InvalidOperationException" /> is generated if the specified column mapping is missing.</summary>
8441     </member>
8442     <member name="F:System.Data.MissingMappingAction.Ignore">
8443       <summary>The column or table not having a mapping is ignored. Returns <see langword="null" />.</summary>
8444     </member>
8445     <member name="F:System.Data.MissingMappingAction.Passthrough">
8446       <summary>The source column or source table is created and added to the <see cref="T:System.Data.DataSet" /> using its original name.</summary>
8447     </member>
8448     <member name="T:System.Data.MissingPrimaryKeyException">
8449       <summary>Represents the exception that is thrown when you try to access a row in a table that has no primary key.</summary>
8450     </member>
8451     <member name="M:System.Data.MissingPrimaryKeyException.#ctor">
8452       <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class.</summary>
8453     </member>
8454     <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8455       <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with serialization information.</summary>
8456       <param name="info">The data that is required to serialize or deserialize an object.</param>
8457       <param name="context">A description of the source and destination of the specified serialized stream.</param>
8458     </member>
8459     <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String)">
8460       <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with the specified string.</summary>
8461       <param name="s">The string to display when the exception is thrown.</param>
8462     </member>
8463     <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String,System.Exception)">
8464       <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8465       <param name="message">The error message that explains the reason for the exception.</param>
8466       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8467     </member>
8468     <member name="T:System.Data.MissingSchemaAction">
8469       <summary>Specifies the action to take when adding data to the <see cref="T:System.Data.DataSet" /> and the required <see cref="T:System.Data.DataTable" /> or <see cref="T:System.Data.DataColumn" /> is missing.</summary>
8470     </member>
8471     <member name="F:System.Data.MissingSchemaAction.Add">
8472       <summary>Adds the necessary columns to complete the schema.</summary>
8473     </member>
8474     <member name="F:System.Data.MissingSchemaAction.AddWithKey">
8475       <summary>Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a <see cref="T:System.Data.DataTable" />, see <see cref="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" />.To function properly with the .NET Framework Data Provider for OLE DB, <see langword="AddWithKey" /> requires that the native OLE DB provider obtains necessary primary key information by setting the DBPROP_UNIQUEROWS property, and then determines which columns are primary key columns by examining DBCOLUMN_KEYCOLUMN in the IColumnsRowset. As an alternative, the user may explicitly set the primary key constraints on each <see cref="T:System.Data.DataTable" />. This ensures that incoming records that match existing records are updated instead of appended. When using <see langword="AddWithKey" />, the .NET Framework Data Provider for SQL Server appends a FOR BROWSE clause to the statement being executed. The user should be aware of potential side effects, such as interference with the use of SET FMTONLY ON statements. For more information, see SET FMTONLY (Transact-SQL).</summary>
8476     </member>
8477     <member name="F:System.Data.MissingSchemaAction.Error">
8478       <summary>An <see cref="T:System.InvalidOperationException" /> is generated if the specified column mapping is missing.</summary>
8479     </member>
8480     <member name="F:System.Data.MissingSchemaAction.Ignore">
8481       <summary>Ignores the extra columns.</summary>
8482     </member>
8483     <member name="T:System.Data.NoNullAllowedException">
8484       <summary>Represents the exception that is thrown when you try to insert a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is set to <see langword="false" />.</summary>
8485     </member>
8486     <member name="M:System.Data.NoNullAllowedException.#ctor">
8487       <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class.</summary>
8488     </member>
8489     <member name="M:System.Data.NoNullAllowedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8490       <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with serialization information.</summary>
8491       <param name="info">The data that is required to serialize or deserialize an object.</param>
8492       <param name="context">Description of the source and destination of the specified serialized stream.</param>
8493     </member>
8494     <member name="M:System.Data.NoNullAllowedException.#ctor(System.String)">
8495       <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with the specified string.</summary>
8496       <param name="s">The string to display when the exception is thrown.</param>
8497     </member>
8498     <member name="M:System.Data.NoNullAllowedException.#ctor(System.String,System.Exception)">
8499       <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8500       <param name="message">The error message that explains the reason for the exception.</param>
8501       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8502     </member>
8503     <member name="T:System.Data.OrderedEnumerableRowCollection`1">
8504       <summary>Represents a collection of ordered <see cref="T:System.Data.DataRow" /> objects returned from a query.</summary>
8505       <typeparam name="TRow">The type of objects in the source sequence, typically <see cref="T:System.Data.DataRow" />.</typeparam>
8506     </member>
8507     <member name="T:System.Data.ParameterDirection">
8508       <summary>Specifies the type of a parameter within a query relative to the <see cref="T:System.Data.DataSet" />.</summary>
8509     </member>
8510     <member name="F:System.Data.ParameterDirection.Input">
8511       <summary>The parameter is an input parameter.</summary>
8512     </member>
8513     <member name="F:System.Data.ParameterDirection.InputOutput">
8514       <summary>The parameter is capable of both input and output.</summary>
8515     </member>
8516     <member name="F:System.Data.ParameterDirection.Output">
8517       <summary>The parameter is an output parameter.</summary>
8518     </member>
8519     <member name="F:System.Data.ParameterDirection.ReturnValue">
8520       <summary>The parameter represents a return value from an operation such as a stored procedure, built-in function, or user-defined function.</summary>
8521     </member>
8522     <member name="T:System.Data.PropertyCollection">
8523       <summary>Represents a collection of properties that can be added to <see cref="T:System.Data.DataColumn" />, <see cref="T:System.Data.DataSet" />, or <see cref="T:System.Data.DataTable" />.</summary>
8524     </member>
8525     <member name="M:System.Data.PropertyCollection.#ctor">
8526       <summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection" /> class.</summary>
8527     </member>
8528     <member name="M:System.Data.PropertyCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8529       <summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection" /> class.</summary>
8530       <param name="info">The data needed to serialize or deserialize an object.</param>
8531       <param name="context">The source and destination of a given serialized stream.</param>
8532     </member>
8533     <member name="M:System.Data.PropertyCollection.Clone">
8534       <summary>Creates a shallow copy of the <see cref="T:System.Data.PropertyCollection" /> object.</summary>
8535       <returns>Returns <see cref="T:System.Object" />, a shallow copy of the <see cref="T:System.Data.PropertyCollection" /> object.</returns>
8536     </member>
8537     <member name="T:System.Data.ReadOnlyException">
8538       <summary>Represents the exception that is thrown when you try to change the value of a read-only column.</summary>
8539     </member>
8540     <member name="M:System.Data.ReadOnlyException.#ctor">
8541       <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class.</summary>
8542     </member>
8543     <member name="M:System.Data.ReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8544       <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with serialization information.</summary>
8545       <param name="info">The data that is required to serialize or deserialize an object.</param>
8546       <param name="context">Description of the source and destination of the specified serialized stream.</param>
8547     </member>
8548     <member name="M:System.Data.ReadOnlyException.#ctor(System.String)">
8549       <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with the specified string.</summary>
8550       <param name="s">The string to display when the exception is thrown.</param>
8551     </member>
8552     <member name="M:System.Data.ReadOnlyException.#ctor(System.String,System.Exception)">
8553       <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8554       <param name="message">The error message that explains the reason for the exception.</param>
8555       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8556     </member>
8557     <member name="T:System.Data.RowNotInTableException">
8558       <summary>Represents the exception that is thrown when you try to perform an operation on a <see cref="T:System.Data.DataRow" /> that is not in a <see cref="T:System.Data.DataTable" />.</summary>
8559     </member>
8560     <member name="M:System.Data.RowNotInTableException.#ctor">
8561       <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class.</summary>
8562     </member>
8563     <member name="M:System.Data.RowNotInTableException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8564       <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with serialization information.</summary>
8565       <param name="info">The data that is required to serialize or deserialize an object.</param>
8566       <param name="context">Description of the source and destination of the specified serialized stream.</param>
8567     </member>
8568     <member name="M:System.Data.RowNotInTableException.#ctor(System.String)">
8569       <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with the specified string.</summary>
8570       <param name="s">The string to display when the exception is thrown.</param>
8571     </member>
8572     <member name="M:System.Data.RowNotInTableException.#ctor(System.String,System.Exception)">
8573       <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
8574       <param name="message">The error message that explains the reason for the exception.</param>
8575       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
8576     </member>
8577     <member name="T:System.Data.Rule">
8578       <summary>Indicates the action that occurs when a <see cref="T:System.Data.ForeignKeyConstraint" /> is enforced.</summary>
8579     </member>
8580     <member name="F:System.Data.Rule.Cascade">
8581       <summary>Delete or update related rows. This is the default.</summary>
8582     </member>
8583     <member name="F:System.Data.Rule.None">
8584       <summary>No action taken on related rows.</summary>
8585     </member>
8586     <member name="F:System.Data.Rule.SetDefault">
8587       <summary>Set values in related rows to the value contained in the <see cref="P:System.Data.DataColumn.DefaultValue" /> property.</summary>
8588     </member>
8589     <member name="F:System.Data.Rule.SetNull">
8590       <summary>Set values in related rows to <see langword="DBNull" />.</summary>
8591     </member>
8592     <member name="T:System.Data.SchemaSerializationMode">
8593       <summary>Indicates the schema serialization mode for a typed <see cref="T:System.Data.DataSet" />.</summary>
8594     </member>
8595     <member name="F:System.Data.SchemaSerializationMode.ExcludeSchema">
8596       <summary>Skips schema serialization for a typed <see cref="T:System.Data.DataSet" />.</summary>
8597     </member>
8598     <member name="F:System.Data.SchemaSerializationMode.IncludeSchema">
8599       <summary>Includes schema serialization for a typed <see cref="T:System.Data.DataSet" />. The default.</summary>
8600     </member>
8601     <member name="T:System.Data.SchemaType">
8602       <summary>Specifies how to handle existing schema mappings when performing a <see cref="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" /> operation.</summary>
8603     </member>
8604     <member name="F:System.Data.SchemaType.Mapped">
8605       <summary>Apply any existing table mappings to the incoming schema. Configure the <see cref="T:System.Data.DataSet" /> with the transformed schema.</summary>
8606     </member>
8607     <member name="F:System.Data.SchemaType.Source">
8608       <summary>Ignore any table mappings on the DataAdapter. Configure the <see cref="T:System.Data.DataSet" /> using the incoming schema without applying any transformations.</summary>
8609     </member>
8610     <member name="T:System.Data.SerializationFormat">
8611       <summary>Determines the serialization format for a <see cref="T:System.Data.DataSet" />.</summary>
8612     </member>
8613     <member name="F:System.Data.SerializationFormat.Binary">
8614       <summary>Serialize as binary content. Available in ADO.NET 2.0 only.</summary>
8615     </member>
8616     <member name="F:System.Data.SerializationFormat.Xml">
8617       <summary>Serialize as XML content. The default.</summary>
8618     </member>
8619     <member name="T:System.Data.SqlDbType">
8620       <summary>Specifies SQL Server-specific data type of a field, property, for use in a <see cref="T:System.Data.SqlClient.SqlParameter" />.</summary>
8621     </member>
8622     <member name="F:System.Data.SqlDbType.BigInt">
8623       <summary>
8624         <see cref="T:System.Int64" />. A 64-bit signed integer.</summary>
8625     </member>
8626     <member name="F:System.Data.SqlDbType.Binary">
8627       <summary>
8628         <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A fixed-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
8629     </member>
8630     <member name="F:System.Data.SqlDbType.Bit">
8631       <summary>
8632         <see cref="T:System.Boolean" />. An unsigned numeric value that can be 0, 1, or <see langword="null" />.</summary>
8633     </member>
8634     <member name="F:System.Data.SqlDbType.Char">
8635       <summary>
8636         <see cref="T:System.String" />. A fixed-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
8637     </member>
8638     <member name="F:System.Data.SqlDbType.Date">
8639       <summary>Date data ranging in value from January 1,1 AD through December 31, 9999 AD.</summary>
8640     </member>
8641     <member name="F:System.Data.SqlDbType.DateTime">
8642       <summary>
8643         <see cref="T:System.DateTime" />. Date and time data ranging in value from January 1, 1753 to December 31, 9999 to an accuracy of 3.33 milliseconds.</summary>
8644     </member>
8645     <member name="F:System.Data.SqlDbType.DateTime2">
8646       <summary>Date and time data. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds.</summary>
8647     </member>
8648     <member name="F:System.Data.SqlDbType.DateTimeOffset">
8649       <summary>Date and time data with time zone awareness. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds. Time zone value range is -14:00 through +14:00.</summary>
8650     </member>
8651     <member name="F:System.Data.SqlDbType.Decimal">
8652       <summary>
8653         <see cref="T:System.Decimal" />. A fixed precision and scale numeric value between -10 38 -1 and 10 38 -1.</summary>
8654     </member>
8655     <member name="F:System.Data.SqlDbType.Float">
8656       <summary>
8657         <see cref="T:System.Double" />. A floating point number within the range of -1.79E +308 through 1.79E +308.</summary>
8658     </member>
8659     <member name="F:System.Data.SqlDbType.Image">
8660       <summary>
8661         <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A variable-length stream of binary data ranging from 0 to 2 31 -1 (or 2,147,483,647) bytes.</summary>
8662     </member>
8663     <member name="F:System.Data.SqlDbType.Int">
8664       <summary>
8665         <see cref="T:System.Int32" />. A 32-bit signed integer.</summary>
8666     </member>
8667     <member name="F:System.Data.SqlDbType.Money">
8668       <summary>
8669         <see cref="T:System.Decimal" />. A currency value ranging from -2 63 (or -9,223,372,036,854,775,808) to 2 63 -1 (or +9,223,372,036,854,775,807) with an accuracy to a ten-thousandth of a currency unit.</summary>
8670     </member>
8671     <member name="F:System.Data.SqlDbType.NChar">
8672       <summary>
8673         <see cref="T:System.String" />. A fixed-length stream of Unicode characters ranging between 1 and 4,000 characters.</summary>
8674     </member>
8675     <member name="F:System.Data.SqlDbType.NText">
8676       <summary>
8677         <see cref="T:System.String" />. A variable-length stream of Unicode data with a maximum length of 2 30 - 1 (or 1,073,741,823) characters.</summary>
8678     </member>
8679     <member name="F:System.Data.SqlDbType.NVarChar">
8680       <summary>
8681         <see cref="T:System.String" />. A variable-length stream of Unicode characters ranging between 1 and 4,000 characters. Implicit conversion fails if the string is greater than 4,000 characters. Explicitly set the object when working with strings longer than 4,000 characters. Use <see cref="F:System.Data.SqlDbType.NVarChar" /> when the database column is <see langword="nvarchar(max)" />.</summary>
8682     </member>
8683     <member name="F:System.Data.SqlDbType.Real">
8684       <summary>
8685         <see cref="T:System.Single" />. A floating point number within the range of -3.40E +38 through 3.40E +38.</summary>
8686     </member>
8687     <member name="F:System.Data.SqlDbType.SmallDateTime">
8688       <summary>
8689         <see cref="T:System.DateTime" />. Date and time data ranging in value from January 1, 1900 to June 6, 2079 to an accuracy of one minute.</summary>
8690     </member>
8691     <member name="F:System.Data.SqlDbType.SmallInt">
8692       <summary>
8693         <see cref="T:System.Int16" />. A 16-bit signed integer.</summary>
8694     </member>
8695     <member name="F:System.Data.SqlDbType.SmallMoney">
8696       <summary>
8697         <see cref="T:System.Decimal" />. A currency value ranging from -214,748.3648 to +214,748.3647 with an accuracy to a ten-thousandth of a currency unit.</summary>
8698     </member>
8699     <member name="F:System.Data.SqlDbType.Structured">
8700       <summary>A special data type for specifying structured data contained in table-valued parameters.</summary>
8701     </member>
8702     <member name="F:System.Data.SqlDbType.Text">
8703       <summary>
8704         <see cref="T:System.String" />. A variable-length stream of non-Unicode data with a maximum length of 2 31 -1 (or 2,147,483,647) characters.</summary>
8705     </member>
8706     <member name="F:System.Data.SqlDbType.Time">
8707       <summary>Time data based on a 24-hour clock. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds. Corresponds to a SQL Server <see langword="time" /> value.</summary>
8708     </member>
8709     <member name="F:System.Data.SqlDbType.Timestamp">
8710       <summary>
8711         <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. Automatically generated binary numbers, which are guaranteed to be unique within a database. <see langword="timestamp" /> is used typically as a mechanism for version-stamping table rows. The storage size is 8 bytes.</summary>
8712     </member>
8713     <member name="F:System.Data.SqlDbType.TinyInt">
8714       <summary>
8715         <see cref="T:System.Byte" />. An 8-bit unsigned integer.</summary>
8716     </member>
8717     <member name="F:System.Data.SqlDbType.Udt">
8718       <summary>A SQL Server user-defined type (UDT).</summary>
8719     </member>
8720     <member name="F:System.Data.SqlDbType.UniqueIdentifier">
8721       <summary>
8722         <see cref="T:System.Guid" />. A globally unique identifier (or GUID).</summary>
8723     </member>
8724     <member name="F:System.Data.SqlDbType.VarBinary">
8725       <summary>
8726         <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A variable-length stream of binary data ranging between 1 and 8,000 bytes. Implicit conversion fails if the byte array is greater than 8,000 bytes. Explicitly set the object when working with byte arrays larger than 8,000 bytes.</summary>
8727     </member>
8728     <member name="F:System.Data.SqlDbType.VarChar">
8729       <summary>
8730         <see cref="T:System.String" />. A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters. Use <see cref="F:System.Data.SqlDbType.VarChar" /> when the database column is <see langword="varchar(max)" />.</summary>
8731     </member>
8732     <member name="F:System.Data.SqlDbType.Variant">
8733       <summary>
8734         <see cref="T:System.Object" />. A special data type that can contain numeric, string, binary, or date data as well as the SQL Server values Empty and Null, which is assumed if no other type is declared.</summary>
8735     </member>
8736     <member name="F:System.Data.SqlDbType.Xml">
8737       <summary>An XML value. Obtain the XML as a string using the <see cref="M:System.Data.SqlClient.SqlDataReader.GetValue(System.Int32)" /> method or <see cref="P:System.Data.SqlTypes.SqlXml.Value" /> property, or as an <see cref="T:System.Xml.XmlReader" /> by calling the <see cref="M:System.Data.SqlTypes.SqlXml.CreateReader" /> method.</summary>
8738     </member>
8739     <member name="T:System.Data.SqlTypes.INullable">
8740       <summary>All the <see cref="N:System.Data.SqlTypes" /> objects and structures implement the <see langword="INullable" /> interface.</summary>
8741     </member>
8742     <member name="P:System.Data.SqlTypes.INullable.IsNull">
8743       <summary>Indicates whether a structure is null. This property is read-only.</summary>
8744       <returns>
8745         <see cref="T:System.Data.SqlTypes.SqlBoolean" />
8746         <see langword="true" /> if the value of this object is null. Otherwise, <see langword="false" />.</returns>
8747     </member>
8748     <member name="T:System.Data.SqlTypes.SqlAlreadyFilledException">
8749       <summary>The <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
8750     </member>
8751     <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor">
8752       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
8753     </member>
8754     <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String)">
8755       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
8756       <param name="message">The string to display when the exception is thrown.</param>
8757     </member>
8758     <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String,System.Exception)">
8759       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
8760       <param name="message">The string to display when the exception is thrown.</param>
8761       <param name="e">A reference to an inner exception.</param>
8762     </member>
8763     <member name="T:System.Data.SqlTypes.SqlBinary">
8764       <summary>Represents a variable-length stream of binary data to be stored in or retrieved from a database.</summary>
8765     </member>
8766     <member name="M:System.Data.SqlTypes.SqlBinary.#ctor(System.Byte[])">
8767       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure, setting the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property to the contents of the supplied byte array.</summary>
8768       <param name="value">The byte array to be stored or retrieved.</param>
8769     </member>
8770     <member name="M:System.Data.SqlTypes.SqlBinary.Add(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8771       <summary>Concatenates two specified <see cref="T:System.Data.SqlTypes.SqlBinary" /> values to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8772       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" />.</param>
8773       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" />.</param>
8774       <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> that is the concatenated value of x and y.</returns>
8775     </member>
8776     <member name="M:System.Data.SqlTypes.SqlBinary.CompareTo(System.Data.SqlTypes.SqlBinary)">
8777       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBinary" /> object and returns an indication of their relative values.</summary>
8778       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to be compared to this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8779       <returns>A signed number that indicates the relative values of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure and the object.
8780   Return value  
8781   
8782   Condition  
8783   
8784   Less than zero  
8785   
8786   The value of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is less than the object.  
8787   
8788   Zero  
8789   
8790   This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is the same as object.  
8791   
8792   Greater than zero  
8793   
8794   This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is greater than object.  
8795   
8796  -or-  
8797   
8798  The object is a null reference.</returns>
8799     </member>
8800     <member name="M:System.Data.SqlTypes.SqlBinary.CompareTo(System.Object)">
8801       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to the supplied object and returns an indication of their relative values.</summary>
8802       <param name="value">The object to be compared to this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8803       <returns>A signed number that indicates the relative values of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure and the object.
8804   Return value  
8805   
8806   Condition  
8807   
8808   Less than zero  
8809   
8810   The value of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is less than the object.  
8811   
8812   Zero  
8813   
8814   This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is the same as object.  
8815   
8816   Greater than zero  
8817   
8818   This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is greater than object.  
8819   
8820  -or-  
8821   
8822  The object is a null reference.</returns>
8823     </member>
8824     <member name="M:System.Data.SqlTypes.SqlBinary.Concat(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8825       <summary>Concatenates two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8826       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8827       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8828       <returns>The concatenated values of the <paramref name="x" /> and <paramref name="y" /> parameters.</returns>
8829     </member>
8830     <member name="M:System.Data.SqlTypes.SqlBinary.Equals(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8831       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether they are equal.</summary>
8832       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8833       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8834       <returns>
8835         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlBinary" /> will be null.</returns>
8836     </member>
8837     <member name="M:System.Data.SqlTypes.SqlBinary.Equals(System.Object)">
8838       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</summary>
8839       <param name="value">The object to be compared.</param>
8840       <returns>
8841         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> and the two are equal; otherwise <see langword="false" />.</returns>
8842     </member>
8843     <member name="M:System.Data.SqlTypes.SqlBinary.GetHashCode">
8844       <summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8845       <returns>A 32-bit signed integer hash code.</returns>
8846     </member>
8847     <member name="M:System.Data.SqlTypes.SqlBinary.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
8848       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
8849       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
8850       <returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
8851     </member>
8852     <member name="M:System.Data.SqlTypes.SqlBinary.GreaterThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8853       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is greater than the second.</summary>
8854       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8855       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8856       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8857     </member>
8858     <member name="M:System.Data.SqlTypes.SqlBinary.GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8859       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is greater than or equal to the second.</summary>
8860       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8861       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8862       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8863     </member>
8864     <member name="P:System.Data.SqlTypes.SqlBinary.IsNull">
8865       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure is null. This property is read-only.</summary>
8866       <returns>
8867         <see langword="true" /> if <see langword="null" />; otherwise, <see langword="false" />.</returns>
8868     </member>
8869     <member name="P:System.Data.SqlTypes.SqlBinary.Item(System.Int32)">
8870       <summary>Gets the single byte from the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property located at the position indicated by the integer parameter, <paramref name="index" />. If <paramref name="index" /> indicates a position beyond the end of the byte array, a <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> will be raised. This property is read-only.</summary>
8871       <param name="index">The position of the byte to be retrieved.</param>
8872       <returns>The byte located at the position indicated by the integer parameter.</returns>
8873       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />
8874 -or-
8875 The <paramref name="index" /> parameter indicates a position beyond the length of the byte array as indicated by the <see cref="P:System.Data.SqlTypes.SqlBinary.Length" /> property.</exception>
8876     </member>
8877     <member name="P:System.Data.SqlTypes.SqlBinary.Length">
8878       <summary>Gets the length in bytes of the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property. This property is read-only.</summary>
8879       <returns>The length of the binary data in the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property.</returns>
8880       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Length" /> property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />.</exception>
8881     </member>
8882     <member name="M:System.Data.SqlTypes.SqlBinary.LessThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8883       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is less than the second.</summary>
8884       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8885       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8886       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8887     </member>
8888     <member name="M:System.Data.SqlTypes.SqlBinary.LessThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8889       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is less than or equal to the second.</summary>
8890       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8891       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8892       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8893     </member>
8894     <member name="M:System.Data.SqlTypes.SqlBinary.NotEquals(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8895       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether they are not equal.</summary>
8896       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8897       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
8898       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8899     </member>
8900     <member name="F:System.Data.SqlTypes.SqlBinary.Null">
8901       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8902     </member>
8903     <member name="M:System.Data.SqlTypes.SqlBinary.op_Addition(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8904       <summary>Concatenates the two <see cref="T:System.Data.SqlTypes.SqlBinary" /> parameters to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8905       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8906       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8907       <returns>The concatenated values of the <paramref name="x" /> and <paramref name="y" /> parameters.</returns>
8908     </member>
8909     <member name="M:System.Data.SqlTypes.SqlBinary.op_Equality(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8910       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether they are equal.</summary>
8911       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8912       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8913       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8914     </member>
8915     <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Byte[]">
8916       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to a <see cref="T:System.Byte" /> array.</summary>
8917       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to be converted.</param>
8918       <returns>A <see cref="T:System.Byte" /> array.</returns>
8919     </member>
8920     <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Data.SqlTypes.SqlBinary">
8921       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8922       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to be converted.</param>
8923       <returns>The <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to be converted.</returns>
8924     </member>
8925     <member name="M:System.Data.SqlTypes.SqlBinary.op_GreaterThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8926       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is greater than the second.</summary>
8927       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8928       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8929       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8930     </member>
8931     <member name="M:System.Data.SqlTypes.SqlBinary.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8932       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is greater than or equal to the second.</summary>
8933       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8934       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8935       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8936     </member>
8937     <member name="M:System.Data.SqlTypes.SqlBinary.op_Implicit(System.Byte[])~System.Data.SqlTypes.SqlBinary">
8938       <summary>Converts an array of bytes to a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
8939       <param name="x">The array of bytes to be converted.</param>
8940       <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure that represents the converted array of bytes.</returns>
8941     </member>
8942     <member name="M:System.Data.SqlTypes.SqlBinary.op_Inequality(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8943       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether they are not equal.</summary>
8944       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8945       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8946       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8947     </member>
8948     <member name="M:System.Data.SqlTypes.SqlBinary.op_LessThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8949       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is less than the second.</summary>
8950       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8951       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8952       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8953     </member>
8954     <member name="M:System.Data.SqlTypes.SqlBinary.op_LessThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
8955       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary" /> structures to determine whether the first is less than or equal to the second.</summary>
8956       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8957       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
8958       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
8959     </member>
8960     <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#GetSchema">
8961       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
8962       <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</returns>
8963     </member>
8964     <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
8965       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
8966       <param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
8967     </member>
8968     <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
8969       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
8970       <param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
8971     </member>
8972     <member name="M:System.Data.SqlTypes.SqlBinary.ToSqlGuid">
8973       <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
8974       <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
8975     </member>
8976     <member name="M:System.Data.SqlTypes.SqlBinary.ToString">
8977       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to a string.</summary>
8978       <returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBinary" />. If the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> is null the string will contain "null".</returns>
8979     </member>
8980     <member name="P:System.Data.SqlTypes.SqlBinary.Value">
8981       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure. This property is read-only.</summary>
8982       <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</returns>
8983       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property is read when the property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />.</exception>
8984     </member>
8985     <member name="T:System.Data.SqlTypes.SqlBoolean">
8986       <summary>Represents an integer value that is either 1 or 0 to be stored in or retrieved from a database.</summary>
8987     </member>
8988     <member name="M:System.Data.SqlTypes.SqlBoolean.#ctor(System.Boolean)">
8989       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure using the supplied Boolean value.</summary>
8990       <param name="value">The value for the new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure; either <see langword="true" /> or <see langword="false" />.</param>
8991     </member>
8992     <member name="M:System.Data.SqlTypes.SqlBoolean.#ctor(System.Int32)">
8993       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure using the specified integer value.</summary>
8994       <param name="value">The integer whose value is to be used for the new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
8995     </member>
8996     <member name="M:System.Data.SqlTypes.SqlBoolean.And(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
8997       <summary>Computes the bitwise AND operation of two specified <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
8998       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
8999       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9000       <returns>The result of the logical AND operation.</returns>
9001     </member>
9002     <member name="P:System.Data.SqlTypes.SqlBoolean.ByteValue">
9003       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure as a byte.</summary>
9004       <returns>A byte representing the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</returns>
9005     </member>
9006     <member name="M:System.Data.SqlTypes.SqlBoolean.CompareTo(System.Data.SqlTypes.SqlBoolean)">
9007       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object and returns an indication of their relative values.</summary>
9008       <param name="value">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /><see cref="T:System.Data.SqlTypes.SqlBoolean" /> object to compare, or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
9009       <returns>A signed number that indicates the relative values of the instance and value.
9010   Value  
9011   
9012   Description  
9013   
9014   A negative integer  
9015   
9016   This instance is less than <paramref name="value" />.  
9017   
9018   Zero  
9019   
9020   This instance is equal to <paramref name="value" />.  
9021   
9022   A positive integer  
9023   
9024   This instance is greater than <paramref name="value" />.  
9025   
9026  -or-  
9027   
9028  <paramref name="value" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
9029     </member>
9030     <member name="M:System.Data.SqlTypes.SqlBoolean.CompareTo(System.Object)">
9031       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to a specified object and returns an indication of their relative values.</summary>
9032       <param name="value">An object to compare, or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
9033       <returns>A signed number that indicates the relative values of the instance and value.
9034   Value  
9035   
9036   Description  
9037   
9038   A negative integer  
9039   
9040   This instance is less than <paramref name="value" />.  
9041   
9042   Zero  
9043   
9044   This instance is equal to <paramref name="value" />.  
9045   
9046   A positive integer  
9047   
9048   This instance is greater than <paramref name="value" />.  
9049   
9050  -or-  
9051   
9052  <paramref name="value" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
9053     </member>
9054     <member name="M:System.Data.SqlTypes.SqlBoolean.Equals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9055       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures to determine whether they are equal.</summary>
9056       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9057       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9058       <returns>
9059         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9060     </member>
9061     <member name="M:System.Data.SqlTypes.SqlBoolean.Equals(System.Object)">
9062       <summary>Compares the supplied object parameter to the <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
9063       <param name="value">The object to be compared.</param>
9064       <returns>
9065         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> and the two are equal; otherwise, <see langword="false" />.</returns>
9066     </member>
9067     <member name="F:System.Data.SqlTypes.SqlBoolean.False">
9068       <summary>Represents a false value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9069     </member>
9070     <member name="M:System.Data.SqlTypes.SqlBoolean.GetHashCode">
9071       <summary>Returns the hash code for this instance.</summary>
9072       <returns>A 32-bit signed integer hash code.</returns>
9073     </member>
9074     <member name="M:System.Data.SqlTypes.SqlBoolean.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
9075       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
9076       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
9077       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
9078     </member>
9079     <member name="M:System.Data.SqlTypes.SqlBoolean.GreaterThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9080       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is greater than the second.</summary>
9081       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9082       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9083       <returns>
9084         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
9085     </member>
9086     <member name="M:System.Data.SqlTypes.SqlBoolean.GreaterThanOrEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9087       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is greater than or equal to the second.</summary>
9088       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9089       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9090       <returns>
9091         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance; otherwise, <see langword="false" />.</returns>
9092     </member>
9093     <member name="P:System.Data.SqlTypes.SqlBoolean.IsFalse">
9094       <summary>Indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</summary>
9095       <returns>
9096         <see langword="true" /> if <see langword="Value" /> is <see langword="False" />; otherwise, <see langword="false" />.</returns>
9097     </member>
9098     <member name="P:System.Data.SqlTypes.SqlBoolean.IsNull">
9099       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure is null.</summary>
9100       <returns>
9101         <see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure is null; otherwise, <see langword="false" />.</returns>
9102     </member>
9103     <member name="P:System.Data.SqlTypes.SqlBoolean.IsTrue">
9104       <summary>Gets a value that indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />.</summary>
9105       <returns>
9106         <see langword="true" /> if <see langword="Value" /> is <see langword="true" />; otherwise, <see langword="false" />.</returns>
9107     </member>
9108     <member name="M:System.Data.SqlTypes.SqlBoolean.LessThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9109       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is less than the second.</summary>
9110       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9111       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9112       <returns>
9113         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
9114     </member>
9115     <member name="M:System.Data.SqlTypes.SqlBoolean.LessThanOrEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9116       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is less than or equal to the second.</summary>
9117       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9118       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9119       <returns>
9120         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
9121     </member>
9122     <member name="M:System.Data.SqlTypes.SqlBoolean.NotEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9123       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> for equality.</summary>
9124       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9125       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9126       <returns>
9127         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9128     </member>
9129     <member name="F:System.Data.SqlTypes.SqlBoolean.Null">
9130       <summary>Represents <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9131     </member>
9132     <member name="F:System.Data.SqlTypes.SqlBoolean.One">
9133       <summary>Represents a one value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9134     </member>
9135     <member name="M:System.Data.SqlTypes.SqlBoolean.OnesComplement(System.Data.SqlTypes.SqlBoolean)">
9136       <summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
9137       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9138       <returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</returns>
9139     </member>
9140     <member name="M:System.Data.SqlTypes.SqlBoolean.op_BitwiseAnd(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9141       <summary>Computes the bitwise AND operation of two specified <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
9142       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9143       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9144       <returns>The result of the logical AND operation.</returns>
9145     </member>
9146     <member name="M:System.Data.SqlTypes.SqlBoolean.op_BitwiseOr(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9147       <summary>Computes the bitwise OR of its operands.</summary>
9148       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9149       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9150       <returns>The results of the logical OR operation.</returns>
9151     </member>
9152     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Equality(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9153       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> for equality.</summary>
9154       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
9155       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
9156       <returns>
9157         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9158     </member>
9159     <member name="M:System.Data.SqlTypes.SqlBoolean.op_ExclusiveOr(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9160       <summary>Performs a bitwise exclusive-OR (XOR) operation on the supplied parameters.</summary>
9161       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9162       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9163       <returns>The result of the logical XOR operation.</returns>
9164     </member>
9165     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Boolean">
9166       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to a Boolean.</summary>
9167       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to convert.</param>
9168       <returns>A Boolean set to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</returns>
9169     </member>
9170     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlBoolean">
9171       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9172       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9173       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
9174     </member>
9175     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlBoolean">
9176       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9177       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9178       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
9179     </member>
9180     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlBoolean">
9181       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9182       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9183       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
9184     </member>
9185     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlBoolean">
9186       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9187       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9188       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
9189     </member>
9190     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlBoolean">
9191       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9192       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9193       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
9194     </member>
9195     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlBoolean">
9196       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9197       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9198       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
9199     </member>
9200     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlBoolean">
9201       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9202       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9203       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
9204     </member>
9205     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlBoolean">
9206       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9207       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9208       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
9209     </member>
9210     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlBoolean">
9211       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9212       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9213       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
9214     </member>
9215     <member name="M:System.Data.SqlTypes.SqlBoolean.op_False(System.Data.SqlTypes.SqlBoolean)">
9216       <summary>The false operator can be used to test the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether it is false.</summary>
9217       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be tested.</param>
9218       <returns>
9219         <see langword="true" /> if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see langword="false" />; otherwise, <see langword="false" />.</returns>
9220     </member>
9221     <member name="M:System.Data.SqlTypes.SqlBoolean.op_GreaterThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9222       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures to determine whether the first is greater than the second.</summary>
9223       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object.</param>
9224       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object.</param>
9225       <returns>
9226         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
9227     </member>
9228     <member name="M:System.Data.SqlTypes.SqlBoolean.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9229       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures to determine whether the first is greater than or equal to the second.</summary>
9230       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9231       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9232       <returns>
9233         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance; otherwise, <see langword="false" />.</returns>
9234     </member>
9235     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Implicit(System.Boolean)~System.Data.SqlTypes.SqlBoolean">
9236       <summary>Converts the supplied byte value to a <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
9237       <param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
9238       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> value that contains 0 or 1.</returns>
9239     </member>
9240     <member name="M:System.Data.SqlTypes.SqlBoolean.op_Inequality(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9241       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether they are not equal.</summary>
9242       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
9243       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
9244       <returns>
9245         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9246     </member>
9247     <member name="M:System.Data.SqlTypes.SqlBoolean.op_LessThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9248       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is less than the second.</summary>
9249       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9250       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9251       <returns>
9252         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance; otherwise, <see langword="false" />.</returns>
9253     </member>
9254     <member name="M:System.Data.SqlTypes.SqlBoolean.op_LessThanOrEqual(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9255       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether the first is less than or equal to the second.</summary>
9256       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9257       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9258       <returns>
9259         <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance; otherwise, <see langword="false" />.</returns>
9260     </member>
9261     <member name="M:System.Data.SqlTypes.SqlBoolean.op_LogicalNot(System.Data.SqlTypes.SqlBoolean)">
9262       <summary>Performs a NOT operation on a <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
9263       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> on which the NOT operation will be performed.</param>
9264       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> with the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /><see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if argument was true, <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" /> if argument was null, and <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> otherwise.</returns>
9265     </member>
9266     <member name="M:System.Data.SqlTypes.SqlBoolean.op_OnesComplement(System.Data.SqlTypes.SqlBoolean)">
9267       <summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
9268       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9269       <returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</returns>
9270     </member>
9271     <member name="M:System.Data.SqlTypes.SqlBoolean.op_True(System.Data.SqlTypes.SqlBoolean)">
9272       <summary>The true operator can be used to test the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether it is true.</summary>
9273       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be tested.</param>
9274       <returns>
9275         <see langword="true" /> if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see langword="true" />; otherwise, <see langword="false" />.</returns>
9276     </member>
9277     <member name="M:System.Data.SqlTypes.SqlBoolean.Or(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9278       <summary>Performs a bitwise OR operation on the two specified <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
9279       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9280       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9281       <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose Value is the result of the bitwise OR operation.</returns>
9282     </member>
9283     <member name="M:System.Data.SqlTypes.SqlBoolean.Parse(System.String)">
9284       <summary>Converts the specified <see cref="T:System.String" /> representation of a logical value to its <see cref="T:System.Data.SqlTypes.SqlBoolean" /> equivalent.</summary>
9285       <param name="s">The <see cref="T:System.String" /> to be converted.</param>
9286       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure that contains the parsed value.</returns>
9287     </member>
9288     <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#GetSchema">
9289       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9290       <returns>An <see langword="XmlSchema" />.</returns>
9291     </member>
9292     <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
9293       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9294       <param name="reader">
9295         <see langword="XmlReader" />
9296       </param>
9297     </member>
9298     <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
9299       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9300       <param name="writer">
9301         <see langword="XmlWriter" />
9302       </param>
9303     </member>
9304     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlByte">
9305       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9306       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's value is 0.</returns>
9307     </member>
9308     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDecimal">
9309       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
9310       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value is 0.</returns>
9311     </member>
9312     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDouble">
9313       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
9314       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value is 0.</returns>
9315     </member>
9316     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt16">
9317       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
9318       <returns>A new <see langword="SqlInt16" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure's value is 1. Otherwise, the new <see langword="SqlInt16" /> structure's value is 0.</returns>
9319     </member>
9320     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt32">
9321       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
9322       <returns>A new <see langword="SqlInt32" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure's value is 1. Otherwise, the new <see langword="SqlInt32" /> structure's value is 0.</returns>
9323     </member>
9324     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt64">
9325       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
9326       <returns>A new <see langword="SqlInt64" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure's value is 1. Otherwise, the new <see langword="SqlInt64" /> structure's value is 0.</returns>
9327     </member>
9328     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlMoney">
9329       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
9330       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is 1. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="false" />, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is 0. If <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value is neither 1 nor 0, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is <see cref="F:System.Data.SqlTypes.SqlMoney.Null" />.</returns>
9331     </member>
9332     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlSingle">
9333       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
9334       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose value is 1 or 0.
9335 If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's value is 1; otherwise the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's value is 0.</returns>
9336     </member>
9337     <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlString">
9338       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
9339       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then <see cref="T:System.Data.SqlTypes.SqlString" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure's value is 0.</returns>
9340     </member>
9341     <member name="M:System.Data.SqlTypes.SqlBoolean.ToString">
9342       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to a string.</summary>
9343       <returns>A string that contains the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean" />. If the value is null, the string will contain "null".</returns>
9344     </member>
9345     <member name="F:System.Data.SqlTypes.SqlBoolean.True">
9346       <summary>Represents a true value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9347     </member>
9348     <member name="P:System.Data.SqlTypes.SqlBoolean.Value">
9349       <summary>Gets the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value. This property is read-only.</summary>
9350       <returns>
9351         <see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />; otherwise, <see langword="false" />.</returns>
9352       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is set to null.</exception>
9353     </member>
9354     <member name="M:System.Data.SqlTypes.SqlBoolean.Xor(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
9355       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
9356       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9357       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
9358       <returns>The result of the logical XOR operation.</returns>
9359     </member>
9360     <member name="F:System.Data.SqlTypes.SqlBoolean.Zero">
9361       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
9362     </member>
9363     <member name="T:System.Data.SqlTypes.SqlByte">
9364       <summary>Represents an 8-bit unsigned integer, in the range of 0 through 255, to be stored in or retrieved from a database.</summary>
9365     </member>
9366     <member name="M:System.Data.SqlTypes.SqlByte.#ctor(System.Byte)">
9367       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure using the specified byte value.</summary>
9368       <param name="value">A byte value to be stored in the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9369     </member>
9370     <member name="M:System.Data.SqlTypes.SqlByte.Add(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9371       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlByte" /> structures.</summary>
9372       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9373       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9374       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> property contains the results of the addition.</returns>
9375     </member>
9376     <member name="M:System.Data.SqlTypes.SqlByte.BitwiseAnd(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9377       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9378       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9379       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9380       <returns>The results of the bitwise AND operation.</returns>
9381     </member>
9382     <member name="M:System.Data.SqlTypes.SqlByte.BitwiseOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9383       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9384       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9385       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9386       <returns>The results of the bitwise OR operation.</returns>
9387     </member>
9388     <member name="M:System.Data.SqlTypes.SqlByte.CompareTo(System.Data.SqlTypes.SqlByte)">
9389       <summary>Compares this instance to the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> object and returns an indication of their relative values.</summary>
9390       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlByte" /> object to be compared.</param>
9391       <returns>A signed number that indicates the relative values of the instance and the object.
9392   Return Value  
9393   
9394   Condition  
9395   
9396   Less than zero  
9397   
9398   This instance is less than the object.  
9399   
9400   Zero  
9401   
9402   This instance is the same as the object.  
9403   
9404   Greater than zero  
9405   
9406   This instance is greater than the object  
9407   
9408  -or-  
9409   
9410  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
9411     </member>
9412     <member name="M:System.Data.SqlTypes.SqlByte.CompareTo(System.Object)">
9413       <summary>Compares this instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
9414       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
9415       <returns>A signed number that indicates the relative values of the instance and the object.
9416   Return Value  
9417   
9418   Condition  
9419   
9420   Less than zero  
9421   
9422   This instance is less than the object.  
9423   
9424   Zero  
9425   
9426   This instance is the same as the object.  
9427   
9428   Greater than zero  
9429   
9430   This instance is greater than the object  
9431   
9432  -or-  
9433   
9434  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
9435     </member>
9436     <member name="M:System.Data.SqlTypes.SqlByte.Divide(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9437       <summary>Divides its first <see cref="T:System.Data.SqlTypes.SqlByte" /> operand by its second.</summary>
9438       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9439       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9440       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the results of the division.</returns>
9441     </member>
9442     <member name="M:System.Data.SqlTypes.SqlByte.Equals(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9443       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlByte" /> structures to determine whether they are equal.</summary>
9444       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9445       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9446       <returns>
9447         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlByte" /> will be null.</returns>
9448     </member>
9449     <member name="M:System.Data.SqlTypes.SqlByte.Equals(System.Object)">
9450       <summary>Compares the supplied <see cref="T:System.Object" /> parameter to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> object.</summary>
9451       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
9452       <returns>
9453         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> and the two are equal; otherwise <see langword="false" />.</returns>
9454     </member>
9455     <member name="M:System.Data.SqlTypes.SqlByte.GetHashCode">
9456       <summary>Returns the hash code for this instance.</summary>
9457       <returns>A 32-bit signed integer hash code.</returns>
9458     </member>
9459     <member name="M:System.Data.SqlTypes.SqlByte.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
9460       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
9461       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
9462       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
9463     </member>
9464     <member name="M:System.Data.SqlTypes.SqlByte.GreaterThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9465       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is greater than the second.</summary>
9466       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9467       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9468       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9469     </member>
9470     <member name="M:System.Data.SqlTypes.SqlByte.GreaterThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9471       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlByte" /> structures to determine whether the first is greater than or equal to the second.</summary>
9472       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9473       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9474       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9475     </member>
9476     <member name="P:System.Data.SqlTypes.SqlByte.IsNull">
9477       <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure is null.</summary>
9478       <returns>
9479         <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
9480     </member>
9481     <member name="M:System.Data.SqlTypes.SqlByte.LessThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9482       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is less than the second.</summary>
9483       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9484       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9485       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9486     </member>
9487     <member name="M:System.Data.SqlTypes.SqlByte.LessThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9488       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is less than or equal to the second.</summary>
9489       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9490       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9491       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9492     </member>
9493     <member name="F:System.Data.SqlTypes.SqlByte.MaxValue">
9494       <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9495     </member>
9496     <member name="F:System.Data.SqlTypes.SqlByte.MinValue">
9497       <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9498     </member>
9499     <member name="M:System.Data.SqlTypes.SqlByte.Mod(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9500       <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlByte" /> operand by its second.</summary>
9501       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9502       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9503       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> contains the remainder.</returns>
9504     </member>
9505     <member name="M:System.Data.SqlTypes.SqlByte.Modulus(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9506       <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlByte" /> values and returns the remainder.</summary>
9507       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
9508       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
9509       <returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</returns>
9510     </member>
9511     <member name="M:System.Data.SqlTypes.SqlByte.Multiply(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9512       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9513       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9514       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9515       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the product of the multiplication.</returns>
9516     </member>
9517     <member name="M:System.Data.SqlTypes.SqlByte.NotEquals(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9518       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether they are not equal.</summary>
9519       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9520       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9521       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9522     </member>
9523     <member name="F:System.Data.SqlTypes.SqlByte.Null">
9524       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</summary>
9525     </member>
9526     <member name="M:System.Data.SqlTypes.SqlByte.OnesComplement(System.Data.SqlTypes.SqlByte)">
9527       <summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
9528       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9529       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
9530     </member>
9531     <member name="M:System.Data.SqlTypes.SqlByte.op_Addition(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9532       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlByte" /> structures.</summary>
9533       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9534       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9535       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the sum of the two operands.</returns>
9536     </member>
9537     <member name="M:System.Data.SqlTypes.SqlByte.op_BitwiseAnd(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9538       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9539       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9540       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9541       <returns>The results of the bitwise AND operation.</returns>
9542     </member>
9543     <member name="M:System.Data.SqlTypes.SqlByte.op_BitwiseOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9544       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9545       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9546       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9547       <returns>The results of the bitwise OR operation.</returns>
9548     </member>
9549     <member name="M:System.Data.SqlTypes.SqlByte.op_Division(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9550       <summary>Divides its first <see cref="T:System.Data.SqlTypes.SqlByte" /> operand by its second.</summary>
9551       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9552       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9553       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the results of the division.</returns>
9554     </member>
9555     <member name="M:System.Data.SqlTypes.SqlByte.op_Equality(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9556       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlByte" /> structures to determine whether they are equal.</summary>
9557       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9558       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9559       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9560     </member>
9561     <member name="M:System.Data.SqlTypes.SqlByte.op_ExclusiveOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9562       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
9563       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9564       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9565       <returns>The results of the bitwise XOR operation.</returns>
9566     </member>
9567     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlByte">
9568       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9569       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to be converted to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
9570       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
9571     </member>
9572     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Byte">
9573       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to a byte.</summary>
9574       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted to a byte.</param>
9575       <returns>A byte whose value equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
9576     </member>
9577     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlByte">
9578       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9579       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
9580       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
9581     </member>
9582     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlByte">
9583       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9584       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
9585       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
9586     </member>
9587     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlByte">
9588       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9589       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
9590       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
9591     </member>
9592     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlByte">
9593       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9594       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
9595       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
9596     </member>
9597     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlByte">
9598       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9599       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
9600       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see langword="SqlInt64" /> parameter.</returns>
9601     </member>
9602     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlByte">
9603       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9604       <param name="x">A <see langword="SqlMoney" /> structure.</param>
9605       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
9606     </member>
9607     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlByte">
9608       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9609       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
9610       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
9611     </member>
9612     <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlByte">
9613       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9614       <param name="x">An instance of the <see langword="SqlString" /> class.</param>
9615       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the numeric value represented by the <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
9616     </member>
9617     <member name="M:System.Data.SqlTypes.SqlByte.op_GreaterThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9618       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is greater than the second.</summary>
9619       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9620       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9621       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9622     </member>
9623     <member name="M:System.Data.SqlTypes.SqlByte.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9624       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is greater than or equal to the second.</summary>
9625       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9626       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9627       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see langword="SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9628     </member>
9629     <member name="M:System.Data.SqlTypes.SqlByte.op_Implicit(System.Byte)~System.Data.SqlTypes.SqlByte">
9630       <summary>Converts the supplied byte value to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
9631       <param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
9632       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the supplied parameter.</returns>
9633     </member>
9634     <member name="M:System.Data.SqlTypes.SqlByte.op_Inequality(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9635       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether they are not equal.</summary>
9636       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9637       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9638       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9639     </member>
9640     <member name="M:System.Data.SqlTypes.SqlByte.op_LessThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9641       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is less than the second.</summary>
9642       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9643       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9644       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9645     </member>
9646     <member name="M:System.Data.SqlTypes.SqlByte.op_LessThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9647       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte" /> to determine whether the first is less than or equal to the second.</summary>
9648       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9649       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9650       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
9651     </member>
9652     <member name="M:System.Data.SqlTypes.SqlByte.op_Modulus(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9653       <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlByte" /> operand by its second.</summary>
9654       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9655       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9656       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> contains the remainder.</returns>
9657     </member>
9658     <member name="M:System.Data.SqlTypes.SqlByte.op_Multiply(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9659       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlByte" /> operands.</summary>
9660       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9661       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9662       <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the product of the multiplication.</returns>
9663     </member>
9664     <member name="M:System.Data.SqlTypes.SqlByte.op_OnesComplement(System.Data.SqlTypes.SqlByte)">
9665       <summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
9666       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9667       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
9668     </member>
9669     <member name="M:System.Data.SqlTypes.SqlByte.op_Subtraction(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9670       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</summary>
9671       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9672       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9673       <returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</returns>
9674     </member>
9675     <member name="M:System.Data.SqlTypes.SqlByte.Parse(System.String)">
9676       <summary>Converts the <see cref="T:System.String" /> representation of a number to its 8-bit unsigned integer equivalent.</summary>
9677       <param name="s">The <see langword="String" /> to be parsed.</param>
9678       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure that contains the 8-bit number represented by the <see langword="String" /> parameter.</returns>
9679     </member>
9680     <member name="M:System.Data.SqlTypes.SqlByte.Subtract(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9681       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</summary>
9682       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9683       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9684       <returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</returns>
9685     </member>
9686     <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#GetSchema">
9687       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9688       <returns>An <see langword="XmlSchema" />.</returns>
9689     </member>
9690     <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
9691       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9692       <param name="reader">
9693         <see langword="XmlReader" />
9694       </param>
9695     </member>
9696     <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
9697       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9698       <param name="writer">
9699         <see langword="XmlWriter" />
9700       </param>
9701     </member>
9702     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlBoolean">
9703       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
9704       <returns>
9705         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
9706     </member>
9707     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlDecimal">
9708       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
9709       <returns>A <see langword="SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
9710     </member>
9711     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlDouble">
9712       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
9713       <returns>A <see langword="SqlDouble" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
9714     </member>
9715     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt16">
9716       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
9717       <returns>A <see langword="SqlInt16" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
9718     </member>
9719     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt32">
9720       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
9721       <returns>A <see langword="SqlInt32" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
9722     </member>
9723     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt64">
9724       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
9725       <returns>A <see langword="SqlInt64" /> structure who <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
9726     </member>
9727     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlMoney">
9728       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
9729       <returns>A <see langword="SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
9730     </member>
9731     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlSingle">
9732       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
9733       <returns>A <see langword="SqlSingle" /> structure that has the same <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> as this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
9734     </member>
9735     <member name="M:System.Data.SqlTypes.SqlByte.ToSqlString">
9736       <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
9737       <returns>A <see langword="SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see cref="P:System.Data.SqlTypes.SqlByte.Value" />.</returns>
9738     </member>
9739     <member name="M:System.Data.SqlTypes.SqlByte.ToString">
9740       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to a <see cref="T:System.String" />.</summary>
9741       <returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" />. If the <see langword="Value" /> is null, the <see langword="String" /> will be a null string.</returns>
9742     </member>
9743     <member name="P:System.Data.SqlTypes.SqlByte.Value">
9744       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure. This property is read-only.</summary>
9745       <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
9746     </member>
9747     <member name="M:System.Data.SqlTypes.SqlByte.Xor(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
9748       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
9749       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9750       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
9751       <returns>The results of the XOR operation.</returns>
9752     </member>
9753     <member name="F:System.Data.SqlTypes.SqlByte.Zero">
9754       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</summary>
9755     </member>
9756     <member name="T:System.Data.SqlTypes.SqlBytes">
9757       <summary>Represents a mutable reference type that wraps either a <see cref="P:System.Data.SqlTypes.SqlBytes.Buffer" /> or a <see cref="P:System.Data.SqlTypes.SqlBytes.Stream" />.</summary>
9758     </member>
9759     <member name="M:System.Data.SqlTypes.SqlBytes.#ctor">
9760       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes" /> class.</summary>
9761     </member>
9762     <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.Byte[])">
9763       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes" /> class based on the specified byte array.</summary>
9764       <param name="buffer">The array of unsigned bytes.</param>
9765     </member>
9766     <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.Data.SqlTypes.SqlBinary)">
9767       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes" /> class based on the specified <see cref="T:System.Data.SqlTypes.SqlBinary" /> value.</summary>
9768       <param name="value">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> value.</param>
9769     </member>
9770     <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.IO.Stream)">
9771       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes" /> class based on the specified <see cref="T:System.IO.Stream" /> value.</summary>
9772       <param name="s">A <see cref="T:System.IO.Stream" />.</param>
9773     </member>
9774     <member name="P:System.Data.SqlTypes.SqlBytes.Buffer">
9775       <summary>Returns a reference to the internal buffer.</summary>
9776       <returns>A reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlBytes" /> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
9777     </member>
9778     <member name="M:System.Data.SqlTypes.SqlBytes.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
9779       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
9780       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
9781       <returns>A <see langword="string" /> that indicates the XSD of the specified <see langword="XmlSchemaSet" />.</returns>
9782     </member>
9783     <member name="P:System.Data.SqlTypes.SqlBytes.IsNull">
9784       <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlBytes" /> is null.</summary>
9785       <returns>
9786         <see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBytes" /> is null, <see langword="false" /> otherwise.</returns>
9787     </member>
9788     <member name="P:System.Data.SqlTypes.SqlBytes.Item(System.Int64)">
9789       <summary>Gets or sets the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance at the specified index.</summary>
9790       <param name="offset">A <see cref="T:System.Int64" /> value.</param>
9791       <returns>A <see cref="T:System.Byte" /> value.</returns>
9792     </member>
9793     <member name="P:System.Data.SqlTypes.SqlBytes.Length">
9794       <summary>Gets the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9795       <returns>A <see cref="T:System.Int64" /> value representing the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.
9796 Returns -1 if no buffer is available to the instance or if the value is null.
9797 Returns a <see cref="P:System.IO.Stream.Length" /> for a stream-wrapped instance.</returns>
9798     </member>
9799     <member name="P:System.Data.SqlTypes.SqlBytes.MaxLength">
9800       <summary>Gets the maximum length of the value of the internal buffer of this <see cref="T:System.Data.SqlTypes.SqlBytes" />.</summary>
9801       <returns>A long representing the maximum length of the value of the internal buffer. Returns -1 for a stream-wrapped <see cref="T:System.Data.SqlTypes.SqlBytes" />.</returns>
9802     </member>
9803     <member name="P:System.Data.SqlTypes.SqlBytes.Null">
9804       <summary>Gets a null instance of this <see cref="T:System.Data.SqlTypes.SqlBytes" />.</summary>
9805       <returns>An instance whose <see cref="P:System.Data.SqlTypes.SqlBytes.IsNull" /> property returns <see langword="true" />.</returns>
9806     </member>
9807     <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Data.SqlTypes.SqlBytes">
9808       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure.</summary>
9809       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to be converted.</param>
9810       <returns>A <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure.</returns>
9811     </member>
9812     <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBytes)~System.Data.SqlTypes.SqlBinary">
9813       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
9814       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure to be converted.</param>
9815       <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</returns>
9816     </member>
9817     <member name="M:System.Data.SqlTypes.SqlBytes.Read(System.Int64,System.Byte[],System.Int32,System.Int32)">
9818       <summary>Copies bytes from this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance to the passed-in buffer and returns the number of copied bytes.</summary>
9819       <param name="offset">An <see cref="T:System.Int64" /> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</param>
9820       <param name="buffer">The byte array buffer to copy into.</param>
9821       <param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
9822       <param name="count">An <see cref="T:System.Int32" /> integer representing the number of bytes to copy.</param>
9823       <returns>An <see cref="T:System.Int64" /> long value representing the number of copied bytes.</returns>
9824     </member>
9825     <member name="M:System.Data.SqlTypes.SqlBytes.SetLength(System.Int64)">
9826       <summary>Sets the length of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9827       <param name="value">The <see cref="T:System.Int64" /> long value representing the length.</param>
9828     </member>
9829     <member name="M:System.Data.SqlTypes.SqlBytes.SetNull">
9830       <summary>Sets this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance to null.</summary>
9831     </member>
9832     <member name="P:System.Data.SqlTypes.SqlBytes.Storage">
9833       <summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9834       <returns>A <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration.</returns>
9835     </member>
9836     <member name="P:System.Data.SqlTypes.SqlBytes.Stream">
9837       <summary>Gets or sets the data of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> as a stream.</summary>
9838       <returns>The stream that contains the SqlBytes data.</returns>
9839     </member>
9840     <member name="M:System.Data.SqlTypes.SqlBytes.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
9841       <summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9842       <param name="info">The object to be populated with serialization information.</param>
9843       <param name="context">The destination context of the serialization.</param>
9844     </member>
9845     <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#GetSchema">
9846       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9847       <returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
9848     </member>
9849     <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
9850       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9851       <param name="r">
9852         <see langword="XmlReader" />
9853       </param>
9854     </member>
9855     <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
9856       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9857       <param name="writer">
9858         <see langword="XmlWriter" />
9859       </param>
9860     </member>
9861     <member name="M:System.Data.SqlTypes.SqlBytes.ToSqlBinary">
9862       <summary>Constructs and returns a <see cref="T:System.Data.SqlTypes.SqlBinary" /> from this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9863       <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> from this instance.</returns>
9864     </member>
9865     <member name="P:System.Data.SqlTypes.SqlBytes.Value">
9866       <summary>Returns a managed copy of the value held by this <see cref="T:System.Data.SqlTypes.SqlBytes" />.</summary>
9867       <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> as an array of bytes.</returns>
9868     </member>
9869     <member name="M:System.Data.SqlTypes.SqlBytes.Write(System.Int64,System.Byte[],System.Int32,System.Int32)">
9870       <summary>Copies bytes from the passed-in buffer to this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
9871       <param name="offset">An <see cref="T:System.Int64" /> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</param>
9872       <param name="buffer">The byte array buffer to copy into.</param>
9873       <param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
9874       <param name="count">An <see cref="T:System.Int32" /> integer representing the number of bytes to copy.</param>
9875     </member>
9876     <member name="T:System.Data.SqlTypes.SqlChars">
9877       <summary>
9878         <see cref="T:System.Data.SqlTypes.SqlChars" /> is a mutable reference type that wraps a <see cref="T:System.Char" /> array or a <see cref="T:System.Data.SqlTypes.SqlString" /> instance.</summary>
9879     </member>
9880     <member name="M:System.Data.SqlTypes.SqlChars.#ctor">
9881       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars" /> class.</summary>
9882     </member>
9883     <member name="M:System.Data.SqlTypes.SqlChars.#ctor(System.Char[])">
9884       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars" /> class based on the specified character array.</summary>
9885       <param name="buffer">A <see cref="T:System.Char" /> array.</param>
9886     </member>
9887     <member name="M:System.Data.SqlTypes.SqlChars.#ctor(System.Data.SqlTypes.SqlString)">
9888       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars" /> class based on the specified <see cref="T:System.Data.SqlTypes.SqlString" /> value.</summary>
9889       <param name="value">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
9890     </member>
9891     <member name="P:System.Data.SqlTypes.SqlChars.Buffer">
9892       <summary>Returns a reference to the internal buffer.</summary>
9893       <returns>A reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlChars" /> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
9894     </member>
9895     <member name="M:System.Data.SqlTypes.SqlChars.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
9896       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
9897       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
9898       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
9899     </member>
9900     <member name="P:System.Data.SqlTypes.SqlChars.IsNull">
9901       <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlChars" /> is null.</summary>
9902       <returns>
9903         <see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlChars" /> is null. Otherwise, <see langword="false" />.</returns>
9904     </member>
9905     <member name="P:System.Data.SqlTypes.SqlChars.Item(System.Int64)">
9906       <summary>Gets or sets the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance at the specified index.</summary>
9907       <param name="offset">An <see cref="T:System.Int64" /> value.</param>
9908       <returns>A <see cref="T:System.Char" /> value.</returns>
9909     </member>
9910     <member name="P:System.Data.SqlTypes.SqlChars.Length">
9911       <summary>Gets the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
9912       <returns>A <see cref="T:System.Int64" /> value that indicates the length in characters of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.
9913 Returns -1 if no buffer is available to the instance, or if the value is null.
9914 Returns a <see cref="P:System.IO.Stream.Length" /> for a stream-wrapped instance.</returns>
9915     </member>
9916     <member name="P:System.Data.SqlTypes.SqlChars.MaxLength">
9917       <summary>Gets the maximum length in two-byte characters of the value the internal buffer can hold.</summary>
9918       <returns>An <see cref="T:System.Int64" /> value representing the maximum length in two-byte characters of the value of the internal buffer.
9919 Returns -1 for a stream-wrapped <see cref="T:System.Data.SqlTypes.SqlChars" />.</returns>
9920     </member>
9921     <member name="P:System.Data.SqlTypes.SqlChars.Null">
9922       <summary>Returns a null instance of this <see cref="T:System.Data.SqlTypes.SqlChars" />.</summary>
9923       <returns>An instance whose <see cref="P:System.Data.SqlTypes.SqlChars.IsNull" /> property returns <see langword="true" />. For more information, see Handling Null Values.</returns>
9924     </member>
9925     <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlChars)~System.Data.SqlTypes.SqlString">
9926       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlChars" /> structure to a <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
9927       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlChars" /> structure to be converted.</param>
9928       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
9929     </member>
9930     <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlChars">
9931       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString" /> structure to a <see cref="T:System.Data.SqlTypes.SqlChars" /> structure.</summary>
9932       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlString" /> structure to be converted.</param>
9933       <returns>A <see cref="T:System.Data.SqlTypes.SqlChars" /> structure.</returns>
9934     </member>
9935     <member name="M:System.Data.SqlTypes.SqlChars.Read(System.Int64,System.Char[],System.Int32,System.Int32)">
9936       <summary>Copies characters from this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance to the passed-in buffer and returns the number of copied characters.</summary>
9937       <param name="offset">An <see cref="T:System.Int64" /><see langword="long" /> value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</param>
9938       <param name="buffer">The character array buffer to copy into.</param>
9939       <param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
9940       <param name="count">An <see cref="T:System.Int32" /> integer value representing the number of characters to copy.</param>
9941       <returns>An <see cref="T:System.Int64" /><see langword="long" /> value representing the number of copied bytes.</returns>
9942     </member>
9943     <member name="M:System.Data.SqlTypes.SqlChars.SetLength(System.Int64)">
9944       <summary>Sets the length of this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
9945       <param name="value">The <see cref="T:System.Int64" /><see langword="long" /> value representing the length.</param>
9946     </member>
9947     <member name="M:System.Data.SqlTypes.SqlChars.SetNull">
9948       <summary>Sets this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance to null.</summary>
9949     </member>
9950     <member name="P:System.Data.SqlTypes.SqlChars.Storage">
9951       <summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
9952       <returns>A <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration.</returns>
9953     </member>
9954     <member name="M:System.Data.SqlTypes.SqlChars.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
9955       <summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
9956       <param name="info">The object to be populated with serialization information.</param>
9957       <param name="context">The destination context of the serialization.</param>
9958     </member>
9959     <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#GetSchema">
9960       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9961       <returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
9962     </member>
9963     <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
9964       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9965       <param name="r">
9966         <see langword="XmlReader" />
9967       </param>
9968     </member>
9969     <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
9970       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
9971       <param name="writer">
9972         <see langword="XmlWriter" />
9973       </param>
9974     </member>
9975     <member name="M:System.Data.SqlTypes.SqlChars.ToSqlString">
9976       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance to its equivalent <see cref="T:System.Data.SqlTypes.SqlString" /> representation.</summary>
9977       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representation of this type.</returns>
9978     </member>
9979     <member name="P:System.Data.SqlTypes.SqlChars.Value">
9980       <summary>Returns a managed copy of the value held by this <see cref="T:System.Data.SqlTypes.SqlChars" />.</summary>
9981       <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlChars" /> as an array of characters.</returns>
9982     </member>
9983     <member name="M:System.Data.SqlTypes.SqlChars.Write(System.Int64,System.Char[],System.Int32,System.Int32)">
9984       <summary>Copies characters from the passed-in buffer to this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
9985       <param name="offset">A <see langword="long" /> value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</param>
9986       <param name="buffer">The character array buffer to copy into.</param>
9987       <param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
9988       <param name="count">An <see cref="T:System.Int32" /> integer representing the number of characters to copy.</param>
9989     </member>
9990     <member name="T:System.Data.SqlTypes.SqlCompareOptions">
9991       <summary>Specifies the compare option values for a <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
9992     </member>
9993     <member name="F:System.Data.SqlTypes.SqlCompareOptions.BinarySort">
9994       <summary>Specifies that sorts should be based on a characters numeric value instead of its alphabetical value.</summary>
9995     </member>
9996     <member name="F:System.Data.SqlTypes.SqlCompareOptions.BinarySort2">
9997       <summary>Performs a binary sort.</summary>
9998     </member>
9999     <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreCase">
10000       <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore case.</summary>
10001     </member>
10002     <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreKanaType">
10003       <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore the Kana type. Kana type refers to Japanese hiragana and katakana characters that represent phonetic sounds in the Japanese language. Hiragana is used for native Japanese expressions and words, while katakana is used for words borrowed from other languages, such as "computer" or "Internet". A phonetic sound can be expressed in both hiragana and katakana. If this value is selected, the hiragana character for one sound is considered equal to the katakana character for the same sound.</summary>
10004     </member>
10005     <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreNonSpace">
10006       <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore nonspace combining characters, such as diacritics. The Unicode Standard defines combining characters as characters that are combined with base characters to produce a new character. Non-space combining characters do not use character space by themselves when rendered. For more information about non-space combining characters, see the Unicode Standard at https://www.unicode.org.</summary>
10007     </member>
10008     <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreWidth">
10009       <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore the character width. For example, Japanese katakana characters can be written as full-width or half-width and, if this value is selected, the katakana characters written as full-width are considered equal to the same characters written in half-width.</summary>
10010     </member>
10011     <member name="F:System.Data.SqlTypes.SqlCompareOptions.None">
10012       <summary>Specifies the default option settings for <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons.</summary>
10013     </member>
10014     <member name="T:System.Data.SqlTypes.SqlDateTime">
10015       <summary>Represents the date and time data ranging in value from January 1, 1753 to December 31, 9999 to an accuracy of 3.33 milliseconds to be stored in or retrieved from a database. The <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure has a different underlying data structure from its corresponding .NET Framework type, <see cref="T:System.DateTime" />, which can represent any time between 12:00:00 AM 1/1/0001 and 11:59:59 PM 12/31/9999, to the accuracy of 100 nanoseconds. <see cref="T:System.Data.SqlTypes.SqlDateTime" /> actually stores the relative difference to 00:00:00 AM 1/1/1900. Therefore, a conversion from "00:00:00 AM 1/1/1900" to an integer will return 0.</summary>
10016     </member>
10017     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.DateTime)">
10018       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the specified <see cref="T:System.DateTime" /> value.</summary>
10019       <param name="value">A <see langword="DateTime" /> structure.</param>
10020     </member>
10021     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32)">
10022       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the supplied parameters.</summary>
10023       <param name="dayTicks">An integer value that represents the date as ticks.</param>
10024       <param name="timeTicks">An integer value that represents the time as ticks.</param>
10025     </member>
10026     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32)">
10027       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the supplied parameters to initialize the year, month, day.</summary>
10028       <param name="year">An integer representing the year of the of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10029       <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10030       <param name="day">An integer value representing the day number of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10031     </member>
10032     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
10033       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, and second of the new structure.</summary>
10034       <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10035       <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10036       <param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10037       <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10038       <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10039       <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10040     </member>
10041     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
10042       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and millisecond of the new structure.</summary>
10043       <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10044       <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10045       <param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10046       <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10047       <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10048       <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10049       <param name="millisecond">An double value representing the millisecond of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10050     </member>
10051     <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
10052       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and microsecond of the new structure.</summary>
10053       <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10054       <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10055       <param name="day">An integer value representing the day of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10056       <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10057       <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10058       <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10059       <param name="bilisecond">An integer value representing the microsecond (thousandths of a millisecond) of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10060     </member>
10061     <member name="M:System.Data.SqlTypes.SqlDateTime.Add(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
10062       <summary>Adds a <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to the specified <see langword="TimeSpan" />.</summary>
10063       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</param>
10064       <param name="t">A <see langword="Timespan" /> value.</param>
10065       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</returns>
10066     </member>
10067     <member name="M:System.Data.SqlTypes.SqlDateTime.CompareTo(System.Data.SqlTypes.SqlDateTime)">
10068       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure and returns an indication of their relative values.</summary>
10069       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to be compared.</param>
10070       <returns>A signed number that indicates the relative values of the instance and the object.
10071   Return value  
10072   
10073   Condition  
10074   
10075   Less than zero  
10076   
10077   This instance is less than <see cref="T:System.Data.SqlTypes.SqlDateTime" />.  
10078   
10079   Zero  
10080   
10081   This instance is the same as <see cref="T:System.Data.SqlTypes.SqlDateTime" />.  
10082   
10083   Greater than zero  
10084   
10085   This instance is greater than <see cref="T:System.Data.SqlTypes.SqlDateTime" />  
10086   
10087  -or-  
10088   
10089  <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
10090     </member>
10091     <member name="M:System.Data.SqlTypes.SqlDateTime.CompareTo(System.Object)">
10092       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
10093       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
10094       <returns>A signed number that indicates the relative values of the instance and the object.
10095   Return value  
10096   
10097   Condition  
10098   
10099   Less than zero  
10100   
10101   This instance is less than the object.  
10102   
10103   Zero  
10104   
10105   This instance is the same as the object.  
10106   
10107   Greater than zero  
10108   
10109   This instance is greater than the object  
10110   
10111  -or-  
10112   
10113  The object is a null reference (<see langword="Nothing" /> as Visual Basic).</returns>
10114     </member>
10115     <member name="P:System.Data.SqlTypes.SqlDateTime.DayTicks">
10116       <summary>Gets the number of ticks representing the date of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10117       <returns>The number of ticks representing the date that is contained in the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10118       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</exception>
10119     </member>
10120     <member name="M:System.Data.SqlTypes.SqlDateTime.Equals(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10121       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structures to determine whether they are equal.</summary>
10122       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10123       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10124       <returns>
10125         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
10126     </member>
10127     <member name="M:System.Data.SqlTypes.SqlDateTime.Equals(System.Object)">
10128       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> object.</summary>
10129       <param name="value">The object to be compared.</param>
10130       <returns>
10131         <see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> and the two are equal; otherwise <see langword="false" />.</returns>
10132     </member>
10133     <member name="M:System.Data.SqlTypes.SqlDateTime.GetHashCode">
10134       <summary>Gets the hash code for this instance.</summary>
10135       <returns>A 32-bit signed integer hash code.</returns>
10136     </member>
10137     <member name="M:System.Data.SqlTypes.SqlDateTime.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
10138       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
10139       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
10140       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
10141     </member>
10142     <member name="M:System.Data.SqlTypes.SqlDateTime.GreaterThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10143       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is greater than the second.</summary>
10144       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10145       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10146       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10147     </member>
10148     <member name="M:System.Data.SqlTypes.SqlDateTime.GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10149       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is greater than or equal to the second.</summary>
10150       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10151       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10152       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10153     </member>
10154     <member name="P:System.Data.SqlTypes.SqlDateTime.IsNull">
10155       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure is null.</summary>
10156       <returns>
10157         <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
10158     </member>
10159     <member name="M:System.Data.SqlTypes.SqlDateTime.LessThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10160       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is less than the second.</summary>
10161       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10162       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10163       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10164     </member>
10165     <member name="M:System.Data.SqlTypes.SqlDateTime.LessThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10166       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is less than or equal to the second.</summary>
10167       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10168       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10169       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10170     </member>
10171     <member name="F:System.Data.SqlTypes.SqlDateTime.MaxValue">
10172       <summary>Represents the maximum valid date value for a <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10173     </member>
10174     <member name="F:System.Data.SqlTypes.SqlDateTime.MinValue">
10175       <summary>Represents the minimum valid date value for a <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10176     </member>
10177     <member name="M:System.Data.SqlTypes.SqlDateTime.NotEquals(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10178       <summary>Performs a logical comparison of two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether they are not equal.</summary>
10179       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10180       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10181       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10182     </member>
10183     <member name="F:System.Data.SqlTypes.SqlDateTime.Null">
10184       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10185     </member>
10186     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Addition(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
10187       <summary>Adds the period of time indicated by the supplied <see cref="T:System.TimeSpan" /> parameter, <paramref name="t" />, to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10188       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10189       <param name="t">A <see cref="T:System.TimeSpan" /> structure.</param>
10190       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDateTime" />. If either argument is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null" />, the new <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null" />.</returns>
10191     </member>
10192     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Equality(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10193       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structures to determine whether they are equal.</summary>
10194       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10195       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10196       <returns>
10197         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
10198     </member>
10199     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Explicit(System.Data.SqlTypes.SqlDateTime)~System.DateTime">
10200       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to a <see cref="T:System.DateTime" /> structure.</summary>
10201       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10202       <returns>A <see cref="T:System.DateTime" /> object whose <see cref="P:System.DateTime.Date" /> and <see cref="P:System.DateTime.TimeOfDay" /> properties contain the same date and time values as the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10203     </member>
10204     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDateTime">
10205       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</summary>
10206       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
10207       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is equal to the date and time represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see langword="Value" /> of the newly created <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure will be null.</returns>
10208     </member>
10209     <member name="M:System.Data.SqlTypes.SqlDateTime.op_GreaterThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10210       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is greater than the second.</summary>
10211       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10212       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10213       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10214     </member>
10215     <member name="M:System.Data.SqlTypes.SqlDateTime.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10216       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is greater than or equal to the second.</summary>
10217       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10218       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10219       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10220     </member>
10221     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Implicit(System.DateTime)~System.Data.SqlTypes.SqlDateTime">
10222       <summary>Converts a <see cref="T:System.DateTime" /> structure to a <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10223       <param name="value">A <see langword="DateTime" /> structure.</param>
10224       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is equal to the combined <see cref="P:System.DateTime.Date" /> and <see cref="P:System.DateTime.TimeOfDay" /> properties of the supplied <see cref="T:System.DateTime" /> structure.</returns>
10225     </member>
10226     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Inequality(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10227       <summary>Performs a logical comparison of two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether they are not equal.</summary>
10228       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10229       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10230       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10231     </member>
10232     <member name="M:System.Data.SqlTypes.SqlDateTime.op_LessThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10233       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is less than the second.</summary>
10234       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10235       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10236       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10237     </member>
10238     <member name="M:System.Data.SqlTypes.SqlDateTime.op_LessThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
10239       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> to determine whether the first is less than or equal to the second.</summary>
10240       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10241       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10242       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10243     </member>
10244     <member name="M:System.Data.SqlTypes.SqlDateTime.op_Subtraction(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
10245       <summary>Subtracts the supplied <see cref="T:System.TimeSpan" /> structure, <paramref name="t" />, from the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10246       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
10247       <param name="t">A <see cref="T:System.TimeSpan" /> structure.</param>
10248       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure representing the results of the subtraction.</returns>
10249     </member>
10250     <member name="M:System.Data.SqlTypes.SqlDateTime.Parse(System.String)">
10251       <summary>Converts the specified <see cref="T:System.String" /> representation of a date and time to its <see cref="T:System.Data.SqlTypes.SqlDateTime" /> equivalent.</summary>
10252       <param name="s">The <see langword="string" /> to be parsed.</param>
10253       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure equal to the date and time represented by the specified <see langword="string" />.</returns>
10254     </member>
10255     <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerHour">
10256       <summary>A constant whose value is the number of ticks equivalent to one hour.</summary>
10257     </member>
10258     <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerMinute">
10259       <summary>A constant whose value is the number of ticks equivalent to one minute.</summary>
10260     </member>
10261     <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerSecond">
10262       <summary>A constant whose value is the number of ticks equivalent to one second.</summary>
10263     </member>
10264     <member name="M:System.Data.SqlTypes.SqlDateTime.Subtract(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
10265       <summary>Subtracts the specified <see langword="Timespan" /> from this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> instance.</summary>
10266       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</param>
10267       <param name="t">A <see langword="Timespan" /> value.</param>
10268       <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</returns>
10269     </member>
10270     <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#GetSchema">
10271       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10272       <returns>An <see langword="XmlSchema" />.</returns>
10273     </member>
10274     <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
10275       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10276       <param name="reader">
10277         <see langword="XmlReader" />
10278       </param>
10279     </member>
10280     <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
10281       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10282       <param name="writer">
10283         <see langword="XmlWriter" />
10284       </param>
10285     </member>
10286     <member name="P:System.Data.SqlTypes.SqlDateTime.TimeTicks">
10287       <summary>Gets the number of ticks representing the time of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
10288       <returns>The number of ticks representing the time of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10289     </member>
10290     <member name="M:System.Data.SqlTypes.SqlDateTime.ToSqlString">
10291       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
10292       <returns>A <see langword="SqlString" /> structure whose value is a string representing the date and time that is contained in this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10293     </member>
10294     <member name="M:System.Data.SqlTypes.SqlDateTime.ToString">
10295       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to a <see cref="T:System.String" />.</summary>
10296       <returns>A <see langword="String" /> representing the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10297     </member>
10298     <member name="P:System.Data.SqlTypes.SqlDateTime.Value">
10299       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure. This property is read-only.</summary>
10300       <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
10301       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</exception>
10302     </member>
10303     <member name="T:System.Data.SqlTypes.SqlDecimal">
10304       <summary>Represents a numeric value between - 10^38 +1 and 10^38 - 1, with fixed precision and scale.</summary>
10305     </member>
10306     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Byte,System.Byte,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
10307       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied parameters.</summary>
10308       <param name="bPrecision">The maximum number of digits that can be used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10309       <param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10310       <param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure represents a positive or negative number.</param>
10311       <param name="data1">An 32-bit unsigned integer which will be combined with data2, data3, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
10312       <param name="data2">An 32-bit unsigned integer which will be combined with data1, data3, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
10313       <param name="data3">An 32-bit unsigned integer which will be combined with data1, data2, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
10314       <param name="data4">An 32-bit unsigned integer which will be combined with data1, data2, and data3 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
10315     </member>
10316     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Byte,System.Byte,System.Boolean,System.Int32[])">
10317       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied parameters.</summary>
10318       <param name="bPrecision">The maximum number of digits that can be used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10319       <param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10320       <param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure represents a positive or negative number.</param>
10321       <param name="bits">The 128-bit unsigned integer that provides the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</param>
10322     </member>
10323     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Decimal)">
10324       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied <see cref="T:System.Decimal" /> value.</summary>
10325       <param name="value">The <see cref="T:System.Decimal" /> value to be stored as a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10326     </member>
10327     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Double)">
10328       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied double parameter.</summary>
10329       <param name="dVal">A double, representing the value for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10330     </member>
10331     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Int32)">
10332       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied integer value.</summary>
10333       <param name="value">The supplied integer value which will the used as the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10334     </member>
10335     <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Int64)">
10336       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure using the supplied long integer value.</summary>
10337       <param name="value">The supplied long integer value which will the used as the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10338     </member>
10339     <member name="M:System.Data.SqlTypes.SqlDecimal.Abs(System.Data.SqlTypes.SqlDecimal)">
10340       <summary>The Abs method gets the absolute value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</summary>
10341       <param name="n">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10342       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the unsigned number representing the absolute value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
10343     </member>
10344     <member name="M:System.Data.SqlTypes.SqlDecimal.Add(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10345       <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operators.</summary>
10346       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10347       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10348       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the sum.</returns>
10349     </member>
10350     <member name="M:System.Data.SqlTypes.SqlDecimal.AdjustScale(System.Data.SqlTypes.SqlDecimal,System.Int32,System.Boolean)">
10351       <summary>The scale of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand will be adjusted to the number of digits indicated by the digits parameter. Depending on the value of the fRound parameter, the value will either be rounded to the appropriate number of digits or truncated.</summary>
10352       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be adjusted.</param>
10353       <param name="digits">The number of digits in the adjusted structure.</param>
10354       <param name="fRound">If this parameter is <see langword="true" />, the new Value will be rounded, if <see langword="false" />, the value will be truncated.</param>
10355       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the adjusted number.</returns>
10356     </member>
10357     <member name="P:System.Data.SqlTypes.SqlDecimal.BinData">
10358       <summary>Gets the binary representation of the value of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure as an array of bytes.</summary>
10359       <returns>An array of bytes that contains the binary representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value.</returns>
10360     </member>
10361     <member name="M:System.Data.SqlTypes.SqlDecimal.Ceiling(System.Data.SqlTypes.SqlDecimal)">
10362       <summary>Returns the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
10363       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure for which the ceiling value is to be calculated.</param>
10364       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> representing the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10365     </member>
10366     <member name="M:System.Data.SqlTypes.SqlDecimal.CompareTo(System.Data.SqlTypes.SqlDecimal)">
10367       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> object and returns an indication of their relative values.</summary>
10368       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> to be compared.</param>
10369       <returns>A signed number that indicates the relative values of the instance and the object.
10370   Return value  
10371   
10372   Condition  
10373   
10374   Less than zero  
10375   
10376   This instance is less than the object.  
10377   
10378   Zero  
10379   
10380   This instance is the same as the object.  
10381   
10382   Greater than zero  
10383   
10384   This instance is greater than the object  
10385   
10386  -or-  
10387   
10388  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
10389     </member>
10390     <member name="M:System.Data.SqlTypes.SqlDecimal.CompareTo(System.Object)">
10391       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
10392       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
10393       <returns>A signed number that indicates the relative values of the instance and the object.
10394   Return Value  
10395   
10396   Condition  
10397   
10398   Less than zero  
10399   
10400   This instance is less than the object.  
10401   
10402   Zero  
10403   
10404   This instance is the same as the object.  
10405   
10406   Greater than zero  
10407   
10408   This instance is greater than the object  
10409   
10410  -or-  
10411   
10412  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
10413     </member>
10414     <member name="M:System.Data.SqlTypes.SqlDecimal.ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal,System.Int32,System.Int32)">
10415       <summary>Adjusts the value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand to the indicated precision and scale.</summary>
10416       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value is to be adjusted.</param>
10417       <param name="precision">The precision for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10418       <param name="scale">The scale for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10419       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value has been adjusted to the precision and scale indicated in the parameters.</returns>
10420     </member>
10421     <member name="P:System.Data.SqlTypes.SqlDecimal.Data">
10422       <summary>Gets the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure as an array of integers.</summary>
10423       <returns>An array of integers that contains the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10424     </member>
10425     <member name="M:System.Data.SqlTypes.SqlDecimal.Divide(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10426       <summary>The division operator calculates the results of dividing the first <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand by the second.</summary>
10427       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10428       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10429       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the results of the division.</returns>
10430     </member>
10431     <member name="M:System.Data.SqlTypes.SqlDecimal.Equals(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10432       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operands to determine whether they are equal.</summary>
10433       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10434       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10435       <returns>
10436         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, the value of the <see langword="SqlDecimal" /> will be null.</returns>
10437     </member>
10438     <member name="M:System.Data.SqlTypes.SqlDecimal.Equals(System.Object)">
10439       <summary>Compares the supplied <see cref="T:System.Object" /> parameter to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance.</summary>
10440       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
10441       <returns>
10442         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
10443     </member>
10444     <member name="M:System.Data.SqlTypes.SqlDecimal.Floor(System.Data.SqlTypes.SqlDecimal)">
10445       <summary>Rounds a specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> number to the next lower whole number.</summary>
10446       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure for which the floor value is to be calculated.</param>
10447       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure that contains the whole number part of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10448     </member>
10449     <member name="M:System.Data.SqlTypes.SqlDecimal.GetHashCode">
10450       <summary>Returns the hash code for this instance.</summary>
10451       <returns>A 32-bit signed integer hash code.</returns>
10452     </member>
10453     <member name="M:System.Data.SqlTypes.SqlDecimal.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
10454       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
10455       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
10456       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
10457     </member>
10458     <member name="M:System.Data.SqlTypes.SqlDecimal.GreaterThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10459       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is greater than the second.</summary>
10460       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10461       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10462       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10463     </member>
10464     <member name="M:System.Data.SqlTypes.SqlDecimal.GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10465       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether the first is greater than or equal to the second.</summary>
10466       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10467       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10468       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10469     </member>
10470     <member name="P:System.Data.SqlTypes.SqlDecimal.IsNull">
10471       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null.</summary>
10472       <returns>
10473         <see langword="true" /> if this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null. Otherwise, <see langword="false" />.</returns>
10474     </member>
10475     <member name="P:System.Data.SqlTypes.SqlDecimal.IsPositive">
10476       <summary>Indicates whether the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is greater than zero.</summary>
10477       <returns>
10478         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is assigned to null. Otherwise, <see langword="false" />.</returns>
10479     </member>
10480     <member name="M:System.Data.SqlTypes.SqlDecimal.LessThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10481       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is less than the second.</summary>
10482       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10483       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10484       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10485     </member>
10486     <member name="M:System.Data.SqlTypes.SqlDecimal.LessThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10487       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether the first is less than or equal to the second.</summary>
10488       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10489       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10490       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10491     </member>
10492     <member name="F:System.Data.SqlTypes.SqlDecimal.MaxPrecision">
10493       <summary>A constant representing the largest possible value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Precision" /> property.</summary>
10494     </member>
10495     <member name="F:System.Data.SqlTypes.SqlDecimal.MaxScale">
10496       <summary>A constant representing the maximum value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Scale" /> property.</summary>
10497     </member>
10498     <member name="F:System.Data.SqlTypes.SqlDecimal.MaxValue">
10499       <summary>A constant representing the maximum value of a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
10500     </member>
10501     <member name="F:System.Data.SqlTypes.SqlDecimal.MinValue">
10502       <summary>A constant representing the minimum value for a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
10503     </member>
10504     <member name="M:System.Data.SqlTypes.SqlDecimal.Multiply(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10505       <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters.</summary>
10506       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10507       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10508       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the product of the multiplication.</returns>
10509     </member>
10510     <member name="M:System.Data.SqlTypes.SqlDecimal.NotEquals(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10511       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether they are not equal.</summary>
10512       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10513       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10514       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10515     </member>
10516     <member name="F:System.Data.SqlTypes.SqlDecimal.Null">
10517       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> class.</summary>
10518     </member>
10519     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Addition(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10520       <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operators.</summary>
10521       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10522       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10523       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the sum.</returns>
10524     </member>
10525     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Division(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10526       <summary>The division operator calculates the results of dividing the first <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand by the second.</summary>
10527       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10528       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10529       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the results of the division.</returns>
10530     </member>
10531     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Equality(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10532       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operands to determine whether they are equal.</summary>
10533       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10534       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10535       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10536     </member>
10537     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlDecimal">
10538       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10539       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
10540       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
10541     </member>
10542     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Decimal">
10543       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Decimal" />.</summary>
10544       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
10545       <returns>A new <see langword="Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
10546     </member>
10547     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlDecimal">
10548       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10549       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
10550       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
10551     </member>
10552     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlDecimal">
10553       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10554       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
10555       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
10556     </member>
10557     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDecimal">
10558       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10559       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
10560       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
10561     </member>
10562     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Double)~System.Data.SqlTypes.SqlDecimal">
10563       <summary>Converts the <see cref="T:System.Double" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10564       <param name="x">The <see cref="T:System.Double" /> structure to be converted.</param>
10565       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value equals the value of the <see cref="T:System.Double" /> parameter.</returns>
10566     </member>
10567     <member name="M:System.Data.SqlTypes.SqlDecimal.op_GreaterThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10568       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is greater than the second.</summary>
10569       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10570       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10571       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10572     </member>
10573     <member name="M:System.Data.SqlTypes.SqlDecimal.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10574       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether the first is greater than or equal to the second.</summary>
10575       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10576       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10577       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10578     </member>
10579     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlDecimal">
10580       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10581       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
10582       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
10583     </member>
10584     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlDecimal">
10585       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" /></summary>
10586       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
10587       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
10588     </member>
10589     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlDecimal">
10590       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10591       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
10592       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
10593     </member>
10594     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlDecimal">
10595       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to SqlDecimal.</summary>
10596       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
10597       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
10598     </member>
10599     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlDecimal">
10600       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney" /> operand to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10601       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
10602       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
10603     </member>
10604     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlDecimal">
10605       <summary>Converts the <see cref="T:System.Decimal" /> value to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10606       <param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
10607       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see langword="Decimal" /> parameter.</returns>
10608     </member>
10609     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlDecimal">
10610       <summary>Converts the supplied <see cref="T:System.Int64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
10611       <param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
10612       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see cref="T:System.Int64" /> parameter.</returns>
10613     </member>
10614     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Inequality(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10615       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether they are not equal.</summary>
10616       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10617       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10618       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10619     </member>
10620     <member name="M:System.Data.SqlTypes.SqlDecimal.op_LessThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10621       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures to determine whether the first is less than the second.</summary>
10622       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10623       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10624       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10625     </member>
10626     <member name="M:System.Data.SqlTypes.SqlDecimal.op_LessThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10627       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters to determine whether the first is less than or equal to the second.</summary>
10628       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10629       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10630       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10631     </member>
10632     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Multiply(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10633       <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameters.</summary>
10634       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10635       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10636       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the product of the multiplication.</returns>
10637     </member>
10638     <member name="M:System.Data.SqlTypes.SqlDecimal.op_Subtraction(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10639       <summary>Calculates the results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand from the first.</summary>
10640       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10641       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10642       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value property contains the results of the subtraction.</returns>
10643     </member>
10644     <member name="M:System.Data.SqlTypes.SqlDecimal.op_UnaryNegation(System.Data.SqlTypes.SqlDecimal)">
10645       <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</summary>
10646       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be negated.</param>
10647       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value contains the results of the negation.</returns>
10648     </member>
10649     <member name="M:System.Data.SqlTypes.SqlDecimal.Parse(System.String)">
10650       <summary>Converts the <see cref="T:System.String" /> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent.</summary>
10651       <param name="s">The <see langword="String" /> to be parsed.</param>
10652       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
10653     </member>
10654     <member name="M:System.Data.SqlTypes.SqlDecimal.Power(System.Data.SqlTypes.SqlDecimal,System.Double)">
10655       <summary>Raises the value of the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to the specified exponential power.</summary>
10656       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be raised to a power.</param>
10657       <param name="exp">A double value that indicates the power to which the number should be raised.</param>
10658       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure that contains the results.</returns>
10659     </member>
10660     <member name="P:System.Data.SqlTypes.SqlDecimal.Precision">
10661       <summary>Gets the maximum number of digits used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</summary>
10662       <returns>The maximum number of digits used to represent the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10663     </member>
10664     <member name="M:System.Data.SqlTypes.SqlDecimal.Round(System.Data.SqlTypes.SqlDecimal,System.Int32)">
10665       <summary>Gets the number nearest the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value with the specified precision.</summary>
10666       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be rounded.</param>
10667       <param name="position">The number of significant fractional digits (precision) in the return value.</param>
10668       <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure that contains the results of the rounding operation.</returns>
10669     </member>
10670     <member name="P:System.Data.SqlTypes.SqlDecimal.Scale">
10671       <summary>Gets the number of decimal places to which <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is resolved.</summary>
10672       <returns>The number of decimal places to which the <see langword="Value" /> property is resolved.</returns>
10673     </member>
10674     <member name="M:System.Data.SqlTypes.SqlDecimal.Sign(System.Data.SqlTypes.SqlDecimal)">
10675       <summary>Gets a value that indicates the sign of a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</summary>
10676       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose sign is to be evaluated.</param>
10677       <returns>A number that indicates the sign of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10678     </member>
10679     <member name="M:System.Data.SqlTypes.SqlDecimal.Subtract(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
10680       <summary>Calculates the results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlDecimal" /> operand from the first.</summary>
10681       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10682       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10683       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value property contains the results of the subtraction.</returns>
10684     </member>
10685     <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#GetSchema">
10686       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10687       <returns>An <see langword="XmlSchema" />.</returns>
10688     </member>
10689     <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
10690       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10691       <param name="reader">
10692         <see langword="XmlReader" />
10693       </param>
10694     </member>
10695     <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
10696       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
10697       <param name="writer">
10698         <see langword="XmlWriter" />
10699       </param>
10700     </member>
10701     <member name="M:System.Data.SqlTypes.SqlDecimal.ToDouble">
10702       <summary>Returns the a double equal to the contents of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of this instance.</summary>
10703       <returns>The decimal representation of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
10704     </member>
10705     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlBoolean">
10706       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
10707       <returns>
10708         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
10709     </member>
10710     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlByte">
10711       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
10712       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure. If the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's Value is <see langword="true" />, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 0.</returns>
10713     </member>
10714     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlDouble">
10715       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10716       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10717     </member>
10718     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt16">
10719       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
10720       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10721     </member>
10722     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt32">
10723       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
10724       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10725     </member>
10726     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt64">
10727       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
10728       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10729     </member>
10730     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlMoney">
10731       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
10732       <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10733     </member>
10734     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlSingle">
10735       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
10736       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
10737     </member>
10738     <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlString">
10739       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
10740       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is a string representing the value contained in this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
10741     </member>
10742     <member name="M:System.Data.SqlTypes.SqlDecimal.ToString">
10743       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.String" />.</summary>
10744       <returns>A new <see cref="T:System.String" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
10745     </member>
10746     <member name="M:System.Data.SqlTypes.SqlDecimal.Truncate(System.Data.SqlTypes.SqlDecimal,System.Int32)">
10747       <summary>Truncates the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value to the that you want position.</summary>
10748       <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be truncated.</param>
10749       <param name="position">The decimal position to which the number will be truncated.</param>
10750       <returns>Supply a negative value for the <paramref name="position" /> parameter in order to truncate the value to the corresponding position to the left of the decimal point.</returns>
10751     </member>
10752     <member name="P:System.Data.SqlTypes.SqlDecimal.Value">
10753       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure. This property is read-only.</summary>
10754       <returns>A number in the range -79,228,162,514,264,337,593,543,950,335 through 79,228,162,514,162,514,264,337,593,543,950,335.</returns>
10755     </member>
10756     <member name="T:System.Data.SqlTypes.SqlDouble">
10757       <summary>Represents a floating-point number within the range of -1.79E +308 through 1.79E +308 to be stored in or retrieved from a database.</summary>
10758     </member>
10759     <member name="M:System.Data.SqlTypes.SqlDouble.#ctor(System.Double)">
10760       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure using the supplied double parameter to set the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property.</summary>
10761       <param name="value">A double whose value will be used for the new <see cref="T:System.Data.SqlTypes.SqlDouble" />.</param>
10762     </member>
10763     <member name="M:System.Data.SqlTypes.SqlDouble.Add(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10764       <summary>The addition operator computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
10765       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10766       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10767       <returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
10768     </member>
10769     <member name="M:System.Data.SqlTypes.SqlDouble.CompareTo(System.Data.SqlTypes.SqlDouble)">
10770       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> and returns an indication of their relative values.</summary>
10771       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> to be compared.</param>
10772       <returns>A signed number that indicates the relative values of the instance and the object.
10773   Return value  
10774   
10775   Condition  
10776   
10777   Less than zero  
10778   
10779   This instance is less than the object.  
10780   
10781   Zero  
10782   
10783   This instance is the same as the object.  
10784   
10785   Greater than zero  
10786   
10787   This instance is greater than the object  
10788   
10789  -or-  
10790   
10791  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
10792     </member>
10793     <member name="M:System.Data.SqlTypes.SqlDouble.CompareTo(System.Object)">
10794       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
10795       <param name="value">The <see cref="T:System.Object" /> to compare.</param>
10796       <returns>A signed number that indicates the relative values of the instance and the object.
10797   Return value  
10798   
10799   Condition  
10800   
10801   Less than zero  
10802   
10803   This instance is less than the object.  
10804   
10805   Zero  
10806   
10807   This instance is the same as the object.  
10808   
10809   Greater than zero  
10810   
10811   This instance is greater than the object  
10812   
10813  -or-  
10814   
10815  The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
10816     </member>
10817     <member name="M:System.Data.SqlTypes.SqlDouble.Divide(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10818       <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand by the second.</summary>
10819       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10820       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10821       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the results of the division operation.</returns>
10822     </member>
10823     <member name="M:System.Data.SqlTypes.SqlDouble.Equals(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10824       <summary>Performs a logical comparison on two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether they are equal.</summary>
10825       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10826       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10827       <returns>
10828         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
10829     </member>
10830     <member name="M:System.Data.SqlTypes.SqlDouble.Equals(System.Object)">
10831       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> object.</summary>
10832       <param name="value">The object to be compared.</param>
10833       <returns>
10834         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
10835     </member>
10836     <member name="M:System.Data.SqlTypes.SqlDouble.GetHashCode">
10837       <summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
10838       <returns>A 32-bit signed integer hash code.</returns>
10839     </member>
10840     <member name="M:System.Data.SqlTypes.SqlDouble.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
10841       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
10842       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
10843       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
10844     </member>
10845     <member name="M:System.Data.SqlTypes.SqlDouble.GreaterThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10846       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than the second.</summary>
10847       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10848       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10849       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10850     </member>
10851     <member name="M:System.Data.SqlTypes.SqlDouble.GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10852       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than or equal to the second.</summary>
10853       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10854       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10855       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10856     </member>
10857     <member name="P:System.Data.SqlTypes.SqlDouble.IsNull">
10858       <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlDouble" /> instance is null.</summary>
10859       <returns>
10860         <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is null. Otherwise, <see langword="false" />.</returns>
10861     </member>
10862     <member name="M:System.Data.SqlTypes.SqlDouble.LessThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10863       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than the second.</summary>
10864       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10865       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10866       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10867     </member>
10868     <member name="M:System.Data.SqlTypes.SqlDouble.LessThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10869       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than or equal to the second.</summary>
10870       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10871       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10872       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10873     </member>
10874     <member name="F:System.Data.SqlTypes.SqlDouble.MaxValue">
10875       <summary>A constant representing the maximum value for a <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
10876     </member>
10877     <member name="F:System.Data.SqlTypes.SqlDouble.MinValue">
10878       <summary>A constant representing the minimum possible value of <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10879     </member>
10880     <member name="M:System.Data.SqlTypes.SqlDouble.Multiply(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10881       <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
10882       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10883       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10884       <returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
10885     </member>
10886     <member name="M:System.Data.SqlTypes.SqlDouble.NotEquals(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10887       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether they are notequal.</summary>
10888       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10889       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10890       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10891     </member>
10892     <member name="F:System.Data.SqlTypes.SqlDouble.Null">
10893       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
10894     </member>
10895     <member name="M:System.Data.SqlTypes.SqlDouble.op_Addition(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10896       <summary>The addition operator computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
10897       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10898       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10899       <returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
10900     </member>
10901     <member name="M:System.Data.SqlTypes.SqlDouble.op_Division(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10902       <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand by the second.</summary>
10903       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10904       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10905       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the results of the division operation.</returns>
10906     </member>
10907     <member name="M:System.Data.SqlTypes.SqlDouble.op_Equality(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10908       <summary>Performs a logical comparison on two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether they are equal.</summary>
10909       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10910       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10911       <returns>
10912         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</returns>
10913     </member>
10914     <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlDouble">
10915       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10916       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to be converted.</param>
10917       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is either 0 or 1, depending on the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10918     </member>
10919     <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Double">
10920       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to double.</summary>
10921       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10922       <returns>A double equivalent to the specified <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
10923     </member>
10924     <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDouble">
10925       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10926       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
10927       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the value of the number represented by the <see cref="T:System.Data.SqlTypes.SqlString" />. If the <see cref="T:System.Data.SqlTypes.SqlString" /> is <see cref="F:System.Data.SqlTypes.SqlString.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10928     </member>
10929     <member name="M:System.Data.SqlTypes.SqlDouble.op_GreaterThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10930       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than the second.</summary>
10931       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10932       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10933       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10934     </member>
10935     <member name="M:System.Data.SqlTypes.SqlDouble.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10936       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is greater than or equal to the second.</summary>
10937       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10938       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10939       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10940     </member>
10941     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlDouble">
10942       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10943       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10944       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlByte" /> is <see cref="F:System.Data.SqlTypes.SqlByte.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10945     </member>
10946     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlDouble">
10947       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10948       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
10949       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is <see cref="F:System.Data.SqlTypes.SqlDecimal.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10950     </member>
10951     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlDouble">
10952       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10953       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
10954       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt16" /> is <see cref="F:System.Data.SqlTypes.SqlInt16.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10955     </member>
10956     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlDouble">
10957       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10958       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
10959       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt32" /> is <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10960     </member>
10961     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlDouble">
10962       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10963       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
10964       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt64" /> is <see cref="F:System.Data.SqlTypes.SqlInt64.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10965     </member>
10966     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlDouble">
10967       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10968       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
10969       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlMoney" /> is <see cref="F:System.Data.SqlTypes.SqlMoney.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10970     </member>
10971     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlDouble">
10972       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10973       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
10974       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlSingle" /> is <see cref="F:System.Data.SqlTypes.SqlSingle.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
10975     </member>
10976     <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Double)~System.Data.SqlTypes.SqlDouble">
10977       <summary>Converts the supplied double value to a <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
10978       <param name="x">The double value to convert.</param>
10979       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> with the same value as the specified double parameter.</returns>
10980     </member>
10981     <member name="M:System.Data.SqlTypes.SqlDouble.op_Inequality(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10982       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether they are not equal.</summary>
10983       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10984       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10985       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10986     </member>
10987     <member name="M:System.Data.SqlTypes.SqlDouble.op_LessThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10988       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than the second.</summary>
10989       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10990       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10991       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10992     </member>
10993     <member name="M:System.Data.SqlTypes.SqlDouble.op_LessThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
10994       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble" /> to determine whether the first is less than or equal to the second.</summary>
10995       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10996       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
10997       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
10998     </member>
10999     <member name="M:System.Data.SqlTypes.SqlDouble.op_Multiply(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
11000       <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</summary>
11001       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11002       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11003       <returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> operands.</returns>
11004     </member>
11005     <member name="M:System.Data.SqlTypes.SqlDouble.op_Subtraction(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
11006       <summary>The subtraction operator the second <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand from the first.</summary>
11007       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11008       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11009       <returns>The results of the subtraction operation.</returns>
11010     </member>
11011     <member name="M:System.Data.SqlTypes.SqlDouble.op_UnaryNegation(System.Data.SqlTypes.SqlDouble)">
11012       <summary>Returns the negated value of the specified <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
11013       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11014       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the negated value.</returns>
11015     </member>
11016     <member name="M:System.Data.SqlTypes.SqlDouble.Parse(System.String)">
11017       <summary>Converts the <see cref="T:System.String" /> representation of a number to its double-precision floating point number equivalent.</summary>
11018       <param name="s">The <see langword="String" /> to be parsed.</param>
11019       <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> that contains the value represented by the <see langword="String" />.</returns>
11020     </member>
11021     <member name="M:System.Data.SqlTypes.SqlDouble.Subtract(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
11022       <summary>The subtraction operator the second <see cref="T:System.Data.SqlTypes.SqlDouble" /> operand from the first.</summary>
11023       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11024       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11025       <returns>The results of the subtraction operation.</returns>
11026     </member>
11027     <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#GetSchema">
11028       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11029       <returns>An XML schema consumed by .NET Framework.</returns>
11030     </member>
11031     <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
11032       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11033       <param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
11034     </member>
11035     <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
11036       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11037       <param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
11038     </member>
11039     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlBoolean">
11040       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
11041       <returns>A <see langword="SqlBoolean" /> structure whose <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is non-zero, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> is zero and <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure is <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
11042     </member>
11043     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlByte">
11044       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
11045       <returns>A <see langword="SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</returns>
11046     </member>
11047     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlDecimal">
11048       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
11049       <returns>A new <see langword="SqlDecimal" /> structure whose converted value equals the rounded value of this <see langword="SqlDouble" />.</returns>
11050     </member>
11051     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt16">
11052       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11053       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
11054     </member>
11055     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt32">
11056       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11057       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
11058     </member>
11059     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt64">
11060       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
11061       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
11062     </member>
11063     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlMoney">
11064       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
11065       <returns>A new <see langword="SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> is equal to the value of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
11066     </member>
11067     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlSingle">
11068       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
11069       <returns>A new <see langword="SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
11070     </member>
11071     <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlString">
11072       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
11073       <returns>A <see langword="SqlString" /> representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
11074     </member>
11075     <member name="M:System.Data.SqlTypes.SqlDouble.ToString">
11076       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to a string.</summary>
11077       <returns>A string representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
11078     </member>
11079     <member name="P:System.Data.SqlTypes.SqlDouble.Value">
11080       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure. This property is read-only.</summary>
11081       <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</returns>
11082     </member>
11083     <member name="F:System.Data.SqlTypes.SqlDouble.Zero">
11084       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
11085     </member>
11086     <member name="T:System.Data.SqlTypes.SqlGuid">
11087       <summary>Represents a GUID to be stored in or retrieved from a database.</summary>
11088     </member>
11089     <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.Byte[])">
11090       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure using the supplied byte array parameter.</summary>
11091       <param name="value">A byte array.</param>
11092     </member>
11093     <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.Guid)">
11094       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure using the specified <see cref="T:System.Guid" /> parameter.</summary>
11095       <param name="g">A <see cref="T:System.Guid" /></param>
11096     </member>
11097     <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.Int32,System.Int16,System.Int16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
11098       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure using the specified values.</summary>
11099       <param name="a">The first four bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11100       <param name="b">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11101       <param name="c">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11102       <param name="d">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11103       <param name="e">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11104       <param name="f">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11105       <param name="g">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11106       <param name="h">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11107       <param name="i">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11108       <param name="j">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11109       <param name="k">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
11110     </member>
11111     <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.String)">
11112       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure using the specified <see cref="T:System.String" /> parameter.</summary>
11113       <param name="s">A <see cref="T:System.String" /> object.</param>
11114     </member>
11115     <member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Data.SqlTypes.SqlGuid)">
11116       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlGuid" /> and returns an indication of their relative values. Compares more than the last 6 bytes, but treats the last 6 bytes as the most significant ones in comparisons.</summary>
11117       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> to be compared.</param>
11118       <returns>A signed number that indicates the relative values of the instance and the object.
11119   Return Value  
11120   
11121   Condition  
11122   
11123   Less than zero  
11124   
11125   This instance is less than object.  
11126   
11127   Zero  
11128   
11129   This instance is the same as object.  
11130   
11131   Greater than zero  
11132   
11133   This instance is greater than object  
11134   
11135  -or-  
11136   
11137  object is a null reference (<see langword="Nothing" />).</returns>
11138     </member>
11139     <member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Object)">
11140       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to the supplied object and returns an indication of their relative values. Compares more than the last 6 bytes, but treats the last 6 bytes as the most significant ones in comparisons.</summary>
11141       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
11142       <returns>A signed number that indicates the relative values of the instance and the object.
11143   Return Value  
11144   
11145   Condition  
11146   
11147   Less than zero  
11148   
11149   This instance is less than object.  
11150   
11151   Zero  
11152   
11153   This instance is the same as object.  
11154   
11155   Greater than zero  
11156   
11157   This instance is greater than object  
11158   
11159  -or-  
11160   
11161  object is a null reference (<see langword="Nothing" />)</returns>
11162     </member>
11163     <member name="M:System.Data.SqlTypes.SqlGuid.Equals(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11164       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlGuid" /> structures to determine whether they are equal.</summary>
11165       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11166       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11167       <returns>
11168         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlGuid" /> will be null.</returns>
11169     </member>
11170     <member name="M:System.Data.SqlTypes.SqlGuid.Equals(System.Object)">
11171       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> object.</summary>
11172       <param name="value">The object to be compared.</param>
11173       <returns>
11174         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> and the two are equal; otherwise <see langword="false" />.</returns>
11175     </member>
11176     <member name="M:System.Data.SqlTypes.SqlGuid.GetHashCode">
11177       <summary>Returns the hash code of this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</summary>
11178       <returns>A 32-bit signed integer hash code.</returns>
11179     </member>
11180     <member name="M:System.Data.SqlTypes.SqlGuid.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
11181       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
11182       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
11183       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
11184     </member>
11185     <member name="M:System.Data.SqlTypes.SqlGuid.GreaterThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11186       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is greater than the second.</summary>
11187       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11188       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11189       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11190     </member>
11191     <member name="M:System.Data.SqlTypes.SqlGuid.GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11192       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is greater than or equal to the second.</summary>
11193       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11194       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11195       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11196     </member>
11197     <member name="P:System.Data.SqlTypes.SqlGuid.IsNull">
11198       <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure is null.</summary>
11199       <returns>
11200         <see langword="true" /> if <see langword="null" />. Otherwise, <see langword="false" />.</returns>
11201     </member>
11202     <member name="M:System.Data.SqlTypes.SqlGuid.LessThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11203       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is less than the second.</summary>
11204       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11205       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11206       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11207     </member>
11208     <member name="M:System.Data.SqlTypes.SqlGuid.LessThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11209       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is less than or equal to the second.</summary>
11210       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11211       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11212       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11213     </member>
11214     <member name="M:System.Data.SqlTypes.SqlGuid.NotEquals(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11215       <summary>Performs a logical comparison on two <see cref="T:System.Data.SqlTypes.SqlGuid" /> structures to determine whether they are not equal.</summary>
11216       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11217       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11218       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11219     </member>
11220     <member name="F:System.Data.SqlTypes.SqlGuid.Null">
11221       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</summary>
11222     </member>
11223     <member name="M:System.Data.SqlTypes.SqlGuid.op_Equality(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11224       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlGuid" /> structures to determine whether they are equal.</summary>
11225       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11226       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11227       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11228     </member>
11229     <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Data.SqlTypes.SqlGuid">
11230       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlBinary" /> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
11231       <param name="x">A <see langword="SqlBinary" /> object.</param>
11232       <returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> parameter.</returns>
11233     </member>
11234     <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Guid">
11235       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlGuid" /> parameter to <see cref="T:System.Guid" />.</summary>
11236       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11237       <returns>A new <see cref="T:System.Guid" /> equal to the <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
11238     </member>
11239     <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlGuid">
11240       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
11241       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
11242       <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
11243     </member>
11244     <member name="M:System.Data.SqlTypes.SqlGuid.op_GreaterThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11245       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is greater than the second.</summary>
11246       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11247       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11248       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11249     </member>
11250     <member name="M:System.Data.SqlTypes.SqlGuid.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11251       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is greater than or equal to the second.</summary>
11252       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11253       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11254       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11255     </member>
11256     <member name="M:System.Data.SqlTypes.SqlGuid.op_Implicit(System.Guid)~System.Data.SqlTypes.SqlGuid">
11257       <summary>Converts the supplied <see cref="T:System.Guid" /> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
11258       <param name="x">A <see cref="T:System.Guid" />.</param>
11259       <returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is equal to the <see cref="T:System.Guid" /> parameter.</returns>
11260     </member>
11261     <member name="M:System.Data.SqlTypes.SqlGuid.op_Inequality(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11262       <summary>Performs a logical comparison on two <see cref="T:System.Data.SqlTypes.SqlGuid" /> structures to determine whether they are not equal.</summary>
11263       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11264       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11265       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11266     </member>
11267     <member name="M:System.Data.SqlTypes.SqlGuid.op_LessThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11268       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is less than the second.</summary>
11269       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11270       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11271       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11272     </member>
11273     <member name="M:System.Data.SqlTypes.SqlGuid.op_LessThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
11274       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid" /> to determine whether the first is less than or equal to the second.</summary>
11275       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11276       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
11277       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11278     </member>
11279     <member name="M:System.Data.SqlTypes.SqlGuid.Parse(System.String)">
11280       <summary>Converts the specified <see cref="T:System.String" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
11281       <param name="s">The <see langword="String" /> to be parsed.</param>
11282       <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
11283     </member>
11284     <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#GetSchema">
11285       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11286       <returns>An <see langword="XmlSchema" />.</returns>
11287     </member>
11288     <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
11289       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11290       <param name="reader">
11291         <see langword="XmlReader" />
11292       </param>
11293     </member>
11294     <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
11295       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11296       <param name="writer">
11297         <see langword="XmlWriter" />
11298       </param>
11299     </member>
11300     <member name="M:System.Data.SqlTypes.SqlGuid.ToByteArray">
11301       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to a byte array.</summary>
11302       <returns>An array of bytes representing the <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
11303     </member>
11304     <member name="M:System.Data.SqlTypes.SqlGuid.ToSqlBinary">
11305       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to <see cref="T:System.Data.SqlTypes.SqlBinary" />.</summary>
11306       <returns>A <see langword="SqlBinary" /> structure that contains the bytes in the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
11307     </member>
11308     <member name="M:System.Data.SqlTypes.SqlGuid.ToSqlString">
11309       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
11310       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
11311     </member>
11312     <member name="M:System.Data.SqlTypes.SqlGuid.ToString">
11313       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to a <see cref="T:System.String" />.</summary>
11314       <returns>A <see cref="T:System.String" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
11315     </member>
11316     <member name="P:System.Data.SqlTypes.SqlGuid.Value">
11317       <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure. This property is read-only.</summary>
11318       <returns>A <see cref="T:System.Guid" /> structure.</returns>
11319     </member>
11320     <member name="T:System.Data.SqlTypes.SqlInt16">
11321       <summary>Represents a 16-bit signed integer to be stored in or retrieved from a database.</summary>
11322     </member>
11323     <member name="M:System.Data.SqlTypes.SqlInt16.#ctor(System.Int16)">
11324       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure using the supplied short integer parameter.</summary>
11325       <param name="value">A short integer.</param>
11326     </member>
11327     <member name="M:System.Data.SqlTypes.SqlInt16.Add(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11328       <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11329       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11330       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11331       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</returns>
11332     </member>
11333     <member name="M:System.Data.SqlTypes.SqlInt16.BitwiseAnd(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11334       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11335       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11336       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11337       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise AND.</returns>
11338     </member>
11339     <member name="M:System.Data.SqlTypes.SqlInt16.BitwiseOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11340       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11341       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11342       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11343       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise OR.</returns>
11344     </member>
11345     <member name="M:System.Data.SqlTypes.SqlInt16.CompareTo(System.Data.SqlTypes.SqlInt16)">
11346       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> and returns an indication of their relative values.</summary>
11347       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> to be compared.</param>
11348       <returns>A signed number that indicates the relative values of the instance and the object.
11349   Return value  
11350   
11351   Condition  
11352   
11353   Less than zero  
11354   
11355   This instance is less than the object.  
11356   
11357   Zero  
11358   
11359   This instance is the same as the object.  
11360   
11361   Greater than zero  
11362   
11363   This instance is greater than the object  
11364   
11365  -or-  
11366   
11367  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
11368     </member>
11369     <member name="M:System.Data.SqlTypes.SqlInt16.CompareTo(System.Object)">
11370       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
11371       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
11372       <returns>A signed number that indicates the relative values of the instance and the object.
11373   Return value  
11374   
11375   Condition  
11376   
11377   Less than zero  
11378   
11379   This instance is less than the object.  
11380   
11381   Zero  
11382   
11383   This instance is the same as the object.  
11384   
11385   Greater than zero  
11386   
11387   This instance is greater than the object  
11388   
11389  -or-  
11390   
11391  object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
11392     </member>
11393     <member name="M:System.Data.SqlTypes.SqlInt16.Divide(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11394       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand by the second.</summary>
11395       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11396       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11397       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the division.</returns>
11398     </member>
11399     <member name="M:System.Data.SqlTypes.SqlInt16.Equals(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11400       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether they are equal.</summary>
11401       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11402       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11403       <returns>
11404         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt16" /> will be null.</returns>
11405     </member>
11406     <member name="M:System.Data.SqlTypes.SqlInt16.Equals(System.Object)">
11407       <summary>Compares the specified object to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> object.</summary>
11408       <param name="value">The object to be compared.</param>
11409       <returns>
11410         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> and the two are equal; otherwise <see langword="false" />.</returns>
11411     </member>
11412     <member name="M:System.Data.SqlTypes.SqlInt16.GetHashCode">
11413       <summary>Returns the hash code for this instance.</summary>
11414       <returns>A 32-bit signed integer hash code.</returns>
11415     </member>
11416     <member name="M:System.Data.SqlTypes.SqlInt16.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
11417       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
11418       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
11419       <returns>A <see cref="T:System.String" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
11420     </member>
11421     <member name="M:System.Data.SqlTypes.SqlInt16.GreaterThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11422       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is greater than the second.</summary>
11423       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11424       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11425       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11426     </member>
11427     <member name="M:System.Data.SqlTypes.SqlInt16.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11428       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether the first is greater than or equal to the second.</summary>
11429       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11430       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11431       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11432     </member>
11433     <member name="P:System.Data.SqlTypes.SqlInt16.IsNull">
11434       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure is null.</summary>
11435       <returns>
11436         <see langword="true" /> if null. Otherwise, <see langword="false" />. For more information, see Handling Null Values.</returns>
11437     </member>
11438     <member name="M:System.Data.SqlTypes.SqlInt16.LessThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11439       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is less than the second.</summary>
11440       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11441       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11442       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11443     </member>
11444     <member name="M:System.Data.SqlTypes.SqlInt16.LessThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11445       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether the first is less than or equal to the second.</summary>
11446       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11447       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11448       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11449     </member>
11450     <member name="F:System.Data.SqlTypes.SqlInt16.MaxValue">
11451       <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11452     </member>
11453     <member name="F:System.Data.SqlTypes.SqlInt16.MinValue">
11454       <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11455     </member>
11456     <member name="M:System.Data.SqlTypes.SqlInt16.Mod(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11457       <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand by its second.</summary>
11458       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11459       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11460       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the remainder.</returns>
11461     </member>
11462     <member name="M:System.Data.SqlTypes.SqlInt16.Modulus(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11463       <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt16" /> values and returns the remainder.</summary>
11464       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> value.</param>
11465       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> value.</param>
11466       <returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</returns>
11467     </member>
11468     <member name="M:System.Data.SqlTypes.SqlInt16.Multiply(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11469       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameters.</summary>
11470       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11471       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11472       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the product of the two parameters.</returns>
11473     </member>
11474     <member name="M:System.Data.SqlTypes.SqlInt16.NotEquals(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11475       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether they are not equal.</summary>
11476       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11477       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11478       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11479     </member>
11480     <member name="F:System.Data.SqlTypes.SqlInt16.Null">
11481       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
11482     </member>
11483     <member name="M:System.Data.SqlTypes.SqlInt16.OnesComplement(System.Data.SqlTypes.SqlInt16)">
11484       <summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
11485       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11486       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11487     </member>
11488     <member name="M:System.Data.SqlTypes.SqlInt16.op_Addition(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11489       <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11490       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11491       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11492       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</returns>
11493     </member>
11494     <member name="M:System.Data.SqlTypes.SqlInt16.op_BitwiseAnd(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11495       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11496       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11497       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11498       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise AND.</returns>
11499     </member>
11500     <member name="M:System.Data.SqlTypes.SqlInt16.op_BitwiseOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11501       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</summary>
11502       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11503       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11504       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise OR.</returns>
11505     </member>
11506     <member name="M:System.Data.SqlTypes.SqlInt16.op_Division(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11507       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand by the second.</summary>
11508       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11509       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11510       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the division.</returns>
11511     </member>
11512     <member name="M:System.Data.SqlTypes.SqlInt16.op_Equality(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11513       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether they are equal.</summary>
11514       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11515       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11516       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11517     </member>
11518     <member name="M:System.Data.SqlTypes.SqlInt16.op_ExclusiveOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11519       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
11520       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11521       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11522       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise XOR.</returns>
11523     </member>
11524     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt16">
11525       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11526       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
11527       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
11528     </member>
11529     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt16">
11530       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11531       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
11532       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
11533     </member>
11534     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt16">
11535       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11536       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11537       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
11538     </member>
11539     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Int16">
11540       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to a short integer.</summary>
11541       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11542       <returns>A short integer whose value is the Value of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
11543     </member>
11544     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlInt16">
11545       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11546       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11547       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
11548     </member>
11549     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlInt16">
11550       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11551       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
11552       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
11553     </member>
11554     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt16">
11555       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11556       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
11557       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
11558     </member>
11559     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt16">
11560       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11561       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
11562       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
11563     </member>
11564     <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlInt16">
11565       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> object to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11566       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
11567       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> object parameter.</returns>
11568     </member>
11569     <member name="M:System.Data.SqlTypes.SqlInt16.op_GreaterThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11570       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is greater than the second.</summary>
11571       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11572       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11573       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11574     </member>
11575     <member name="M:System.Data.SqlTypes.SqlInt16.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11576       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether the first is greater than or equal to the second.</summary>
11577       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11578       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11579       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11580     </member>
11581     <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt16">
11582       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11583       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
11584       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
11585     </member>
11586     <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Int16)~System.Data.SqlTypes.SqlInt16">
11587       <summary>Converts the supplied short integer to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
11588       <param name="x">A short integer value.</param>
11589       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure with the same value as the specified short integer.</returns>
11590     </member>
11591     <member name="M:System.Data.SqlTypes.SqlInt16.op_Inequality(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11592       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether they are not equal.</summary>
11593       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11594       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11595       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11596     </member>
11597     <member name="M:System.Data.SqlTypes.SqlInt16.op_LessThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11598       <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16" /> to determine whether the first is less than the second.</summary>
11599       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11600       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11601       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11602     </member>
11603     <member name="M:System.Data.SqlTypes.SqlInt16.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11604       <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16" /> structures to determine whether the first is less than or equal to the second.</summary>
11605       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11606       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11607       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11608     </member>
11609     <member name="M:System.Data.SqlTypes.SqlInt16.op_Modulus(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11610       <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand by its second.</summary>
11611       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11612       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11613       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the remainder.</returns>
11614     </member>
11615     <member name="M:System.Data.SqlTypes.SqlInt16.op_Multiply(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11616       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameters.</summary>
11617       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11618       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11619       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the product of the two parameters.</returns>
11620     </member>
11621     <member name="M:System.Data.SqlTypes.SqlInt16.op_OnesComplement(System.Data.SqlTypes.SqlInt16)">
11622       <summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
11623       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11624       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11625     </member>
11626     <member name="M:System.Data.SqlTypes.SqlInt16.op_Subtraction(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11627       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter from the first.</summary>
11628       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11629       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11630       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the subtraction.</returns>
11631     </member>
11632     <member name="M:System.Data.SqlTypes.SqlInt16.op_UnaryNegation(System.Data.SqlTypes.SqlInt16)">
11633       <summary>The unary minus operator negates the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand.</summary>
11634       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11635       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure that contains the negated value.</returns>
11636     </member>
11637     <member name="M:System.Data.SqlTypes.SqlInt16.Parse(System.String)">
11638       <summary>Converts the <see cref="T:System.String" /> representation of a number to its 16-bit signed integer equivalent.</summary>
11639       <param name="s">The <see langword="String" /> to be parsed.</param>
11640       <returns>A 16-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
11641     </member>
11642     <member name="M:System.Data.SqlTypes.SqlInt16.Subtract(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11643       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter from the first.</summary>
11644       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11645       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11646       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the subtraction.</returns>
11647     </member>
11648     <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#GetSchema">
11649       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11650       <returns>An XML schema consumed by .NET Framework.</returns>
11651     </member>
11652     <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
11653       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11654       <param name="reader">
11655         <see langword="XmlReader" />
11656       </param>
11657     </member>
11658     <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
11659       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
11660       <param name="writer">
11661         <see langword="XmlWriter" />
11662       </param>
11663     </member>
11664     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlBoolean">
11665       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
11666       <returns>
11667         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
11668     </member>
11669     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlByte">
11670       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
11671       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> is less than 0 or greater than 255, an <see cref="T:System.OverflowException" /> occurs.</returns>
11672     </member>
11673     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDecimal">
11674       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
11675       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11676     </member>
11677     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDouble">
11678       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
11679       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11680     </member>
11681     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt32">
11682       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11683       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11684     </member>
11685     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt64">
11686       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
11687       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11688     </member>
11689     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlMoney">
11690       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
11691       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11692     </member>
11693     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlSingle">
11694       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
11695       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11696     </member>
11697     <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlString">
11698       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
11699       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
11700     </member>
11701     <member name="M:System.Data.SqlTypes.SqlInt16.ToString">
11702       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.String" />.</summary>
11703       <returns>A <see cref="T:System.String" /> object representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
11704     </member>
11705     <member name="P:System.Data.SqlTypes.SqlInt16.Value">
11706       <summary>Gets the value of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure. This property is read-only.</summary>
11707       <returns>A short integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
11708     </member>
11709     <member name="M:System.Data.SqlTypes.SqlInt16.Xor(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
11710       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
11711       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11712       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11713       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure that contains the results of the XOR operation.</returns>
11714     </member>
11715     <member name="F:System.Data.SqlTypes.SqlInt16.Zero">
11716       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
11717     </member>
11718     <member name="T:System.Data.SqlTypes.SqlInt32">
11719       <summary>Represents a 32-bit signed integer to be stored in or retrieved from a database.</summary>
11720     </member>
11721     <member name="M:System.Data.SqlTypes.SqlInt32.#ctor(System.Int32)">
11722       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure using the supplied integer value.</summary>
11723       <param name="value">The integer to be converted.</param>
11724     </member>
11725     <member name="M:System.Data.SqlTypes.SqlInt32.Add(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11726       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
11727       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11728       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11729       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</returns>
11730     </member>
11731     <member name="M:System.Data.SqlTypes.SqlInt32.BitwiseAnd(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11732       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt32" /> operands.</summary>
11733       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11734       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11735       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise AND operation.</returns>
11736     </member>
11737     <member name="M:System.Data.SqlTypes.SqlInt32.BitwiseOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11738       <summary>Computes the bitwise OR of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
11739       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11740       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11741       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise OR operation.</returns>
11742     </member>
11743     <member name="M:System.Data.SqlTypes.SqlInt32.CompareTo(System.Data.SqlTypes.SqlInt32)">
11744       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> and returns an indication of their relative values.</summary>
11745       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> to be compared.</param>
11746       <returns>A signed number that indicates the relative values of the instance and the object.
11747   Return value  
11748   
11749   Condition  
11750   
11751   Less than zero  
11752   
11753   This instance is less than the object.  
11754   
11755   Zero  
11756   
11757   This instance is the same as the object.  
11758   
11759   Greater than zero  
11760   
11761   This instance is greater than the object  
11762   
11763  -or-  
11764   
11765  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
11766     </member>
11767     <member name="M:System.Data.SqlTypes.SqlInt32.CompareTo(System.Object)">
11768       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
11769       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
11770       <returns>A signed number that indicates the relative values of the instance and the object.
11771   Return value  
11772   
11773   Condition  
11774   
11775   Less than zero  
11776   
11777   This instance is less than the object.  
11778   
11779   Zero  
11780   
11781   This instance is the same as the object.  
11782   
11783   Greater than zero  
11784   
11785   This instance is greater than the object  
11786   
11787  -or-  
11788   
11789  The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
11790     </member>
11791     <member name="M:System.Data.SqlTypes.SqlInt32.Divide(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11792       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the second.</summary>
11793       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11794       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11795       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the division.</returns>
11796     </member>
11797     <member name="M:System.Data.SqlTypes.SqlInt32.Equals(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11798       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether they are equal.</summary>
11799       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11800       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11801       <returns>
11802         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt32" /> will be null.</returns>
11803     </member>
11804     <member name="M:System.Data.SqlTypes.SqlInt32.Equals(System.Object)">
11805       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> object.</summary>
11806       <param name="value">The object to be compared.</param>
11807       <returns>
11808         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> and the two are equal; otherwise <see langword="false" />.</returns>
11809     </member>
11810     <member name="M:System.Data.SqlTypes.SqlInt32.GetHashCode">
11811       <summary>Returns the hash code for this instance.</summary>
11812       <returns>A 32-bit signed integer hash code.</returns>
11813     </member>
11814     <member name="M:System.Data.SqlTypes.SqlInt32.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
11815       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
11816       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
11817       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
11818     </member>
11819     <member name="M:System.Data.SqlTypes.SqlInt32.GreaterThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11820       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than the second.</summary>
11821       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11822       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11823       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11824     </member>
11825     <member name="M:System.Data.SqlTypes.SqlInt32.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11826       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than or equal to the second.</summary>
11827       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11828       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11829       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11830     </member>
11831     <member name="P:System.Data.SqlTypes.SqlInt32.IsNull">
11832       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure is null.</summary>
11833       <returns>This property is <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> is null. Otherwise, <see langword="false" />.</returns>
11834     </member>
11835     <member name="M:System.Data.SqlTypes.SqlInt32.LessThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11836       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than the second.</summary>
11837       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11838       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11839       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11840     </member>
11841     <member name="M:System.Data.SqlTypes.SqlInt32.LessThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11842       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than or equal to the second.</summary>
11843       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11844       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11845       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11846     </member>
11847     <member name="F:System.Data.SqlTypes.SqlInt32.MaxValue">
11848       <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11849     </member>
11850     <member name="F:System.Data.SqlTypes.SqlInt32.MinValue">
11851       <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11852     </member>
11853     <member name="M:System.Data.SqlTypes.SqlInt32.Mod(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11854       <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter by the second.</summary>
11855       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11856       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11857       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the remainder.</returns>
11858     </member>
11859     <member name="M:System.Data.SqlTypes.SqlInt32.Modulus(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11860       <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt32" /> values and returns the remainder.</summary>
11861       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> value.</param>
11862       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> value.</param>
11863       <returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</returns>
11864     </member>
11865     <member name="M:System.Data.SqlTypes.SqlInt32.Multiply(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11866       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters.</summary>
11867       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11868       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11869       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the product of the two parameters.</returns>
11870     </member>
11871     <member name="M:System.Data.SqlTypes.SqlInt32.NotEquals(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11872       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether they are not equal.</summary>
11873       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11874       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11875       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11876     </member>
11877     <member name="F:System.Data.SqlTypes.SqlInt32.Null">
11878       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> class.</summary>
11879     </member>
11880     <member name="M:System.Data.SqlTypes.SqlInt32.OnesComplement(System.Data.SqlTypes.SqlInt32)">
11881       <summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
11882       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11883       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the one's complement operation.</returns>
11884     </member>
11885     <member name="M:System.Data.SqlTypes.SqlInt32.op_Addition(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11886       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
11887       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11888       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11889       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</returns>
11890     </member>
11891     <member name="M:System.Data.SqlTypes.SqlInt32.op_BitwiseAnd(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11892       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt32" /> operands.</summary>
11893       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11894       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11895       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise AND operation.</returns>
11896     </member>
11897     <member name="M:System.Data.SqlTypes.SqlInt32.op_BitwiseOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11898       <summary>Computes the bitwise OR of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
11899       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11900       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11901       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise OR operation.</returns>
11902     </member>
11903     <member name="M:System.Data.SqlTypes.SqlInt32.op_Division(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11904       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the second.</summary>
11905       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11906       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11907       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the division.</returns>
11908     </member>
11909     <member name="M:System.Data.SqlTypes.SqlInt32.op_Equality(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11910       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether they are equal.</summary>
11911       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11912       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11913       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11914     </member>
11915     <member name="M:System.Data.SqlTypes.SqlInt32.op_ExclusiveOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11916       <summary>Performs a bitwise exclusive-OR operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
11917       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11918       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11919       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise XOR operation.</returns>
11920     </member>
11921     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt32">
11922       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11923       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
11924       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
11925     </member>
11926     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt32">
11927       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11928       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
11929       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
11930     </member>
11931     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt32">
11932       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11933       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
11934       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
11935     </member>
11936     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Int32">
11937       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to an integer.</summary>
11938       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11939       <returns>The converted integer value.</returns>
11940     </member>
11941     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlInt32">
11942       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11943       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
11944       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see langword="SqlInt64" /> parameter.</returns>
11945     </member>
11946     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt32">
11947       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11948       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
11949       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
11950     </member>
11951     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt32">
11952       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11953       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
11954       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
11955     </member>
11956     <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlInt32">
11957       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> object to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11958       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
11959       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
11960     </member>
11961     <member name="M:System.Data.SqlTypes.SqlInt32.op_GreaterThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11962       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than the second.</summary>
11963       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11964       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11965       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11966     </member>
11967     <member name="M:System.Data.SqlTypes.SqlInt32.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11968       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is greater than or equal to the second.</summary>
11969       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11970       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11971       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11972     </member>
11973     <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt32">
11974       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> property to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11975       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
11976       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
11977     </member>
11978     <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlInt32">
11979       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11980       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
11981       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
11982     </member>
11983     <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Int32)~System.Data.SqlTypes.SqlInt32">
11984       <summary>Converts the supplied integer to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
11985       <param name="x">An integer value.</param>
11986       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose Value property is equal to the integer parameter.</returns>
11987     </member>
11988     <member name="M:System.Data.SqlTypes.SqlInt32.op_Inequality(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11989       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether they are not equal.</summary>
11990       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11991       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11992       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11993     </member>
11994     <member name="M:System.Data.SqlTypes.SqlInt32.op_LessThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
11995       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than the second.</summary>
11996       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11997       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
11998       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
11999     </member>
12000     <member name="M:System.Data.SqlTypes.SqlInt32.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12001       <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters to determine whether the first is less than or equal to the second.</summary>
12002       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12003       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12004       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12005     </member>
12006     <member name="M:System.Data.SqlTypes.SqlInt32.op_Modulus(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12007       <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter by the second.</summary>
12008       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12009       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12010       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the remainder.</returns>
12011     </member>
12012     <member name="M:System.Data.SqlTypes.SqlInt32.op_Multiply(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12013       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameters.</summary>
12014       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12015       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12016       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the product of the two parameters.</returns>
12017     </member>
12018     <member name="M:System.Data.SqlTypes.SqlInt32.op_OnesComplement(System.Data.SqlTypes.SqlInt32)">
12019       <summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
12020       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12021       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the one's complement operation.</returns>
12022     </member>
12023     <member name="M:System.Data.SqlTypes.SqlInt32.op_Subtraction(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12024       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the first.</summary>
12025       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12026       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12027       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the subtraction.</returns>
12028     </member>
12029     <member name="M:System.Data.SqlTypes.SqlInt32.op_UnaryNegation(System.Data.SqlTypes.SqlInt32)">
12030       <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> operand.</summary>
12031       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12032       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the negated value.</returns>
12033     </member>
12034     <member name="M:System.Data.SqlTypes.SqlInt32.Parse(System.String)">
12035       <summary>Converts the <see cref="T:System.String" /> representation of a number to its 32-bit signed integer equivalent.</summary>
12036       <param name="s">The <see cref="T:System.String" /> to be parsed.</param>
12037       <returns>A 32-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
12038     </member>
12039     <member name="M:System.Data.SqlTypes.SqlInt32.Subtract(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12040       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the first.</summary>
12041       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12042       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12043       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the subtraction.</returns>
12044     </member>
12045     <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#GetSchema">
12046       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12047       <returns>An <see langword="XmlSchema" />.</returns>
12048     </member>
12049     <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
12050       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12051       <param name="reader">
12052         <see langword="XmlReader" />
12053       </param>
12054     </member>
12055     <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
12056       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12057       <param name="writer">
12058         <see langword="XmlWriter" />
12059       </param>
12060     </member>
12061     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlBoolean">
12062       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
12063       <returns>
12064         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
12065     </member>
12066     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlByte">
12067       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
12068       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure. If the value of the <see langword="SqlInt32" /> is less than 0 or greater than 255, an <see cref="T:System.OverflowException" /> occurs.</returns>
12069     </member>
12070     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDecimal">
12071       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
12072       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12073     </member>
12074     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDouble">
12075       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
12076       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12077     </member>
12078     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt16">
12079       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
12080       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12081     </member>
12082     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt64">
12083       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12084       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12085     </member>
12086     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlMoney">
12087       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12088       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12089     </member>
12090     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlSingle">
12091       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
12092       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12093     </member>
12094     <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlString">
12095       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
12096       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12097     </member>
12098     <member name="M:System.Data.SqlTypes.SqlInt32.ToString">
12099       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to a <see cref="T:System.String" />.</summary>
12100       <returns>A <see cref="T:System.String" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
12101     </member>
12102     <member name="P:System.Data.SqlTypes.SqlInt32.Value">
12103       <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure. This property is read-only.</summary>
12104       <returns>An integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</returns>
12105       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property contains <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />.</exception>
12106     </member>
12107     <member name="M:System.Data.SqlTypes.SqlInt32.Xor(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
12108       <summary>Performs a bitwise exclusive-OR operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
12109       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12110       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
12111       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise XOR operation.</returns>
12112     </member>
12113     <member name="F:System.Data.SqlTypes.SqlInt32.Zero">
12114       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
12115     </member>
12116     <member name="T:System.Data.SqlTypes.SqlInt64">
12117       <summary>Represents a 64-bit signed integer to be stored in or retrieved from a database.</summary>
12118     </member>
12119     <member name="M:System.Data.SqlTypes.SqlInt64.#ctor(System.Int64)">
12120       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure using the supplied long integer.</summary>
12121       <param name="value">A long integer.</param>
12122     </member>
12123     <member name="M:System.Data.SqlTypes.SqlInt64.Add(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12124       <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</summary>
12125       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12126       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12127       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
12128     </member>
12129     <member name="M:System.Data.SqlTypes.SqlInt64.BitwiseAnd(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12130       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operands.</summary>
12131       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12132       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12133       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise AND operation.</returns>
12134     </member>
12135     <member name="M:System.Data.SqlTypes.SqlInt64.BitwiseOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12136       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt64" /> operands.</summary>
12137       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12138       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12139       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise OR operation.</returns>
12140     </member>
12141     <member name="M:System.Data.SqlTypes.SqlInt64.CompareTo(System.Data.SqlTypes.SqlInt64)">
12142       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt64" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> and returns an indication of their relative values.</summary>
12143       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> to be compared.</param>
12144       <returns>A signed number that indicates the relative values of the instance and the object.
12145   Return value  
12146   
12147   Condition  
12148   
12149   Less than zero  
12150   
12151   This instance is less than the object.  
12152   
12153   Zero  
12154   
12155   This instance is the same as the object.  
12156   
12157   Greater than zero  
12158   
12159   This instance is greater than the object  
12160   
12161  -or-  
12162   
12163  The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
12164     </member>
12165     <member name="M:System.Data.SqlTypes.SqlInt64.CompareTo(System.Object)">
12166       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt64" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
12167       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
12168       <returns>A signed number that indicates the relative values of the instance and the object.
12169   Return value  
12170   
12171   Condition  
12172   
12173   Less than zero  
12174   
12175   This instance is less than the object.  
12176   
12177   Zero  
12178   
12179   This instance is the same as the object.  
12180   
12181   Greater than zero  
12182   
12183   This instance is greater than the object  
12184   
12185  -or-  
12186   
12187  The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
12188     </member>
12189     <member name="M:System.Data.SqlTypes.SqlInt64.Divide(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12190       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter by the second.</summary>
12191       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12192       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12193       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the results of the division operation.</returns>
12194     </member>
12195     <member name="M:System.Data.SqlTypes.SqlInt64.Equals(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12196       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether they are equal.</summary>
12197       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12198       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12199       <returns>
12200         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt64" /> will be null.</returns>
12201     </member>
12202     <member name="M:System.Data.SqlTypes.SqlInt64.Equals(System.Object)">
12203       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> object.</summary>
12204       <param name="value">The object to be compared.</param>
12205       <returns>
12206         <see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> and the two are equal; otherwise <see langword="false" />.</returns>
12207     </member>
12208     <member name="M:System.Data.SqlTypes.SqlInt64.GetHashCode">
12209       <summary>Returns the hash code for this instance.</summary>
12210       <returns>A 32-bit signed integer hash code.</returns>
12211     </member>
12212     <member name="M:System.Data.SqlTypes.SqlInt64.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
12213       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
12214       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
12215       <returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
12216     </member>
12217     <member name="M:System.Data.SqlTypes.SqlInt64.GreaterThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12218       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is greater than the second.</summary>
12219       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12220       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12221       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12222     </member>
12223     <member name="M:System.Data.SqlTypes.SqlInt64.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12224       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is greater than or equal to the second.</summary>
12225       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12226       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12227       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12228     </member>
12229     <member name="P:System.Data.SqlTypes.SqlInt64.IsNull">
12230       <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure is null.</summary>
12231       <returns>
12232         <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
12233     </member>
12234     <member name="M:System.Data.SqlTypes.SqlInt64.LessThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12235       <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is less than the second.</summary>
12236       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12237       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12238       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12239     </member>
12240     <member name="M:System.Data.SqlTypes.SqlInt64.LessThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12241       <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is less than or equal to the second.</summary>
12242       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12243       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12244       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12245     </member>
12246     <member name="F:System.Data.SqlTypes.SqlInt64.MaxValue">
12247       <summary>A constant representing the largest possible value for a <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
12248     </member>
12249     <member name="F:System.Data.SqlTypes.SqlInt64.MinValue">
12250       <summary>A constant representing the smallest possible value for a <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
12251     </member>
12252     <member name="M:System.Data.SqlTypes.SqlInt64.Mod(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12253       <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter by the second.</summary>
12254       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12255       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12256       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the remainder.</returns>
12257     </member>
12258     <member name="M:System.Data.SqlTypes.SqlInt64.Modulus(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12259       <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt64" /> values and returns the remainder.</summary>
12260       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> value.</param>
12261       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> value.</param>
12262       <returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</returns>
12263     </member>
12264     <member name="M:System.Data.SqlTypes.SqlInt64.Multiply(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12265       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</summary>
12266       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12267       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12268       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
12269     </member>
12270     <member name="M:System.Data.SqlTypes.SqlInt64.NotEquals(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12271       <summary>Performs a logical comparison on the two SqlInt64 parameters to determine whether they are not equal.</summary>
12272       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12273       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12274       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12275     </member>
12276     <member name="F:System.Data.SqlTypes.SqlInt64.Null">
12277       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
12278     </member>
12279     <member name="M:System.Data.SqlTypes.SqlInt64.OnesComplement(System.Data.SqlTypes.SqlInt64)">
12280       <summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
12281       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12282       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
12283     </member>
12284     <member name="M:System.Data.SqlTypes.SqlInt64.op_Addition(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12285       <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</summary>
12286       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12287       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12288       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
12289     </member>
12290     <member name="M:System.Data.SqlTypes.SqlInt64.op_BitwiseAnd(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12291       <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operands.</summary>
12292       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12293       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12294       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise AND operation.</returns>
12295     </member>
12296     <member name="M:System.Data.SqlTypes.SqlInt64.op_BitwiseOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12297       <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt64" /> operands.</summary>
12298       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12299       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12300       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise OR operation.</returns>
12301     </member>
12302     <member name="M:System.Data.SqlTypes.SqlInt64.op_Division(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12303       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter by the second.</summary>
12304       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12305       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12306       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the results of the division operation.</returns>
12307     </member>
12308     <member name="M:System.Data.SqlTypes.SqlInt64.op_Equality(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12309       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether they are equal.</summary>
12310       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12311       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12312       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12313     </member>
12314     <member name="M:System.Data.SqlTypes.SqlInt64.op_ExclusiveOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12315       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
12316       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12317       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12318       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise XOR operation.</returns>
12319     </member>
12320     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt64">
12321       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12322       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
12323       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
12324     </member>
12325     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt64">
12326       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12327       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
12328       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
12329     </member>
12330     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt64">
12331       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12332       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
12333       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
12334     </member>
12335     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Int64">
12336       <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to long.</summary>
12337       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12338       <returns>A new long value equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12339     </member>
12340     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt64">
12341       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12342       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
12343       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
12344     </member>
12345     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt64">
12346       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12347       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
12348       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
12349     </member>
12350     <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlInt64">
12351       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12352       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
12353       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
12354     </member>
12355     <member name="M:System.Data.SqlTypes.SqlInt64.op_GreaterThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12356       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is greater than the second.</summary>
12357       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12358       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12359       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12360     </member>
12361     <member name="M:System.Data.SqlTypes.SqlInt64.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12362       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is greater than or equal to the second.</summary>
12363       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12364       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12365       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12366     </member>
12367     <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt64">
12368       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12369       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
12370       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
12371     </member>
12372     <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlInt64">
12373       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12374       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
12375       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
12376     </member>
12377     <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlInt64">
12378       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12379       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
12380       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
12381     </member>
12382     <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlInt64">
12383       <summary>Converts the long parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12384       <param name="x">A long integer value.</param>
12385       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> equals the value of the long parameter.</returns>
12386     </member>
12387     <member name="M:System.Data.SqlTypes.SqlInt64.op_Inequality(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12388       <summary>Performs a logical comparison on the two SqlInt64 parameters to determine whether they are not equal.</summary>
12389       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12390       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12391       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12392     </member>
12393     <member name="M:System.Data.SqlTypes.SqlInt64.op_LessThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12394       <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is less than the second.</summary>
12395       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12396       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12397       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12398     </member>
12399     <member name="M:System.Data.SqlTypes.SqlInt64.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12400       <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters to determine whether the first is less than or equal to the second.</summary>
12401       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12402       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12403       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12404     </member>
12405     <member name="M:System.Data.SqlTypes.SqlInt64.op_Modulus(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12406       <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter by the second.</summary>
12407       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12408       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12409       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the remainder.</returns>
12410     </member>
12411     <member name="M:System.Data.SqlTypes.SqlInt64.op_Multiply(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12412       <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</summary>
12413       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12414       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12415       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
12416     </member>
12417     <member name="M:System.Data.SqlTypes.SqlInt64.op_OnesComplement(System.Data.SqlTypes.SqlInt64)">
12418       <summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
12419       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12420       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
12421     </member>
12422     <member name="M:System.Data.SqlTypes.SqlInt64.op_Subtraction(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12423       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter from the first.</summary>
12424       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12425       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12426       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the results of the subtraction operation.</returns>
12427     </member>
12428     <member name="M:System.Data.SqlTypes.SqlInt64.op_UnaryNegation(System.Data.SqlTypes.SqlInt64)">
12429       <summary>The unary minus operator negates the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
12430       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12431       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the negated <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
12432     </member>
12433     <member name="M:System.Data.SqlTypes.SqlInt64.Parse(System.String)">
12434       <summary>Converts the <see cref="T:System.String" /> representation of a number to its 64-bit signed integer equivalent.</summary>
12435       <param name="s">The <see cref="T:System.String" /> to be parsed.</param>
12436       <returns>A 64-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
12437     </member>
12438     <member name="M:System.Data.SqlTypes.SqlInt64.Subtract(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12439       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter from the first.</summary>
12440       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12441       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12442       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the results of the subtraction operation.</returns>
12443     </member>
12444     <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#GetSchema">
12445       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12446       <returns>An <see langword="XmlSchema" />.</returns>
12447     </member>
12448     <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
12449       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12450       <param name="reader">
12451         <see langword="XmlReader" />
12452       </param>
12453     </member>
12454     <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
12455       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12456       <param name="writer">
12457         <see langword="XmlWriter" />
12458       </param>
12459     </member>
12460     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlBoolean">
12461       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
12462       <returns>
12463         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
12464     </member>
12465     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlByte">
12466       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
12467       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</returns>
12468     </member>
12469     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDecimal">
12470       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
12471       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12472     </member>
12473     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDouble">
12474       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
12475       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12476     </member>
12477     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt16">
12478       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
12479       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12480     </member>
12481     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt32">
12482       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
12483       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12484     </member>
12485     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlMoney">
12486       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12487       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12488     </member>
12489     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlSingle">
12490       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
12491       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12492     </member>
12493     <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlString">
12494       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
12495       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12496     </member>
12497     <member name="M:System.Data.SqlTypes.SqlInt64.ToString">
12498       <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> to <see cref="T:System.String" />.</summary>
12499       <returns>A <see cref="T:System.String" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
12500     </member>
12501     <member name="P:System.Data.SqlTypes.SqlInt64.Value">
12502       <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure. This property is read-only.</summary>
12503       <returns>A long integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</returns>
12504     </member>
12505     <member name="M:System.Data.SqlTypes.SqlInt64.Xor(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
12506       <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
12507       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12508       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
12509       <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise XOR operation.</returns>
12510     </member>
12511     <member name="F:System.Data.SqlTypes.SqlInt64.Zero">
12512       <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
12513     </member>
12514     <member name="T:System.Data.SqlTypes.SqlMoney">
12515       <summary>Represents a currency value ranging from -2 63 (or -922,337,203,685,477.5808) to 2 63 -1 (or +922,337,203,685,477.5807) with an accuracy to a ten-thousandth of currency unit to be stored in or retrieved from a database.</summary>
12516     </member>
12517     <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Decimal)">
12518       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified <see cref="T:System.Decimal" /> value.</summary>
12519       <param name="value">The monetary value to initialize.</param>
12520     </member>
12521     <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Double)">
12522       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with specified double value.</summary>
12523       <param name="value">The monetary value to initialize.</param>
12524     </member>
12525     <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Int32)">
12526       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified integer value.</summary>
12527       <param name="value">The monetary value to initialize.</param>
12528     </member>
12529     <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Int64)">
12530       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class with the specified long integer value.</summary>
12531       <param name="value">The monetary value to initialize.</param>
12532     </member>
12533     <member name="M:System.Data.SqlTypes.SqlMoney.Add(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12534       <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
12535       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12536       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12537       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</returns>
12538     </member>
12539     <member name="M:System.Data.SqlTypes.SqlMoney.CompareTo(System.Data.SqlTypes.SqlMoney)">
12540       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> and returns an indication of their relative values.</summary>
12541       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> to be compared.</param>
12542       <returns>A signed number that indicates the relative values of the instance and the object.
12543   Return value  
12544   
12545   Condition  
12546   
12547   Less than zero  
12548   
12549   This instance is less than the object.  
12550   
12551   Zero  
12552   
12553   This instance is the same as the object.  
12554   
12555   Greater than zero  
12556   
12557   This instance is greater than the object  
12558   
12559  -or-  
12560   
12561  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
12562     </member>
12563     <member name="M:System.Data.SqlTypes.SqlMoney.CompareTo(System.Object)">
12564       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
12565       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
12566       <returns>A signed number that indicates the relative values of the instance and the object.
12567   Return value  
12568   
12569   Condition  
12570   
12571   Less than zero  
12572   
12573   This instance is less than the object.  
12574   
12575   Zero  
12576   
12577   This instance is the same as the object.  
12578   
12579   Greater than zero  
12580   
12581   This instance is greater than the object  
12582   
12583  -or-  
12584   
12585  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
12586     </member>
12587     <member name="M:System.Data.SqlTypes.SqlMoney.Divide(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12588       <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter by the second.</summary>
12589       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12590       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12591       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the division.</returns>
12592     </member>
12593     <member name="M:System.Data.SqlTypes.SqlMoney.Equals(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12594       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether they are equal.</summary>
12595       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12596       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12597       <returns>
12598         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlMoney" /> will be null.</returns>
12599     </member>
12600     <member name="M:System.Data.SqlTypes.SqlMoney.Equals(System.Object)">
12601       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> object.</summary>
12602       <param name="value">The object to be compared.</param>
12603       <returns>
12604         <see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> and the two are equal; otherwise, <see langword="false" />.</returns>
12605     </member>
12606     <member name="M:System.Data.SqlTypes.SqlMoney.GetHashCode">
12607       <summary>Gets the hash code for this instance.</summary>
12608       <returns>A 32-bit signed integer hash code.</returns>
12609     </member>
12610     <member name="M:System.Data.SqlTypes.SqlMoney.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
12611       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
12612       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
12613       <returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
12614     </member>
12615     <member name="M:System.Data.SqlTypes.SqlMoney.GreaterThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12616       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than the second.</summary>
12617       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12618       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12619       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12620     </member>
12621     <member name="M:System.Data.SqlTypes.SqlMoney.GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12622       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than or equal to the second.</summary>
12623       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12624       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12625       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12626     </member>
12627     <member name="P:System.Data.SqlTypes.SqlMoney.IsNull">
12628       <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure is null.</summary>
12629       <returns>
12630         <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
12631     </member>
12632     <member name="M:System.Data.SqlTypes.SqlMoney.LessThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12633       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than the second.</summary>
12634       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12635       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12636       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12637     </member>
12638     <member name="M:System.Data.SqlTypes.SqlMoney.LessThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12639       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than or equal to the second.</summary>
12640       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12641       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12642       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12643     </member>
12644     <member name="F:System.Data.SqlTypes.SqlMoney.MaxValue">
12645       <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
12646     </member>
12647     <member name="F:System.Data.SqlTypes.SqlMoney.MinValue">
12648       <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
12649     </member>
12650     <member name="M:System.Data.SqlTypes.SqlMoney.Multiply(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12651       <summary>The multiplication operator calculates the product of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
12652       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12653       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12654       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the product of the multiplication.</returns>
12655     </member>
12656     <member name="M:System.Data.SqlTypes.SqlMoney.NotEquals(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12657       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether they are not equal.</summary>
12658       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12659       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12660       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12661     </member>
12662     <member name="F:System.Data.SqlTypes.SqlMoney.Null">
12663       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
12664     </member>
12665     <member name="M:System.Data.SqlTypes.SqlMoney.op_Addition(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12666       <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
12667       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12668       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12669       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</returns>
12670     </member>
12671     <member name="M:System.Data.SqlTypes.SqlMoney.op_Division(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12672       <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter by the second.</summary>
12673       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12674       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12675       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the division.</returns>
12676     </member>
12677     <member name="M:System.Data.SqlTypes.SqlMoney.op_Equality(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12678       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether they are equal.</summary>
12679       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12680       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12681       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12682     </member>
12683     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlMoney">
12684       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12685       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
12686       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
12687     </member>
12688     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlMoney">
12689       <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12690       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
12691       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
12692     </member>
12693     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlMoney">
12694       <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12695       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
12696       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
12697     </member>
12698     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Decimal">
12699       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Decimal" />.</summary>
12700       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12701       <returns>A new <see cref="T:System.Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
12702     </member>
12703     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlMoney">
12704       <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12705       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
12706       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
12707     </member>
12708     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlMoney">
12709       <summary>This operator converts the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12710       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
12711       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
12712     </member>
12713     <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Double)~System.Data.SqlTypes.SqlMoney">
12714       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12715       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
12716       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
12717     </member>
12718     <member name="M:System.Data.SqlTypes.SqlMoney.op_GreaterThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12719       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than the second.</summary>
12720       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12721       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12722       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12723     </member>
12724     <member name="M:System.Data.SqlTypes.SqlMoney.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12725       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is greater than or equal to the second.</summary>
12726       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12727       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12728       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12729     </member>
12730     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlMoney">
12731       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12732       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
12733       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
12734     </member>
12735     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlMoney">
12736       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12737       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
12738       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
12739     </member>
12740     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlMoney">
12741       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12742       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
12743       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
12744     </member>
12745     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlMoney">
12746       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12747       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
12748       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
12749     </member>
12750     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlMoney">
12751       <summary>Converts the <see cref="T:System.Decimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12752       <param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
12753       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> equals the value of the <see cref="T:System.Decimal" /> parameter.</returns>
12754     </member>
12755     <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlMoney">
12756       <summary>This implicit operator converts the supplied <see cref="T:System.Int64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
12757       <param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
12758       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the value of the <see cref="T:System.Int64" /> parameter.</returns>
12759     </member>
12760     <member name="M:System.Data.SqlTypes.SqlMoney.op_Inequality(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12761       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether they are not equal.</summary>
12762       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12763       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12764       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12765     </member>
12766     <member name="M:System.Data.SqlTypes.SqlMoney.op_LessThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12767       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than the second.</summary>
12768       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12769       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12770       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12771     </member>
12772     <member name="M:System.Data.SqlTypes.SqlMoney.op_LessThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12773       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters to determine whether the first is less than or equal to the second.</summary>
12774       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12775       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12776       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
12777     </member>
12778     <member name="M:System.Data.SqlTypes.SqlMoney.op_Multiply(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12779       <summary>The multiplication operator calculates the product of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameters.</summary>
12780       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12781       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12782       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the product of the multiplication.</returns>
12783     </member>
12784     <member name="M:System.Data.SqlTypes.SqlMoney.op_Subtraction(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12785       <summary>The subtraction operator subtracts the second <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter from the first.</summary>
12786       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12787       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12788       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure that contains the results of the subtraction.</returns>
12789     </member>
12790     <member name="M:System.Data.SqlTypes.SqlMoney.op_UnaryNegation(System.Data.SqlTypes.SqlMoney)">
12791       <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</summary>
12792       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be negated.</param>
12793       <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the negation.</returns>
12794     </member>
12795     <member name="M:System.Data.SqlTypes.SqlMoney.Parse(System.String)">
12796       <summary>Converts the <see cref="T:System.String" /> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlMoney" /> equivalent.</summary>
12797       <param name="s">The <see langword="String" /> to be parsed.</param>
12798       <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
12799     </member>
12800     <member name="M:System.Data.SqlTypes.SqlMoney.Subtract(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
12801       <summary>The subtraction operator subtracts the second <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter from the first.</summary>
12802       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12803       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
12804       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure that contains the results of the subtraction.</returns>
12805     </member>
12806     <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#GetSchema">
12807       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12808       <returns>An <see langword="XmlSchema" />.</returns>
12809     </member>
12810     <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
12811       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12812       <param name="reader">
12813         <see langword="XmlReader" />
12814       </param>
12815     </member>
12816     <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
12817       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
12818       <param name="writer">
12819         <see langword="XmlWriter" />
12820       </param>
12821     </member>
12822     <member name="M:System.Data.SqlTypes.SqlMoney.ToDecimal">
12823       <summary>Converts the Value of this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> as a <see cref="T:System.Decimal" /> structure.</summary>
12824       <returns>A <see cref="T:System.Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
12825     </member>
12826     <member name="M:System.Data.SqlTypes.SqlMoney.ToDouble">
12827       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to a <see cref="T:System.Double" />.</summary>
12828       <returns>A double with a value equal to this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
12829     </member>
12830     <member name="M:System.Data.SqlTypes.SqlMoney.ToInt32">
12831       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to an <see cref="T:System.Int32" />.</summary>
12832       <returns>A 32-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
12833     </member>
12834     <member name="M:System.Data.SqlTypes.SqlMoney.ToInt64">
12835       <summary>Converts the Value of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to an <see cref="T:System.Int64" />.</summary>
12836       <returns>A 64-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
12837     </member>
12838     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlBoolean">
12839       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
12840       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure is zero, the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value will be <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />.</returns>
12841     </member>
12842     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlByte">
12843       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
12844       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12845     </member>
12846     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDecimal">
12847       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
12848       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12849     </member>
12850     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDouble">
12851       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
12852       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12853     </member>
12854     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt16">
12855       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
12856       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12857     </member>
12858     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt32">
12859       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
12860       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12861     </member>
12862     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt64">
12863       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
12864       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12865     </member>
12866     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlSingle">
12867       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
12868       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12869     </member>
12870     <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlString">
12871       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
12872       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is a string representing the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12873     </member>
12874     <member name="M:System.Data.SqlTypes.SqlMoney.ToString">
12875       <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> to string.</summary>
12876       <returns>A string whose value is the string representation of the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
12877     </member>
12878     <member name="P:System.Data.SqlTypes.SqlMoney.Value">
12879       <summary>Gets the monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure. This property is read-only.</summary>
12880       <returns>The monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
12881       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is set to null.</exception>
12882     </member>
12883     <member name="F:System.Data.SqlTypes.SqlMoney.Zero">
12884       <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
12885     </member>
12886     <member name="T:System.Data.SqlTypes.SqlNotFilledException">
12887       <summary>The <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
12888     </member>
12889     <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor">
12890       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
12891     </member>
12892     <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String)">
12893       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
12894       <param name="message">The string to display when the exception is thrown.</param>
12895     </member>
12896     <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String,System.Exception)">
12897       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
12898       <param name="message">The string to display when the exception is thrown.</param>
12899       <param name="e">A reference to an inner exception.</param>
12900     </member>
12901     <member name="T:System.Data.SqlTypes.SqlNullValueException">
12902       <summary>The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</summary>
12903     </member>
12904     <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor">
12905       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> class with a system-supplied message that describes the error.</summary>
12906     </member>
12907     <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor(System.String)">
12908       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> class with a specified message that describes the error.</summary>
12909       <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
12910     </member>
12911     <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor(System.String,System.Exception)">
12912       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
12913       <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
12914       <param name="e">The exception that is the cause of the current exception. If the <c>innerException</c> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
12915     </member>
12916     <member name="T:System.Data.SqlTypes.SqlSingle">
12917       <summary>Represents a floating point number within the range of -3.40E +38 through 3.40E +38 to be stored in or retrieved from a database.</summary>
12918     </member>
12919     <member name="M:System.Data.SqlTypes.SqlSingle.#ctor(System.Double)">
12920       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure using the supplied double parameter.</summary>
12921       <param name="value">A double value which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12922     </member>
12923     <member name="M:System.Data.SqlTypes.SqlSingle.#ctor(System.Single)">
12924       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
12925       <param name="value">A floating point number which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12926     </member>
12927     <member name="M:System.Data.SqlTypes.SqlSingle.Add(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
12928       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
12929       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12930       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12931       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</returns>
12932     </member>
12933     <member name="M:System.Data.SqlTypes.SqlSingle.CompareTo(System.Data.SqlTypes.SqlSingle)">
12934       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> and returns an indication of their relative values.</summary>
12935       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> to be compared.</param>
12936       <returns>A signed number that indicates the relative values of the instance and the object.
12937   Return Value  
12938   
12939   Condition  
12940   
12941   Less than zero  
12942   
12943   This instance is less than the object.  
12944   
12945   Zero  
12946   
12947   This instance is the same as the object.  
12948   
12949   Greater than zero  
12950   
12951   This instance is greater than the object  
12952   
12953  -or-  
12954   
12955  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
12956     </member>
12957     <member name="M:System.Data.SqlTypes.SqlSingle.CompareTo(System.Object)">
12958       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
12959       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
12960       <returns>A signed number that indicates the relative values of the instance and the object.
12961   Return value  
12962   
12963   Condition  
12964   
12965   Less than zero  
12966   
12967   This instance is less than the object.  
12968   
12969   Zero  
12970   
12971   This instance is the same as the object.  
12972   
12973   Greater than zero  
12974   
12975   This instance is greater than the object  
12976   
12977  -or-  
12978   
12979  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
12980     </member>
12981     <member name="M:System.Data.SqlTypes.SqlSingle.Divide(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
12982       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure by the second.</summary>
12983       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12984       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12985       <returns>A <see langword="SqlInt64" /> structure that contains the results of the division.</returns>
12986     </member>
12987     <member name="M:System.Data.SqlTypes.SqlSingle.Equals(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
12988       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether they are equal.</summary>
12989       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12990       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
12991       <returns>
12992         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlSingle" /> will be null.</returns>
12993     </member>
12994     <member name="M:System.Data.SqlTypes.SqlSingle.Equals(System.Object)">
12995       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> object.</summary>
12996       <param name="value">The object to be compared.</param>
12997       <returns>
12998         <see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
12999     </member>
13000     <member name="M:System.Data.SqlTypes.SqlSingle.GetHashCode">
13001       <summary>Gets the hash code for this instance.</summary>
13002       <returns>A 32-bit signed integer hash code.</returns>
13003     </member>
13004     <member name="M:System.Data.SqlTypes.SqlSingle.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
13005       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
13006       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
13007       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
13008     </member>
13009     <member name="M:System.Data.SqlTypes.SqlSingle.GreaterThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13010       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> operands to determine whether the first is greater than the second.</summary>
13011       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13012       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13013       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13014     </member>
13015     <member name="M:System.Data.SqlTypes.SqlSingle.GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13016       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures to determine whether the first is greater than or equal to the second.</summary>
13017       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13018       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13019       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13020     </member>
13021     <member name="P:System.Data.SqlTypes.SqlSingle.IsNull">
13022       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure is null.</summary>
13023       <returns>
13024         <see langword="true" /> if null. Otherwise, <see langword="false" />.</returns>
13025     </member>
13026     <member name="M:System.Data.SqlTypes.SqlSingle.LessThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13027       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than the second.</summary>
13028       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13029       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13030       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13031     </member>
13032     <member name="M:System.Data.SqlTypes.SqlSingle.LessThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13033       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than or equal to the second.</summary>
13034       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13035       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13036       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13037     </member>
13038     <member name="F:System.Data.SqlTypes.SqlSingle.MaxValue">
13039       <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
13040     </member>
13041     <member name="F:System.Data.SqlTypes.SqlSingle.MinValue">
13042       <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
13043     </member>
13044     <member name="M:System.Data.SqlTypes.SqlSingle.Multiply(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13045       <summary>Computes the product of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
13046       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13047       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13048       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the product of the multiplication.</returns>
13049     </member>
13050     <member name="M:System.Data.SqlTypes.SqlSingle.NotEquals(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13051       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether they are not equal.</summary>
13052       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13053       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13054       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13055     </member>
13056     <member name="F:System.Data.SqlTypes.SqlSingle.Null">
13057       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
13058     </member>
13059     <member name="M:System.Data.SqlTypes.SqlSingle.op_Addition(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13060       <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
13061       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13062       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13063       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</returns>
13064     </member>
13065     <member name="M:System.Data.SqlTypes.SqlSingle.op_Division(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13066       <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure by the second.</summary>
13067       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13068       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13069       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the division.</returns>
13070     </member>
13071     <member name="M:System.Data.SqlTypes.SqlSingle.op_Equality(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13072       <summary>Performs a logical comparison of the two SqlSingle parameters to determine whether they are equal.</summary>
13073       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13074       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13075       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13076     </member>
13077     <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlSingle">
13078       <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13079       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
13080       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
13081     </member>
13082     <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlSingle">
13083       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13084       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to be converted.</param>
13085       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
13086     </member>
13087     <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Single">
13088       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to float.</summary>
13089       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> value to be converted to float.</param>
13090       <returns>A float that contains the value of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</returns>
13091     </member>
13092     <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlSingle">
13093       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13094       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
13095       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
13096     </member>
13097     <member name="M:System.Data.SqlTypes.SqlSingle.op_GreaterThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13098       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> operands to determine whether the first is greater than the second.</summary>
13099       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13100       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13101       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13102     </member>
13103     <member name="M:System.Data.SqlTypes.SqlSingle.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13104       <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures to determine whether the first is greater than or equal to the second.</summary>
13105       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13106       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13107       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13108     </member>
13109     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlSingle">
13110       <summary>This implicit operator converts the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13111       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> to be converted.</param>
13112       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
13113     </member>
13114     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlSingle">
13115       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13116       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
13117       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
13118     </member>
13119     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlSingle">
13120       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13121       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
13122       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
13123     </member>
13124     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlSingle">
13125       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13126       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
13127       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
13128     </member>
13129     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlSingle">
13130       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13131       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
13132       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
13133     </member>
13134     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlSingle">
13135       <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13136       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
13137       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
13138     </member>
13139     <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Single)~System.Data.SqlTypes.SqlSingle">
13140       <summary>Converts the specified floating point value to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13141       <param name="x">The float value to be converted to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</param>
13142       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the value of the specified float.</returns>
13143     </member>
13144     <member name="M:System.Data.SqlTypes.SqlSingle.op_Inequality(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13145       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether they are not equal.</summary>
13146       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13147       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13148       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13149     </member>
13150     <member name="M:System.Data.SqlTypes.SqlSingle.op_LessThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13151       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than the second.</summary>
13152       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13153       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13154       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13155     </member>
13156     <member name="M:System.Data.SqlTypes.SqlSingle.op_LessThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13157       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameters to determine whether the first is less than or equal to the second.</summary>
13158       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13159       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13160       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13161     </member>
13162     <member name="M:System.Data.SqlTypes.SqlSingle.op_Multiply(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13163       <summary>Computes the product of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</summary>
13164       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13165       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13166       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the product of the multiplication.</returns>
13167     </member>
13168     <member name="M:System.Data.SqlTypes.SqlSingle.op_Subtraction(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13169       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure from the first.</summary>
13170       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13171       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13172       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the subtraction.</returns>
13173     </member>
13174     <member name="M:System.Data.SqlTypes.SqlSingle.op_UnaryNegation(System.Data.SqlTypes.SqlSingle)">
13175       <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
13176       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13177       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the negated value.</returns>
13178     </member>
13179     <member name="M:System.Data.SqlTypes.SqlSingle.Parse(System.String)">
13180       <summary>Converts the specified <see cref="T:System.String" /> to a <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
13181       <param name="s">The <see cref="T:System.String" /> to be parsed.</param>
13182       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
13183     </member>
13184     <member name="M:System.Data.SqlTypes.SqlSingle.Subtract(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
13185       <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure from the first.</summary>
13186       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13187       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
13188       <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the subtraction.</returns>
13189     </member>
13190     <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#GetSchema">
13191       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13192       <returns>An <see langword="XmlSchema" />.</returns>
13193     </member>
13194     <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
13195       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13196       <param name="reader">
13197         <see langword="XmlReader" />
13198       </param>
13199     </member>
13200     <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
13201       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13202       <param name="writer">
13203         <see langword="XmlWriter" />
13204       </param>
13205     </member>
13206     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlBoolean">
13207       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
13208       <returns>
13209         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
13210     </member>
13211     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlByte">
13212       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
13213       <returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure. If the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's Value is <see langword="true" />, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 0.</returns>
13214     </member>
13215     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDecimal">
13216       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
13217       <returns>A new <see langword="SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13218     </member>
13219     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDouble">
13220       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
13221       <returns>A new <see langword="SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13222     </member>
13223     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt16">
13224       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
13225       <returns>A new <see langword="SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13226     </member>
13227     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt32">
13228       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
13229       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13230     </member>
13231     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt64">
13232       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
13233       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13234     </member>
13235     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlMoney">
13236       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
13237       <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13238     </member>
13239     <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlString">
13240       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13241       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13242     </member>
13243     <member name="M:System.Data.SqlTypes.SqlSingle.ToString">
13244       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.String" />.</summary>
13245       <returns>A <see langword="String" /> object representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
13246     </member>
13247     <member name="P:System.Data.SqlTypes.SqlSingle.Value">
13248       <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure. This property is read-only.</summary>
13249       <returns>A floating point value in the range -3.40E+38 through 3.40E+38.</returns>
13250     </member>
13251     <member name="F:System.Data.SqlTypes.SqlSingle.Zero">
13252       <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
13253     </member>
13254     <member name="T:System.Data.SqlTypes.SqlString">
13255       <summary>Represents a variable-length stream of characters to be stored in or retrieved from the database. <see cref="T:System.Data.SqlTypes.SqlString" /> has a different underlying data structure from its corresponding .NET Framework <see cref="T:System.String" /> data type.</summary>
13256     </member>
13257     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[])">
13258       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure using the specified locale id, compare options, and data.</summary>
13259       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13260       <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13261       <param name="data">The data array to store.</param>
13262     </member>
13263     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Boolean)">
13264       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> class.</summary>
13265       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13266       <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13267       <param name="data">The data array to store.</param>
13268       <param name="fUnicode">
13269         <see langword="true" /> if Unicode encoded. Otherwise, <see langword="false" />.</param>
13270     </member>
13271     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Int32,System.Int32)">
13272       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> class.</summary>
13273       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13274       <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13275       <param name="data">The data array to store.</param>
13276       <param name="index">The starting index within the array.</param>
13277       <param name="count">The number of characters from index to copy.</param>
13278     </member>
13279     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Int32,System.Int32,System.Boolean)">
13280       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> class.</summary>
13281       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13282       <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13283       <param name="data">The data array to store.</param>
13284       <param name="index">The starting index within the array.</param>
13285       <param name="count">The number of characters from index to copy.</param>
13286       <param name="fUnicode">
13287         <see langword="true" /> if Unicode encoded. Otherwise, <see langword="false" />.</param>
13288     </member>
13289     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String)">
13290       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure using the specified string.</summary>
13291       <param name="data">The string to store.</param>
13292     </member>
13293     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String,System.Int32)">
13294       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure using the specified string and locale id values.</summary>
13295       <param name="data">The string to store.</param>
13296       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13297     </member>
13298     <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String,System.Int32,System.Data.SqlTypes.SqlCompareOptions)">
13299       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure using the specified string, locale id, and compare option values.</summary>
13300       <param name="data">The string to store.</param>
13301       <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13302       <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13303     </member>
13304     <member name="M:System.Data.SqlTypes.SqlString.Add(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13305       <summary>Concatenates two specified <see cref="T:System.Data.SqlTypes.SqlString" /> values to create a new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
13306       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13307       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13308       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that is the concatenated value of <paramref name="x" /> and <paramref name="y" />.</returns>
13309     </member>
13310     <member name="F:System.Data.SqlTypes.SqlString.BinarySort">
13311       <summary>Specifies that sorts should be based on a characters numeric value instead of its alphabetical value.</summary>
13312     </member>
13313     <member name="F:System.Data.SqlTypes.SqlString.BinarySort2">
13314       <summary>Specifies that sorts should be based on a character's numeric value instead of its alphabetical value.</summary>
13315     </member>
13316     <member name="M:System.Data.SqlTypes.SqlString.Clone">
13317       <summary>Creates a copy of this <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
13318       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object in which all property values are the same as the original.</returns>
13319     </member>
13320     <member name="P:System.Data.SqlTypes.SqlString.CompareInfo">
13321       <summary>Gets the <see cref="T:System.Globalization.CompareInfo" /> object that defines how string comparisons should be performed for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
13322       <returns>A <see langword="CompareInfo" /> object that defines string comparison for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
13323     </member>
13324     <member name="M:System.Data.SqlTypes.SqlString.CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions)">
13325       <summary>Gets the <see cref="T:System.Globalization.CompareOptions" /> enumeration equivalent of the specified <see cref="T:System.Data.SqlTypes.SqlCompareOptions" /> value.</summary>
13326       <param name="compareOptions">A <see cref="T:System.Data.SqlTypes.SqlCompareOptions" /> value that describes the comparison options for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
13327       <returns>A <see langword="CompareOptions" /> value that corresponds to the <see langword="SqlCompareOptions" /> for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
13328     </member>
13329     <member name="M:System.Data.SqlTypes.SqlString.CompareTo(System.Data.SqlTypes.SqlString)">
13330       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlString" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> and returns an indication of their relative values.</summary>
13331       <param name="value">The <see cref="T:System.Data.SqlTypes.SqlString" /> to be compared.</param>
13332       <returns>A signed number that indicates the relative values of the instance and the object.
13333   Return value  
13334   
13335   Condition  
13336   
13337   Less than zero  
13338   
13339   This instance is less than the object.  
13340   
13341   Zero  
13342   
13343   This instance is the same as the object.  
13344   
13345   Greater than zero  
13346   
13347   This instance is greater than the object  
13348   
13349  -or-  
13350   
13351  The object is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
13352     </member>
13353     <member name="M:System.Data.SqlTypes.SqlString.CompareTo(System.Object)">
13354       <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlString" /> object to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
13355       <param name="value">The <see cref="T:System.Object" /> to be compared.</param>
13356       <returns>A signed number that indicates the relative values of the instance and the object.
13357   Return Value  
13358   
13359   Condition  
13360   
13361   Less than zero  
13362   
13363   This instance is less than the object.  
13364   
13365   Zero  
13366   
13367   This instance is the same as the object.  
13368   
13369   Greater than zero  
13370   
13371   This instance is greater than the object  
13372   
13373  -or-  
13374   
13375  The object is a null reference (<see langword="Nothing" /> in Visual Basic)</returns>
13376     </member>
13377     <member name="M:System.Data.SqlTypes.SqlString.Concat(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13378       <summary>Concatenates the two specified <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</summary>
13379       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13380       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13381       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString" /> parameters.</returns>
13382     </member>
13383     <member name="P:System.Data.SqlTypes.SqlString.CultureInfo">
13384       <summary>Gets the <see cref="T:System.Globalization.CultureInfo" /> structure that represents information about the culture of this <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
13385       <returns>A <see cref="T:System.Globalization.CultureInfo" /> structure that describes information about the culture of this SqlString structure including the names of the culture, the writing system, and the calendar used, and also access to culture-specific objects that provide methods for common operations, such as formatting dates and sorting strings.</returns>
13386     </member>
13387     <member name="M:System.Data.SqlTypes.SqlString.Equals(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13388       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether they are equal.</summary>
13389       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13390       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13391       <returns>
13392         <see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlString" /> will be null.</returns>
13393     </member>
13394     <member name="M:System.Data.SqlTypes.SqlString.Equals(System.Object)">
13395       <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
13396       <param name="value">The object to be compared.</param>
13397       <returns>
13398         <see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlString" /> and the two are equal; otherwise, <see langword="false" />.</returns>
13399     </member>
13400     <member name="M:System.Data.SqlTypes.SqlString.GetHashCode">
13401       <summary>Gets the hash code for this instance.</summary>
13402       <returns>A 32-bit signed integer hash code.</returns>
13403     </member>
13404     <member name="M:System.Data.SqlTypes.SqlString.GetNonUnicodeBytes">
13405       <summary>Gets an array of bytes, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> in ANSI format.</summary>
13406       <returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> in ANSI format.</returns>
13407     </member>
13408     <member name="M:System.Data.SqlTypes.SqlString.GetUnicodeBytes">
13409       <summary>Gets an array of bytes, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> in Unicode format.</summary>
13410       <returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> in Unicode format.</returns>
13411     </member>
13412     <member name="M:System.Data.SqlTypes.SqlString.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
13413       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
13414       <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
13415       <returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
13416     </member>
13417     <member name="M:System.Data.SqlTypes.SqlString.GreaterThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13418       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is greater than the second.</summary>
13419       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13420       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13421       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13422     </member>
13423     <member name="M:System.Data.SqlTypes.SqlString.GreaterThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13424       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is greater than or equal to the second.</summary>
13425       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13426       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13427       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13428     </member>
13429     <member name="F:System.Data.SqlTypes.SqlString.IgnoreCase">
13430       <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons should ignore case.</summary>
13431     </member>
13432     <member name="F:System.Data.SqlTypes.SqlString.IgnoreKanaType">
13433       <summary>Specifies that the string comparison must ignore the Kana type.</summary>
13434     </member>
13435     <member name="F:System.Data.SqlTypes.SqlString.IgnoreNonSpace">
13436       <summary>Specifies that the string comparison must ignore non-space combining characters, such as diacritics.</summary>
13437     </member>
13438     <member name="F:System.Data.SqlTypes.SqlString.IgnoreWidth">
13439       <summary>Specifies that the string comparison must ignore the character width.</summary>
13440     </member>
13441     <member name="P:System.Data.SqlTypes.SqlString.IsNull">
13442       <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlString" /> structure is null.</summary>
13443       <returns>
13444         <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlString.Value" /> is <see cref="F:System.Data.SqlTypes.SqlString.Null" />. Otherwise, <see langword="false" />.</returns>
13445     </member>
13446     <member name="P:System.Data.SqlTypes.SqlString.LCID">
13447       <summary>Specifies the geographical locale and language for the <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
13448       <returns>The locale id for the string stored in the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> property.</returns>
13449     </member>
13450     <member name="M:System.Data.SqlTypes.SqlString.LessThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13451       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is less than the second.</summary>
13452       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13453       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13454       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13455     </member>
13456     <member name="M:System.Data.SqlTypes.SqlString.LessThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13457       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is less than or equal to the second.</summary>
13458       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13459       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13460       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13461     </member>
13462     <member name="M:System.Data.SqlTypes.SqlString.NotEquals(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13463       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether they are not equal.</summary>
13464       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13465       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13466       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13467     </member>
13468     <member name="F:System.Data.SqlTypes.SqlString.Null">
13469       <summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
13470     </member>
13471     <member name="M:System.Data.SqlTypes.SqlString.op_Addition(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13472       <summary>Concatenates the two specified <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</summary>
13473       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13474       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13475       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString" /> parameters.</returns>
13476     </member>
13477     <member name="M:System.Data.SqlTypes.SqlString.op_Equality(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13478       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether they are equal.</summary>
13479       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13480       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13481       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13482     </member>
13483     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlString">
13484       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13485       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
13486       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
13487     </member>
13488     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlString">
13489       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13490       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
13491       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
13492     </member>
13493     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDateTime)~System.Data.SqlTypes.SqlString">
13494       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDateTime" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13495       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to be converted.</param>
13496       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> parameter.</returns>
13497     </member>
13498     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlString">
13499       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13500       <param name="x">The <see langword="SqlDecimal" /> structure to be converted.</param>
13501       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see langword="SqlDecimal" /> parameter.</returns>
13502     </member>
13503     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlString">
13504       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13505       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
13506       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
13507     </member>
13508     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Data.SqlTypes.SqlString">
13509       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlGuid" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13510       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to be converted.</param>
13511       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> whose value is the string representation of the specified <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
13512     </member>
13513     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlString">
13514       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13515       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
13516       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
13517     </member>
13518     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlString">
13519       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13520       <param name="x">The SqlInt32 structure to be converted.</param>
13521       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
13522     </member>
13523     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlString">
13524       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13525       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
13526       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
13527     </member>
13528     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlString">
13529       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13530       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
13531       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
13532     </member>
13533     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlString">
13534       <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13535       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
13536       <returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
13537     </member>
13538     <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlString)~System.String">
13539       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString" /> to a <see cref="T:System.String" /></summary>
13540       <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> to be converted.</param>
13541       <returns>A <see langword="String" />, whose contents are the same as the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
13542     </member>
13543     <member name="M:System.Data.SqlTypes.SqlString.op_GreaterThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13544       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is greater than the second.</summary>
13545       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13546       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13547       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13548     </member>
13549     <member name="M:System.Data.SqlTypes.SqlString.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13550       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is greater than or equal to the second.</summary>
13551       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13552       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13553       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13554     </member>
13555     <member name="M:System.Data.SqlTypes.SqlString.op_Implicit(System.String)~System.Data.SqlTypes.SqlString">
13556       <summary>Converts the <see cref="T:System.String" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
13557       <param name="x">The <see cref="T:System.String" /> to be converted.</param>
13558       <returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the value of the specified <see langword="String" />.</returns>
13559     </member>
13560     <member name="M:System.Data.SqlTypes.SqlString.op_Inequality(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13561       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether they are not equal.</summary>
13562       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13563       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13564       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13565     </member>
13566     <member name="M:System.Data.SqlTypes.SqlString.op_LessThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13567       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is less than the second.</summary>
13568       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13569       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13570       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13571     </member>
13572     <member name="M:System.Data.SqlTypes.SqlString.op_LessThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
13573       <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString" /> operands to determine whether the first is less than or equal to the second.</summary>
13574       <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13575       <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
13576       <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
13577     </member>
13578     <member name="P:System.Data.SqlTypes.SqlString.SqlCompareOptions">
13579       <summary>A combination of one or more of the <see cref="T:System.Data.SqlTypes.SqlCompareOptions" /> enumeration values that represent the way in which this <see cref="T:System.Data.SqlTypes.SqlString" /> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</summary>
13580       <returns>A value specifying how this <see cref="T:System.Data.SqlTypes.SqlString" /> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</returns>
13581     </member>
13582     <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#GetSchema">
13583       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13584       <returns>An <see langword="XmlSchema" />.</returns>
13585     </member>
13586     <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
13587       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13588       <param name="reader">
13589         <see langword="XmlReader" />
13590       </param>
13591     </member>
13592     <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
13593       <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
13594       <param name="writer">
13595         <see langword="XmlWriter" />
13596       </param>
13597     </member>
13598     <member name="M:System.Data.SqlTypes.SqlString.ToSqlBoolean">
13599       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
13600       <returns>
13601         <see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> is non-zero; <see langword="false" /> if zero; otherwise Null.</returns>
13602     </member>
13603     <member name="M:System.Data.SqlTypes.SqlString.ToSqlByte">
13604       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
13605       <returns>A new <see langword="SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> equals the number represented by this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
13606     </member>
13607     <member name="M:System.Data.SqlTypes.SqlString.ToSqlDateTime">
13608       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</summary>
13609       <returns>A new <see langword="SqlDateTime" /> structure that contains the date value represented by this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13610     </member>
13611     <member name="M:System.Data.SqlTypes.SqlString.ToSqlDecimal">
13612       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
13613       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> that contains the value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13614     </member>
13615     <member name="M:System.Data.SqlTypes.SqlString.ToSqlDouble">
13616       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
13617       <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13618     </member>
13619     <member name="M:System.Data.SqlTypes.SqlString.ToSqlGuid">
13620       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
13621       <returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is the <see langword="Guid" /> represented by this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
13622     </member>
13623     <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt16">
13624       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
13625       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13626     </member>
13627     <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt32">
13628       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
13629       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13630     </member>
13631     <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt64">
13632       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
13633       <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13634     </member>
13635     <member name="M:System.Data.SqlTypes.SqlString.ToSqlMoney">
13636       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
13637       <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13638     </member>
13639     <member name="M:System.Data.SqlTypes.SqlString.ToSqlSingle">
13640       <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
13641       <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
13642     </member>
13643     <member name="M:System.Data.SqlTypes.SqlString.ToString">
13644       <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString" /> object to a <see cref="T:System.String" />.</summary>
13645       <returns>A <see cref="T:System.String" /> with the same value as this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
13646     </member>
13647     <member name="P:System.Data.SqlTypes.SqlString.Value">
13648       <summary>Gets the string that is stored in this <see cref="T:System.Data.SqlTypes.SqlString" /> structure. This property is read-only.</summary>
13649       <returns>The string that is stored.</returns>
13650       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The value of the string is <see cref="F:System.Data.SqlTypes.SqlString.Null" />.</exception>
13651     </member>
13652     <member name="T:System.Data.SqlTypes.SqlTruncateException">
13653       <summary>The exception that is thrown when you set a value into a <see cref="N:System.Data.SqlTypes" /> structure would truncate that value.</summary>
13654     </member>
13655     <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor">
13656       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException" /> class.</summary>
13657     </member>
13658     <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor(System.String)">
13659       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException" /> class with a specified error message.</summary>
13660       <param name="message">The error message that explains the reason for the exception.</param>
13661     </member>
13662     <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor(System.String,System.Exception)">
13663       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException" /> class with a specified error message and a reference to the <see cref="T:System.Exception" />.</summary>
13664       <param name="message">The error message that explains the reason for the exception.</param>
13665       <param name="e">A reference to an inner <see cref="T:System.Exception" />.</param>
13666     </member>
13667     <member name="T:System.Data.SqlTypes.SqlTypeException">
13668       <summary>The base exception class for the <see cref="N:System.Data.SqlTypes" />.</summary>
13669     </member>
13670     <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor">
13671       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class.</summary>
13672     </member>
13673     <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
13674       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with serialized data.</summary>
13675       <param name="si">The object that holds the serialized object data.</param>
13676       <param name="sc">The contextual information about the source or destination.</param>
13677     </member>
13678     <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.String)">
13679       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with a specified error message.</summary>
13680       <param name="message">The error message that explains the reason for the exception.</param>
13681     </member>
13682     <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.String,System.Exception)">
13683       <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
13684       <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
13685       <param name="e">The exception that is the cause of the current exception. If the <c>innerException</c> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
13686     </member>
13687     <member name="T:System.Data.SqlTypes.SqlXml">
13688       <summary>Represents XML data stored in or retrieved from a server.</summary>
13689     </member>
13690     <member name="M:System.Data.SqlTypes.SqlXml.#ctor">
13691       <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance.</summary>
13692     </member>
13693     <member name="M:System.Data.SqlTypes.SqlXml.#ctor(System.IO.Stream)">
13694       <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance, supplying the XML value from the supplied <see cref="T:System.IO.Stream" />-derived instance.</summary>
13695       <param name="value">A <see cref="T:System.IO.Stream" />-derived instance (such as <see cref="T:System.IO.FileStream" />) from which to load the <see cref="T:System.Data.SqlTypes.SqlXml" /> instance's Xml content.</param>
13696     </member>
13697     <member name="M:System.Data.SqlTypes.SqlXml.#ctor(System.Xml.XmlReader)">
13698       <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance and associates it with the content of the supplied <see cref="T:System.Xml.XmlReader" />.</summary>
13699       <param name="value">An <see cref="T:System.Xml.XmlReader" />-derived class instance to be used as the value of the new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance.</param>
13700     </member>
13701     <member name="M:System.Data.SqlTypes.SqlXml.CreateReader">
13702       <summary>Gets the value of the XML content of this <see cref="T:System.Data.SqlTypes.SqlXml" /> as a <see cref="T:System.Xml.XmlReader" />.</summary>
13703       <returns>A <see cref="T:System.Xml.XmlReader" />-derived instance that contains the XML content. The actual type may vary (for example, the return value might be <see cref="T:System.Xml.XmlTextReader" />) depending on how the information is represented internally, on the server.</returns>
13704       <exception cref="T:System.Data.SqlTypes.SqlNullValueException">Attempt was made to access this property on a null instance of <see cref="T:System.Data.SqlTypes.SqlXml" />.</exception>
13705     </member>
13706     <member name="M:System.Data.SqlTypes.SqlXml.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
13707       <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
13708       <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
13709       <returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
13710     </member>
13711     <member name="P:System.Data.SqlTypes.SqlXml.IsNull">
13712       <summary>Indicates whether this instance represents a null <see cref="T:System.Data.SqlTypes.SqlXml" /> value.</summary>
13713       <returns>
13714         <see langword="true" /> if <see langword="Value" /> is null. Otherwise, <see langword="false" />.</returns>
13715     </member>
13716     <member name="P:System.Data.SqlTypes.SqlXml.Null">
13717       <summary>Represents a null instance of the <see cref="T:System.Data.SqlTypes.SqlXml" /> type.</summary>
13718       <returns>A null instance of the <see cref="T:System.Data.SqlTypes.SqlXml" /> type.</returns>
13719     </member>
13720     <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#GetSchema">
13721       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
13722       <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
13723     </member>
13724     <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
13725       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
13726       <param name="r">An XmlReader.</param>
13727     </member>
13728     <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
13729       <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
13730       <param name="writer">An XmlWriter</param>
13731     </member>
13732     <member name="P:System.Data.SqlTypes.SqlXml.Value">
13733       <summary>Gets the string representation of the XML content of this <see cref="T:System.Data.SqlTypes.SqlXml" /> instance.</summary>
13734       <returns>The string representation of the XML content.</returns>
13735     </member>
13736     <member name="T:System.Data.SqlTypes.StorageState">
13737       <summary>The <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration is not intended for use as a stand-alone component, but as an enumeration from which other classes derive standard functionality.</summary>
13738     </member>
13739     <member name="F:System.Data.SqlTypes.StorageState.Buffer">
13740       <summary>Buffer size.</summary>
13741     </member>
13742     <member name="F:System.Data.SqlTypes.StorageState.Stream">
13743       <summary>Stream.</summary>
13744     </member>
13745     <member name="F:System.Data.SqlTypes.StorageState.UnmanagedBuffer">
13746       <summary>Unmanaged buffer.</summary>
13747     </member>
13748     <member name="T:System.Data.StateChangeEventArgs">
13749       <summary>Provides data for the state change event of a .NET Framework data provider.</summary>
13750     </member>
13751     <member name="M:System.Data.StateChangeEventArgs.#ctor(System.Data.ConnectionState,System.Data.ConnectionState)">
13752       <summary>Initializes a new instance of the <see cref="T:System.Data.StateChangeEventArgs" /> class, when given the original state and the current state of the object.</summary>
13753       <param name="originalState">One of the <see cref="T:System.Data.ConnectionState" /> values.</param>
13754       <param name="currentState">One of the <see cref="T:System.Data.ConnectionState" /> values.</param>
13755     </member>
13756     <member name="P:System.Data.StateChangeEventArgs.CurrentState">
13757       <summary>Gets the new state of the connection. The connection object will be in the new state already when the event is fired.</summary>
13758       <returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
13759     </member>
13760     <member name="P:System.Data.StateChangeEventArgs.OriginalState">
13761       <summary>Gets the original state of the connection.</summary>
13762       <returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
13763     </member>
13764     <member name="T:System.Data.StateChangeEventHandler">
13765       <summary>Represents the method that will handle the <see cref="E:System.Data.Common.DbConnection.StateChange" /> event.</summary>
13766       <param name="sender">The source of the event.</param>
13767       <param name="e">The <see cref="T:System.Data.StateChangeEventArgs" /> that contains the event data.</param>
13768     </member>
13769     <member name="T:System.Data.StatementCompletedEventArgs">
13770       <summary>Provides additional information for the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted" /> event.</summary>
13771     </member>
13772     <member name="M:System.Data.StatementCompletedEventArgs.#ctor(System.Int32)">
13773       <summary>Creates a new instance of the <see cref="T:System.Data.StatementCompletedEventArgs" /> class.</summary>
13774       <param name="recordCount">Indicates the number of rows affected by the statement that caused the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted" /> event to occur.</param>
13775     </member>
13776     <member name="P:System.Data.StatementCompletedEventArgs.RecordCount">
13777       <summary>Indicates the number of rows affected by the statement that caused the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted" /> event to occur.</summary>
13778       <returns>The number of rows affected.</returns>
13779     </member>
13780     <member name="T:System.Data.StatementCompletedEventHandler">
13781       <summary>The delegate type for the event handlers of the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted" /> event.</summary>
13782       <param name="sender">The source of the event.</param>
13783       <param name="e">The data for the event.</param>
13784     </member>
13785     <member name="T:System.Data.StatementType">
13786       <summary>Specifies the type of SQL query to be used by the <see cref="T:System.Data.OleDb.OleDbRowUpdatedEventArgs" />, <see cref="T:System.Data.OleDb.OleDbRowUpdatingEventArgs" />, <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs" />, or <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs" /> class.</summary>
13787     </member>
13788     <member name="F:System.Data.StatementType.Batch">
13789       <summary>A SQL query that is a batch statement.</summary>
13790     </member>
13791     <member name="F:System.Data.StatementType.Delete">
13792       <summary>An SQL query that is a DELETE statement.</summary>
13793     </member>
13794     <member name="F:System.Data.StatementType.Insert">
13795       <summary>An SQL query that is an INSERT statement.</summary>
13796     </member>
13797     <member name="F:System.Data.StatementType.Select">
13798       <summary>An SQL query that is a SELECT statement.</summary>
13799     </member>
13800     <member name="F:System.Data.StatementType.Update">
13801       <summary>An SQL query that is an UPDATE statement.</summary>
13802     </member>
13803     <member name="T:System.Data.StrongTypingException">
13804       <summary>The exception that is thrown by a strongly typed <see cref="T:System.Data.DataSet" /> when the user accesses a <see langword="DBNull" /> value.</summary>
13805     </member>
13806     <member name="M:System.Data.StrongTypingException.#ctor">
13807       <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class.</summary>
13808     </member>
13809     <member name="M:System.Data.StrongTypingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
13810       <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class using the specified serialization information and streaming context.</summary>
13811       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
13812       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure.</param>
13813     </member>
13814     <member name="M:System.Data.StrongTypingException.#ctor(System.String)">
13815       <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class with the specified string.</summary>
13816       <param name="message">The string to display when the exception is thrown.</param>
13817     </member>
13818     <member name="M:System.Data.StrongTypingException.#ctor(System.String,System.Exception)">
13819       <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class with the specified string and inner exception.</summary>
13820       <param name="s">The string to display when the exception is thrown.</param>
13821       <param name="innerException">A reference to an inner exception.</param>
13822     </member>
13823     <member name="T:System.Data.SyntaxErrorException">
13824       <summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression" /> property of a <see cref="T:System.Data.DataColumn" /> contains a syntax error.</summary>
13825     </member>
13826     <member name="M:System.Data.SyntaxErrorException.#ctor">
13827       <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class.</summary>
13828     </member>
13829     <member name="M:System.Data.SyntaxErrorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
13830       <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
13831       <param name="info">The data needed to serialize or deserialize an object.</param>
13832       <param name="context">The source and destination of a specific serialized stream.</param>
13833     </member>
13834     <member name="M:System.Data.SyntaxErrorException.#ctor(System.String)">
13835       <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with the specified string.</summary>
13836       <param name="s">The string to display when the exception is thrown.</param>
13837     </member>
13838     <member name="M:System.Data.SyntaxErrorException.#ctor(System.String,System.Exception)">
13839       <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
13840       <param name="message">The error message that explains the reason for the exception.</param>
13841       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
13842     </member>
13843     <member name="T:System.Data.TypedTableBase`1">
13844       <summary>This type is used as a base class for typed-<see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool, and is not intended to be used directly from your code.</summary>
13845       <typeparam name="T">The type of objects in the source sequence represented by the table, typically <see cref="T:System.Data.DataRow" />.</typeparam>
13846     </member>
13847     <member name="M:System.Data.TypedTableBase`1.#ctor">
13848       <summary>Initializes a new <see cref="T:System.Data.TypedTableBase`1" />. This method supports typed-<see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool. This type is not intended to be used directly from your code.</summary>
13849     </member>
13850     <member name="M:System.Data.TypedTableBase`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
13851       <summary>Initializes a new <see cref="T:System.Data.TypedTableBase`1" />. This method supports typed-<see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool. This method is not intended to be used directly from your code.</summary>
13852       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains data to construct the object.</param>
13853       <param name="context">The streaming context for the object being deserialized.</param>
13854     </member>
13855     <member name="M:System.Data.TypedTableBase`1.Cast``1">
13856       <summary>Converts the elements of an <see cref="T:System.Data.TypedTableBase`1" /> to the specified type. This method supports typed <see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool. This method is not intended to be used directly from your code.</summary>
13857       <typeparam name="TResult" />
13858       <returns>An <see cref="T:System.Data.EnumerableRowCollection" /> that contains each element of the source sequence converted to the specified type.</returns>
13859     </member>
13860     <member name="M:System.Data.TypedTableBase`1.GetEnumerator">
13861       <summary>Returns an enumerator for the typed-<see cref="T:System.Data.DataRow" />. This method supports typed-<see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool. This method is not intended to be used directly from your code.</summary>
13862       <returns>An object that implements the <see cref="T:System.Collections.Generic.IEnumerator`1" /> interface.</returns>
13863     </member>
13864     <member name="M:System.Data.TypedTableBase`1.System#Collections#IEnumerable#GetEnumerator">
13865       <summary>Returns an enumerator for the typed-<see cref="T:System.Data.DataRow" />. This method supports typed-<see cref="T:System.Data.DataTable" /> object generation by Visual Studio and the XSD.exe .NET Framework tool. This method is not intended to be used directly from your code.</summary>
13866       <returns>An object that implements the <see cref="T:System.Collections.Generic.IEnumerator`1" /> interface.</returns>
13867     </member>
13868     <member name="T:System.Data.TypedTableBaseExtensions">
13869       <summary>Contains the extension methods for the <see cref="T:System.Data.TypedTableBase`1" /> class.</summary>
13870     </member>
13871     <member name="M:System.Data.TypedTableBaseExtensions.AsEnumerable``1(System.Data.TypedTableBase{``0})">
13872       <summary>Enumerates the data row elements of the <see cref="T:System.Data.TypedTableBase`1" /> and returns an <see cref="T:System.Data.EnumerableRowCollection`1" /> object, where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />. This object can be used in a LINQ expression or method query.</summary>
13873       <param name="source">The source <see cref="T:System.Data.TypedTableBase`1" /> to make enumerable.</param>
13874       <typeparam name="TRow">The type to convert the elements of the source to.</typeparam>
13875       <returns>An <see cref="T:System.Data.EnumerableRowCollection`1" /> object, where the generic parameter <paramref name="T" /> is <see cref="T:System.Data.DataRow" />.</returns>
13876     </member>
13877     <member name="M:System.Data.TypedTableBaseExtensions.ElementAtOrDefault``1(System.Data.TypedTableBase{``0},System.Int32)">
13878       <summary>Returns the element at a specified row in a sequence or a default value if the row is out of range.</summary>
13879       <param name="source">An enumerable object to return an element from.</param>
13880       <param name="index">The zero-based index of the element to retrieve.</param>
13881       <typeparam name="TRow">The type of the elements or the row.</typeparam>
13882       <returns>The element at a specified row in a sequence.</returns>
13883     </member>
13884     <member name="M:System.Data.TypedTableBaseExtensions.OrderBy``2(System.Data.TypedTableBase{``0},System.Func{``0,``1})">
13885       <summary>Sorts the rows of a <see cref="T:System.Data.TypedTableBase`1" /> in ascending order according to the specified key.</summary>
13886       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
13887       <param name="keySelector">A function to extract a key from an element.</param>
13888       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
13889       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
13890       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
13891     </member>
13892     <member name="M:System.Data.TypedTableBaseExtensions.OrderBy``2(System.Data.TypedTableBase{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
13893       <summary>Sorts the rows of a <see cref="T:System.Data.TypedTableBase`1" /> in ascending order according to the specified key and comparer.</summary>
13894       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
13895       <param name="keySelector">A function to extract a key from an element.</param>
13896       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
13897       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
13898       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
13899       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
13900     </member>
13901     <member name="M:System.Data.TypedTableBaseExtensions.OrderByDescending``2(System.Data.TypedTableBase{``0},System.Func{``0,``1})">
13902       <summary>Sorts the rows of a <see cref="T:System.Data.TypedTableBase`1" /> in descending order according to the specified key.</summary>
13903       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
13904       <param name="keySelector">A function to extract a key from an element.</param>
13905       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
13906       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
13907       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key.</returns>
13908     </member>
13909     <member name="M:System.Data.TypedTableBaseExtensions.OrderByDescending``2(System.Data.TypedTableBase{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
13910       <summary>Sorts the rows of a <see cref="T:System.Data.TypedTableBase`1" /> in descending order according to the specified key and comparer.</summary>
13911       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to be ordered.</param>
13912       <param name="keySelector">A function to extract a key from an element.</param>
13913       <param name="comparer">An <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param>
13914       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, typically <see cref="T:System.Data.DataRow" />.</typeparam>
13915       <typeparam name="TKey">The type of the key returned by <paramref name="keySelector" />.</typeparam>
13916       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> whose elements are sorted by the specified key and comparer.</returns>
13917     </member>
13918     <member name="M:System.Data.TypedTableBaseExtensions.Select``2(System.Data.TypedTableBase{``0},System.Func{``0,``1})">
13919       <summary>Projects each element of a <see cref="T:System.Data.TypedTableBase`1" /> into a new form.</summary>
13920       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to invoke a transformation function upon.</param>
13921       <param name="selector">A transformation function to apply to each element.</param>
13922       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, <see cref="T:System.Data.DataRow" />.</typeparam>
13923       <typeparam name="S" />
13924       <returns>An <see cref="T:System.Data.EnumerableRowCollection`1" /> whose elements are the result of invoking the transformation function on each element of <paramref name="source" />.</returns>
13925     </member>
13926     <member name="M:System.Data.TypedTableBaseExtensions.Where``1(System.Data.TypedTableBase{``0},System.Func{``0,System.Boolean})">
13927       <summary>Filters a sequence of rows based on the specified predicate.</summary>
13928       <param name="source">A <see cref="T:System.Data.TypedTableBase`1" /> that contains the <see cref="T:System.Data.DataRow" /> elements to filter.</param>
13929       <param name="predicate">A function to test each element for a condition.</param>
13930       <typeparam name="TRow">The type of the row elements in <paramref name="source" />, <see cref="T:System.Data.DataRow" />.</typeparam>
13931       <returns>An <see cref="T:System.Data.OrderedEnumerableRowCollection`1" /> that contains rows from the input sequence that satisfy the condition.</returns>
13932     </member>
13933     <member name="T:System.Data.UniqueConstraint">
13934       <summary>Represents a restriction on a set of columns in which all values must be unique.</summary>
13935     </member>
13936     <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn)">
13937       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified <see cref="T:System.Data.DataColumn" />.</summary>
13938       <param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
13939     </member>
13940     <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn,System.Boolean)">
13941       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the <see cref="T:System.Data.DataColumn" /> to constrain, and a value specifying whether the constraint is a primary key.</summary>
13942       <param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
13943       <param name="isPrimaryKey">
13944         <see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
13945     </member>
13946     <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[])">
13947       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the given array of <see cref="T:System.Data.DataColumn" /> objects.</summary>
13948       <param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
13949     </member>
13950     <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[],System.Boolean)">
13951       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
13952       <param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
13953       <param name="isPrimaryKey">
13954         <see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
13955     </member>
13956     <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn)">
13957       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name and <see cref="T:System.Data.DataColumn" />.</summary>
13958       <param name="name">The name of the constraint.</param>
13959       <param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
13960     </member>
13961     <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn,System.Boolean)">
13962       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, the <see cref="T:System.Data.DataColumn" /> to constrain, and a value specifying whether the constraint is a primary key.</summary>
13963       <param name="name">The name of the constraint.</param>
13964       <param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
13965       <param name="isPrimaryKey">
13966         <see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
13967     </member>
13968     <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[])">
13969       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name and array of <see cref="T:System.Data.DataColumn" /> objects.</summary>
13970       <param name="name">The name of the constraint.</param>
13971       <param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
13972     </member>
13973     <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[],System.Boolean)">
13974       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
13975       <param name="name">The name of the constraint.</param>
13976       <param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
13977       <param name="isPrimaryKey">
13978         <see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
13979     </member>
13980     <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.String[],System.Boolean)">
13981       <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
13982       <param name="name">The name of the constraint.</param>
13983       <param name="columnNames">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
13984       <param name="isPrimaryKey">
13985         <see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
13986     </member>
13987     <member name="P:System.Data.UniqueConstraint.Columns">
13988       <summary>Gets the array of columns that this constraint affects.</summary>
13989       <returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
13990     </member>
13991     <member name="M:System.Data.UniqueConstraint.Equals(System.Object)">
13992       <summary>Compares this constraint to a second to determine if both are identical.</summary>
13993       <param name="key2">The object to which this <see cref="T:System.Data.UniqueConstraint" /> is compared.</param>
13994       <returns>
13995         <see langword="true" />, if the constraints are equal; otherwise, <see langword="false" />.</returns>
13996     </member>
13997     <member name="M:System.Data.UniqueConstraint.GetHashCode">
13998       <summary>Gets the hash code of this instance of the <see cref="T:System.Data.UniqueConstraint" /> object.</summary>
13999       <returns>A 32-bit signed integer hash code.</returns>
14000     </member>
14001     <member name="P:System.Data.UniqueConstraint.IsPrimaryKey">
14002       <summary>Gets a value indicating whether or not the constraint is on a primary key.</summary>
14003       <returns>
14004         <see langword="true" />, if the constraint is on a primary key; otherwise, <see langword="false" />.</returns>
14005     </member>
14006     <member name="P:System.Data.UniqueConstraint.Table">
14007       <summary>Gets the table to which this constraint belongs.</summary>
14008       <returns>The <see cref="T:System.Data.DataTable" /> to which the constraint belongs.</returns>
14009     </member>
14010     <member name="T:System.Data.UpdateRowSource">
14011       <summary>Specifies how query command results are applied to the row being updated.</summary>
14012     </member>
14013     <member name="F:System.Data.UpdateRowSource.Both">
14014       <summary>Both the output parameters and the first returned row are mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
14015     </member>
14016     <member name="F:System.Data.UpdateRowSource.FirstReturnedRecord">
14017       <summary>The data in the first returned row is mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
14018     </member>
14019     <member name="F:System.Data.UpdateRowSource.None">
14020       <summary>Any returned parameters or rows are ignored.</summary>
14021     </member>
14022     <member name="F:System.Data.UpdateRowSource.OutputParameters">
14023       <summary>Output parameters are mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
14024     </member>
14025     <member name="T:System.Data.UpdateStatus">
14026       <summary>Specifies the action to take with regard to the current and remaining rows during an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
14027     </member>
14028     <member name="F:System.Data.UpdateStatus.Continue">
14029       <summary>The <see cref="T:System.Data.Common.DataAdapter" /> is to continue processing rows.</summary>
14030     </member>
14031     <member name="F:System.Data.UpdateStatus.ErrorsOccurred">
14032       <summary>The event handler reports that the update should be treated as an error.</summary>
14033     </member>
14034     <member name="F:System.Data.UpdateStatus.SkipAllRemainingRows">
14035       <summary>The current row and all remaining rows are not to be updated.</summary>
14036     </member>
14037     <member name="F:System.Data.UpdateStatus.SkipCurrentRow">
14038       <summary>The current row is not to be updated.</summary>
14039     </member>
14040     <member name="T:System.Data.VersionNotFoundException">
14041       <summary>Represents the exception that is thrown when you try to return a version of a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
14042     </member>
14043     <member name="M:System.Data.VersionNotFoundException.#ctor">
14044       <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class.</summary>
14045     </member>
14046     <member name="M:System.Data.VersionNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
14047       <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with serialization information.</summary>
14048       <param name="info">The data that is required to serialize or deserialize an object.</param>
14049       <param name="context">Description of the source and destination of the specified serialized stream.</param>
14050     </member>
14051     <member name="M:System.Data.VersionNotFoundException.#ctor(System.String)">
14052       <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with the specified string.</summary>
14053       <param name="s">The string to display when the exception is thrown.</param>
14054     </member>
14055     <member name="M:System.Data.VersionNotFoundException.#ctor(System.String,System.Exception)">
14056       <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
14057       <param name="message">The error message that explains the reason for the exception.</param>
14058       <param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
14059     </member>
14060     <member name="T:System.Data.XmlReadMode">
14061       <summary>Specifies how to read XML data and a relational schema into a <see cref="T:System.Data.DataSet" />.</summary>
14062     </member>
14063     <member name="F:System.Data.XmlReadMode.Auto">
14064       <summary>The default read mode.</summary>
14065     </member>
14066     <member name="F:System.Data.XmlReadMode.DiffGram">
14067       <summary>Reads a DiffGram, applying changes from the DiffGram to the <see cref="T:System.Data.DataSet" />. The semantics are identical to those of a <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" /> operation. As with the <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" /> operation, <see cref="P:System.Data.DataRow.RowState" /> values are preserved. Input to <see cref="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)" /> with DiffGrams should only be obtained using the output from <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)" /> as a DiffGram.
14068 The target <see cref="T:System.Data.DataSet" /> must have the same schema as the <see cref="T:System.Data.DataSet" /> on which <see cref="Overload:System.Data.DataSet.WriteXml" /> as DiffGram is called. Otherwise the DiffGram merge operation fails and an exception is thrown.</summary>
14069     </member>
14070     <member name="F:System.Data.XmlReadMode.Fragment">
14071       <summary>Reads XML fragments, such as those generated by executing FOR XML queries, against an instance of SQL Server. When <see cref="T:System.Data.XmlReadMode" /> is set to <see langword="Fragment" />, the default namespace is read as the inline schema.</summary>
14072     </member>
14073     <member name="F:System.Data.XmlReadMode.IgnoreSchema">
14074       <summary>Ignores any inline schema and reads data into the existing <see cref="T:System.Data.DataSet" /> schema. If any data does not match the existing schema, it is discarded (including data from differing namespaces defined for the <see cref="T:System.Data.DataSet" />). If the data is a DiffGram, <see langword="IgnoreSchema" /> has the same functionality as <see langword="DiffGram" />.</summary>
14075     </member>
14076     <member name="F:System.Data.XmlReadMode.InferSchema">
14077       <summary>Ignores any inline schema, infers schema from the data and loads the data. If the <see cref="T:System.Data.DataSet" /> already contains a schema, the current schema is extended by adding new tables or adding columns to existing tables. An exception is thrown if the inferred table already exists but with a different namespace, or if any of the inferred columns conflict with existing columns.</summary>
14078     </member>
14079     <member name="F:System.Data.XmlReadMode.InferTypedSchema">
14080       <summary>Ignores any inline schema, infers a strongly typed schema from the data, and loads the data. If the type cannot be inferred from the data, it is interpreted as string data. If the <see cref="T:System.Data.DataSet" /> already contains a schema, the current schema is extended, either by adding new tables or by adding columns to existing tables. An exception is thrown if the inferred table already exists but with a different namespace, or if any of the inferred columns conflict with existing columns.</summary>
14081     </member>
14082     <member name="F:System.Data.XmlReadMode.ReadSchema">
14083       <summary>Reads any inline schema and loads the data. If the <see cref="T:System.Data.DataSet" /> already contains schema, new tables may be added to the schema, but an exception is thrown if any tables in the inline schema already exist in the <see cref="T:System.Data.DataSet" />.</summary>
14084     </member>
14085     <member name="T:System.Data.XmlWriteMode">
14086       <summary>Specifies how to write XML data and a relational schema from a <see cref="T:System.Data.DataSet" />.</summary>
14087     </member>
14088     <member name="F:System.Data.XmlWriteMode.DiffGram">
14089       <summary>Writes the entire <see cref="T:System.Data.DataSet" /> as a DiffGram, including original and current values. To generate a DiffGram containing only changed values, call <see cref="M:System.Data.DataSet.GetChanges" />, and then call <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)" /> as a DiffGram on the returned <see cref="T:System.Data.DataSet" />.</summary>
14090     </member>
14091     <member name="F:System.Data.XmlWriteMode.IgnoreSchema">
14092       <summary>Writes the current contents of the <see cref="T:System.Data.DataSet" /> as XML data, without an XSD schema. If no data is loaded into the <see cref="T:System.Data.DataSet" />, nothing is written.</summary>
14093     </member>
14094     <member name="F:System.Data.XmlWriteMode.WriteSchema">
14095       <summary>Writes the current contents of the <see cref="T:System.Data.DataSet" /> as XML data with the relational structure as inline XSD schema. If the <see cref="T:System.Data.DataSet" /> has only a schema with no data, only the inline schema is written. If the <see cref="T:System.Data.DataSet" /> does not have a current schema, nothing is written.</summary>
14096     </member>
14097     <member name="T:System.Xml.XmlDataDocument">
14098       <summary>Allows structured data to be stored, retrieved, and manipulated through a relational <see cref="T:System.Data.DataSet" />.</summary>
14099     </member>
14100     <member name="M:System.Xml.XmlDataDocument.#ctor">
14101       <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDataDocument" /> class.</summary>
14102     </member>
14103     <member name="M:System.Xml.XmlDataDocument.#ctor(System.Data.DataSet)">
14104       <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDataDocument" /> class with the specified <see cref="T:System.Data.DataSet" />.</summary>
14105       <param name="dataset">The <see langword="DataSet" /> to load into <see langword="XmlDataDocument" />.</param>
14106     </member>
14107     <member name="M:System.Xml.XmlDataDocument.CloneNode(System.Boolean)">
14108       <summary>Creates a duplicate of the current node.</summary>
14109       <param name="deep">
14110         <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
14111       <returns>The cloned node.</returns>
14112     </member>
14113     <member name="M:System.Xml.XmlDataDocument.CreateElement(System.String,System.String,System.String)">
14114       <summary>Creates an element with the specified <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.LocalName" /> , and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
14115       <param name="prefix">The prefix of the new element. If String.Empty or <see langword="null" />, there is no prefix.</param>
14116       <param name="localName">The local name of the new element.</param>
14117       <param name="namespaceURI">The namespace Uniform Resource Identifier (URI) of the new element. If String.Empty or <see langword="null" />, there is no namespaceURI.</param>
14118       <returns>A new <see cref="T:System.Xml.XmlElement" />.</returns>
14119     </member>
14120     <member name="M:System.Xml.XmlDataDocument.CreateEntityReference(System.String)">
14121       <summary>Creates an <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</summary>
14122       <param name="name">The name of the entity reference.</param>
14123       <returns>An <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</returns>
14124       <exception cref="T:System.NotSupportedException">Calling this method.</exception>
14125     </member>
14126     <member name="M:System.Xml.XmlDataDocument.CreateNavigator(System.Xml.XmlNode)">
14127       <summary>Creates a new <see cref="T:System.Xml.XPath.XPathNavigator" /> object for navigating this document. The <see langword="XPathNavigator" /> is positioned on the node specified in the <paramref name="node" /> parameter.</summary>
14128       <param name="node">The <see cref="T:System.Xml.XmlNode" /> you want the navigator initially positioned on.</param>
14129       <returns>An <see langword="XPathNavigator" /> used to navigate the document.</returns>
14130     </member>
14131     <member name="P:System.Xml.XmlDataDocument.DataSet">
14132       <summary>Gets a <see cref="T:System.Data.DataSet" /> that provides a relational representation of the data in the <see langword="XmlDataDocument" />.</summary>
14133       <returns>A <see langword="DataSet" /> that can be used to access the data in the <see langword="XmlDataDocument" /> using a relational model.</returns>
14134     </member>
14135     <member name="M:System.Xml.XmlDataDocument.GetElementById(System.String)">
14136       <summary>Gets the <see cref="T:System.Xml.XmlElement" /> with the specified ID. This method is not supported by the <see cref="T:System.Xml.XmlDataDocument" /> class. Calling this method throws an exception.</summary>
14137       <param name="elemId">The attribute ID to match.</param>
14138       <returns>An <see cref="T:System.Xml.XmlElement" /> with the specified ID.</returns>
14139       <exception cref="T:System.NotSupportedException">Calling this method.</exception>
14140     </member>
14141     <member name="M:System.Xml.XmlDataDocument.GetElementFromRow(System.Data.DataRow)">
14142       <summary>Retrieves the <see cref="T:System.Xml.XmlElement" /> associated with the specified <see cref="T:System.Data.DataRow" />.</summary>
14143       <param name="r">The <see langword="DataRow" /> whose associated <see langword="XmlElement" /> you want to retrieve.</param>
14144       <returns>The <see langword="XmlElement" /> containing a representation of the specified <see langword="DataRow" />.</returns>
14145     </member>
14146     <member name="M:System.Xml.XmlDataDocument.GetElementsByTagName(System.String)">
14147       <summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlDocument.Name" />.</summary>
14148       <param name="name">The qualified name to match. It is matched against the <see cref="P:System.Xml.XmlDocument.Name" /> property of the matching node. The special value "*" matches all tags.</param>
14149       <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</returns>
14150     </member>
14151     <member name="M:System.Xml.XmlDataDocument.GetRowFromElement(System.Xml.XmlElement)">
14152       <summary>Retrieves the <see cref="T:System.Data.DataRow" /> associated with the specified <see cref="T:System.Xml.XmlElement" />.</summary>
14153       <param name="e">The <see langword="XmlElement" /> whose associated <see langword="DataRow" /> you want to retrieve.</param>
14154       <returns>The <see langword="DataRow" /> containing a representation of the <see langword="XmlElement" />; <see langword="null" /> if there is no <see langword="DataRow" /> associated with the <see langword="XmlElement" />.</returns>
14155     </member>
14156     <member name="M:System.Xml.XmlDataDocument.Load(System.IO.Stream)">
14157       <summary>Loads the <see langword="XmlDataDocument" /> from the specified stream.</summary>
14158       <param name="inStream">The stream containing the XML document to load.</param>
14159     </member>
14160     <member name="M:System.Xml.XmlDataDocument.Load(System.IO.TextReader)">
14161       <summary>Loads the <see langword="XmlDataDocument" /> from the specified <see cref="T:System.IO.TextReader" />.</summary>
14162       <param name="txtReader">The <see langword="TextReader" /> used to feed the XML data into the document.</param>
14163     </member>
14164     <member name="M:System.Xml.XmlDataDocument.Load(System.String)">
14165       <summary>Loads the <see langword="XmlDataDocument" /> using the specified URL.</summary>
14166       <param name="filename">The URL of the file containing the XML document to load.</param>
14167     </member>
14168     <member name="M:System.Xml.XmlDataDocument.Load(System.Xml.XmlReader)">
14169       <summary>Loads the <see langword="XmlDataDocument" /> from the specified <see cref="T:System.Xml.XmlReader" />.</summary>
14170       <param name="reader">The <see langword="XmlReader" /> containing the XML document to load.</param>
14171       <exception cref="T:System.NotSupportedException">The XML being loaded contains entity references, and the reader cannot resolve entities.</exception>
14172     </member>
14173   </members>
14174 </doc>