summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml12842
1 files changed, 12842 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml
new file mode 100755
index 0000000000..ddc5e0de00
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml
@@ -0,0 +1,12842 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.Data.Common</name>
+ </assembly>
+ <members>
+ <member name="T:System.Data.EvaluateException">
+ <summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression"></see> property of a <see cref="T:System.Data.DataColumn"></see> cannot be evaluated.</summary>
+ </member>
+ <member name="M:System.Data.EvaluateException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.EvaluateException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.EvaluateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException"></see> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> and the <see cref="T:System.Runtime.Serialization.StreamingContext"></see>.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a particular serialized stream.</param>
+ </member>
+ <member name="M:System.Data.EvaluateException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.FillErrorEventArgs">
+ <summary>Provides data for the <see cref="E:System.Data.Common.DataAdapter.FillError"></see> event of a <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ </member>
+ <member name="M:System.Data.FillErrorEventArgs.#ctor(System.Data.DataTable,System.Object[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.FillErrorEventArgs"></see> class.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> being updated.</param>
+ <param name="values">The values for the row being updated.</param>
+ </member>
+ <member name="P:System.Data.FillErrorEventArgs.Continue">
+ <summary>Gets or sets a value indicating whether to continue the fill operation despite the error.</summary>
+ <returns>true if the fill operation should continue; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.FillErrorEventArgs.DataTable">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> being updated when the error occurred.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> being updated.</returns>
+ </member>
+ <member name="P:System.Data.FillErrorEventArgs.Errors">
+ <summary>Gets the errors being handled.</summary>
+ <returns>The errors being handled.</returns>
+ </member>
+ <member name="P:System.Data.FillErrorEventArgs.Values">
+ <summary>Gets the values for the row being updated when the error occurred.</summary>
+ <returns>The values for the row being updated.</returns>
+ </member>
+ <member name="T:System.Data.FillErrorEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Data.Common.DataAdapter.FillError"></see> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">The <see cref="T:System.Data.FillErrorEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.ForeignKeyConstraint">
+ <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>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint"></see> class with the specified parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <param name="childColumn">The child <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint"></see> class with the specified arrays of parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint"></see> class with the specified name, parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="constraintName">The name of the constraint.</param>
+ <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <param name="childColumn">The child <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint"></see> class with the specified name, and arrays of parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="constraintName">The name of the <see cref="T:System.Data.ForeignKeyConstraint"></see>. If null or empty string, a default name will be given when added to the constraints collection.</param>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn"></see> in the constraint.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.String,System.String[],System.String[],System.Data.AcceptRejectRule,System.Data.Rule,System.Data.Rule)">
+ <summary>This constructor is provided for design time support in the Visual Studio environment. <see cref="T:System.Data.ForeignKeyConstraint"></see> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])"></see>. 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"></see> 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"></see> is called.</summary>
+ <param name="constraintName">The name of the constraint.</param>
+ <param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable"></see> that contains parent <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule"></see> values. Possible values include None, Cascade, and Default.</param>
+ <param name="deleteRule">One of the <see cref="T:System.Data.Rule"></see> values to use when a row is deleted. The default is Cascade. Possible values include: None, Cascade, SetNull, SetDefault, and Default.</param>
+ <param name="updateRule">One of the <see cref="T:System.Data.Rule"></see> values to use when a row is updated. The default is Cascade. Possible values include: None, Cascade, SetNull, SetDefault, and Default.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <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)">
+ <summary>This constructor is provided for design time support in the Visual Studio environment. <see cref="T:System.Data.ForeignKeyConstraint"></see> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])"></see>. 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"></see> 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"></see> is called.</summary>
+ <param name="constraintName">The name of the constraint.</param>
+ <param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable"></see> that contains parent <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="parentTableNamespace">The name of the <see cref="P:System.Data.DataTable.Namespace"></see>.</param>
+ <param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn"></see> objects in the constraint.</param>
+ <param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule"></see> values. Possible values include None, Cascade, and Default.</param>
+ <param name="deleteRule">One of the <see cref="T:System.Data.Rule"></see> values to use when a row is deleted. The default is Cascade. Possible values include: None, Cascade, SetNull, SetDefault, and Default.</param>
+ <param name="updateRule">One of the <see cref="T:System.Data.Rule"></see> values to use when a row is updated. The default is Cascade. Possible values include: None, Cascade, SetNull, SetDefault, and Default.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the columns is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types. -Or - The tables don't belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.AcceptRejectRule">
+ <summary>Indicates the action that should take place across this constraint when <see cref="M:System.Data.DataTable.AcceptChanges"></see> is invoked.</summary>
+ <returns>One of the <see cref="T:System.Data.AcceptRejectRule"></see> values. Possible values include None, and Cascade. The default is None.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.Columns">
+ <summary>Gets the child columns of this constraint.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects that are the child columns of the constraint.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.DeleteRule">
+ <summary>Gets or sets the action that occurs across this constraint when a row is deleted.</summary>
+ <returns>One of the <see cref="T:System.Data.Rule"></see> values. The default is Cascade.</returns>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.Equals(System.Object)">
+ <summary>Gets a value indicating whether the current <see cref="T:System.Data.ForeignKeyConstraint"></see> is identical to the specified object.</summary>
+ <param name="key">The object to which this <see cref="T:System.Data.ForeignKeyConstraint"></see> is compared. Two <see cref="T:System.Data.ForeignKeyConstraint"></see> are equal if they constrain the same columns.</param>
+ <returns>true, if the objects are identical; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.ForeignKeyConstraint.GetHashCode">
+ <summary>Gets the hash code of this instance of the <see cref="T:System.Data.ForeignKeyConstraint"></see> object.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.RelatedColumns">
+ <summary>The parent columns of this constraint.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects that are the parent columns of the constraint.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.RelatedTable">
+ <summary>Gets the parent table of this constraint.</summary>
+ <returns>The parent <see cref="T:System.Data.DataTable"></see> of this constraint.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.Table">
+ <summary>Gets the child table of this constraint.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that is the child table in the constraint.</returns>
+ </member>
+ <member name="P:System.Data.ForeignKeyConstraint.UpdateRule">
+ <summary>Gets or sets the action that occurs across this constraint on when a row is updated.</summary>
+ <returns>One of the <see cref="T:System.Data.Rule"></see> values. The default is Cascade.</returns>
+ </member>
+ <member name="T:System.Data.IColumnMapping">
+ <summary>Associates a data source column with a <see cref="T:System.Data.DataSet"></see> column, and is implemented by the <see cref="T:System.Data.Common.DataColumnMapping"></see> class, which is used in common by .NET Framework data providers.</summary>
+ </member>
+ <member name="P:System.Data.IColumnMapping.DataSetColumn">
+ <summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet"></see> to map to.</summary>
+ <returns>The name of the column within the <see cref="T:System.Data.DataSet"></see> to map to. The name is not case sensitive.</returns>
+ </member>
+ <member name="P:System.Data.IColumnMapping.SourceColumn">
+ <summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
+ <returns>The case-sensitive name of the column in the data source.</returns>
+ </member>
+ <member name="T:System.Data.IColumnMappingCollection">
+ <summary>Contains a collection of DataColumnMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see>, which is used in common by .NET Framework data providers.</summary>
+ </member>
+ <member name="M:System.Data.IColumnMappingCollection.Add(System.String,System.String)">
+ <summary>Adds a ColumnMapping object to the ColumnMapping collection using the source column and <see cref="T:System.Data.DataSet"></see> column names.</summary>
+ <param name="sourceColumnName">The case-sensitive name of the source column.</param>
+ <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet"></see> column.</param>
+ <returns>The ColumnMapping object that was added to the collection.</returns>
+ </member>
+ <member name="M:System.Data.IColumnMappingCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> contains a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name.</summary>
+ <param name="sourceColumnName">The case-sensitive name of the source column.</param>
+ <returns>true if a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name exists, otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.IColumnMappingCollection.GetByDataSetColumn(System.String)">
+ <summary>Gets the ColumnMapping object with the specified <see cref="T:System.Data.DataSet"></see> column name.</summary>
+ <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet"></see> column within the collection.</param>
+ <returns>The ColumnMapping object with the specified DataSet column name.</returns>
+ </member>
+ <member name="M:System.Data.IColumnMappingCollection.IndexOf(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name. The name is case-sensitive.</summary>
+ <param name="sourceColumnName">The case-sensitive name of the source column.</param>
+ <returns>The zero-based location of the DataColumnMapping object with the specified source column name.</returns>
+ </member>
+ <member name="P:System.Data.IColumnMappingCollection.Item(System.String)">
+ <summary>Gets or sets the <see cref="T:System.Data.IColumnMapping"></see> object with the specified SourceColumn name.</summary>
+ <param name="index">The SourceColumn name of the IColumnMapping object to find.</param>
+ <returns>The IColumnMapping object with the specified SourceColumn name.</returns>
+ </member>
+ <member name="M:System.Data.IColumnMappingCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.IColumnMapping"></see> object with the specified <see cref="P:System.Data.IColumnMapping.SourceColumn"></see> name from the collection.</summary>
+ <param name="sourceColumnName">The case-sensitive SourceColumn name.</param>
+ <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataColumnMapping"></see> object does not exist with the specified SourceColumn name.</exception>
+ </member>
+ <member name="T:System.Data.IDataAdapter">
+ <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"></see> and update a data source. <see cref="T:System.Data.IDbDataAdapter"></see> instances are for data sources that are (or resemble) relational databases with textual commands (like Transact-SQL), while <see cref="T:System.Data.IDataAdapter"></see> instances could can use any type of data source.</summary>
+ </member>
+ <member name="M:System.Data.IDataAdapter.Fill(System.Data.DataSet)">
+ <summary>Adds or updates rows in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> name, and creates a <see cref="T:System.Data.DataTable"></see> named &quot;Table&quot;.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> named &quot;Table&quot; to the specified <see cref="T:System.Data.DataSet"></see> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> to be filled with the schema from the data source.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <returns>An array of <see cref="T:System.Data.DataTable"></see> objects that contain schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.IDataAdapter.GetFillParameters">
+ <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
+ <returns>An array of <see cref="T:System.Data.IDataParameter"></see> objects that contains the parameters set by the user.</returns>
+ </member>
+ <member name="P:System.Data.IDataAdapter.MissingMappingAction">
+ <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>
+ <returns>One of the <see cref="T:System.Data.MissingMappingAction"></see> values. The default is Passthrough.</returns>
+ <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.IDataAdapter.MissingSchemaAction">
+ <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>
+ <returns>One of the <see cref="T:System.Data.MissingSchemaAction"></see> values. The default is Add.</returns>
+ <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.IDataAdapter.TableMappings">
+ <summary>Indicates how a source table is mapped to a dataset table.</summary>
+ <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet"></see>. The default value is an empty collection.</returns>
+ </member>
+ <member name="M:System.Data.IDataAdapter.Update(System.Data.DataSet)">
+ <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"></see> from a <see cref="T:System.Data.DataTable"></see> named &quot;Table&quot;.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> used to update the data source.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="T:System.Data.IDataParameter">
+ <summary>Represents a parameter to a Command object, and optionally, its mapping to <see cref="T:System.Data.DataSet"></see> columns; and is implemented by .NET Framework data providers that access data sources.</summary>
+ </member>
+ <member name="P:System.Data.IDataParameter.DbType">
+ <summary>Gets or sets the <see cref="T:System.Data.DbType"></see> of the parameter.</summary>
+ <returns>One of the <see cref="T:System.Data.DbType"></see> values. The default is <see cref="F:System.Data.DbType.String"></see>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType"></see>.</exception>
+ </member>
+ <member name="P:System.Data.IDataParameter.Direction">
+ <summary>Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
+ <returns>One of the <see cref="T:System.Data.ParameterDirection"></see> values. The default is Input.</returns>
+ <exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.IDataParameter.IsNullable">
+ <summary>Gets a value indicating whether the parameter accepts null values.</summary>
+ <returns>true if null values are accepted; otherwise, false. The default is false.</returns>
+ </member>
+ <member name="P:System.Data.IDataParameter.ParameterName">
+ <summary>Gets or sets the name of the <see cref="T:System.Data.IDataParameter"></see>.</summary>
+ <returns>The name of the <see cref="T:System.Data.IDataParameter"></see>. The default is an empty string.</returns>
+ </member>
+ <member name="P:System.Data.IDataParameter.SourceColumn">
+ <summary>Gets or sets the name of the source column that is mapped to the <see cref="T:System.Data.DataSet"></see> and used for loading or returning the <see cref="P:System.Data.IDataParameter.Value"></see>.</summary>
+ <returns>The name of the source column that is mapped to the <see cref="T:System.Data.DataSet"></see>. The default is an empty string.</returns>
+ </member>
+ <member name="P:System.Data.IDataParameter.SourceVersion">
+ <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion"></see> to use when loading <see cref="P:System.Data.IDataParameter.Value"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataRowVersion"></see> values. The default is Current.</returns>
+ <exception cref="T:System.ArgumentException">The property was not set one of the <see cref="T:System.Data.DataRowVersion"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.IDataParameter.Value">
+ <summary>Gets or sets the value of the parameter.</summary>
+ <returns>An <see cref="T:System.Object"></see> that is the value of the parameter. The default value is null.</returns>
+ </member>
+ <member name="T:System.Data.IDataParameterCollection">
+ <summary>Collects all parameters relevant to a Command object and their mappings to <see cref="T:System.Data.DataSet"></see> columns, and is implemented by .NET Framework data providers that access data sources.</summary>
+ </member>
+ <member name="M:System.Data.IDataParameterCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether a parameter in the collection has the specified name.</summary>
+ <param name="parameterName">The name of the parameter.</param>
+ <returns>true if the collection contains the parameter; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.IDataParameterCollection.IndexOf(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.IDataParameter"></see> within the collection.</summary>
+ <param name="parameterName">The name of the parameter.</param>
+ <returns>The zero-based location of the <see cref="T:System.Data.IDataParameter"></see> within the collection.</returns>
+ </member>
+ <member name="P:System.Data.IDataParameterCollection.Item(System.String)">
+ <summary>Gets or sets the parameter at the specified index.</summary>
+ <param name="parameterName">The name of the parameter to retrieve.</param>
+ <returns>An <see cref="T:System.Object"></see> at the specified index.</returns>
+ </member>
+ <member name="M:System.Data.IDataParameterCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.IDataParameter"></see> from the collection.</summary>
+ <param name="parameterName">The name of the parameter.</param>
+ </member>
+ <member name="T:System.Data.IDataReader">
+ <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>
+ </member>
+ <member name="M:System.Data.IDataReader.Close">
+ <summary>Closes the <see cref="T:System.Data.IDataReader"></see> Object.</summary>
+ </member>
+ <member name="P:System.Data.IDataReader.Depth">
+ <summary>Gets a value indicating the depth of nesting for the current row.</summary>
+ <returns>The level of nesting.</returns>
+ </member>
+ <member name="M:System.Data.IDataReader.GetSchemaTable">
+ <summary>Returns a <see cref="T:System.Data.DataTable"></see> that describes the column metadata of the <see cref="T:System.Data.IDataReader"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that describes the column metadata.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.IDataReader"></see> is closed.</exception>
+ </member>
+ <member name="P:System.Data.IDataReader.IsClosed">
+ <summary>Gets a value indicating whether the data reader is closed.</summary>
+ <returns>true if the data reader is closed; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.IDataReader.NextResult">
+ <summary>Advances the data reader to the next result, when reading the results of batch SQL statements.</summary>
+ <returns>true if there are more rows; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.IDataReader.Read">
+ <summary>Advances the <see cref="T:System.Data.IDataReader"></see> to the next record.</summary>
+ <returns>true if there are more rows; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.IDataReader.RecordsAffected">
+ <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
+ <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>
+ </member>
+ <member name="T:System.Data.IDataRecord">
+ <summary>Provides access to the column values within each row for a DataReader, and is implemented by .NET Framework data providers that access relational databases.</summary>
+ </member>
+ <member name="P:System.Data.IDataRecord.FieldCount">
+ <summary>Gets the number of columns in the current row.</summary>
+ <returns>When not positioned in a valid recordset, 0; otherwise, the number of columns in the current record. The default is -1.</returns>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetBoolean(System.Int32)">
+ <summary>Gets the value of the specified column as a Boolean.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <returns>The value of the column.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetByte(System.Int32)">
+ <summary>Gets the 8-bit unsigned integer value of the specified column.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <returns>The 8-bit unsigned integer value of the specified column.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <param name="fieldOffset">The index within the field from which to start the read operation.</param>
+ <param name="buffer">The buffer into which to read the stream of bytes.</param>
+ <param name="bufferoffset">The index for buffer to start the read operation.</param>
+ <param name="length">The number of bytes to read.</param>
+ <returns>The actual number of bytes read.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetChar(System.Int32)">
+ <summary>Gets the character value of the specified column.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <returns>The character value of the specified column.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <param name="fieldoffset">The index within the row from which to start the read operation.</param>
+ <param name="buffer">The buffer into which to read the stream of bytes.</param>
+ <param name="bufferoffset">The index for buffer to start the read operation.</param>
+ <param name="length">The number of bytes to read.</param>
+ <returns>The actual number of characters read.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetData(System.Int32)">
+ <summary>Returns an <see cref="T:System.Data.IDataReader"></see> for the specified column ordinal.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The <see cref="T:System.Data.IDataReader"></see> for the specified column ordinal.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetDataTypeName(System.Int32)">
+ <summary>Gets the data type information for the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The data type information for the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetDateTime(System.Int32)">
+ <summary>Gets the date and time data value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The date and time data value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetDecimal(System.Int32)">
+ <summary>Gets the fixed-position numeric value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The fixed-position numeric value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetDouble(System.Int32)">
+ <summary>Gets the double-precision floating point number of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The double-precision floating point number of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetFieldType(System.Int32)">
+ <summary>Gets the <see cref="T:System.Type"></see> information corresponding to the type of <see cref="T:System.Object"></see> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)"></see>.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The <see cref="T:System.Type"></see> information corresponding to the type of <see cref="T:System.Object"></see> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)"></see>.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetFloat(System.Int32)">
+ <summary>Gets the single-precision floating point number of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The single-precision floating point number of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetGuid(System.Int32)">
+ <summary>Returns the GUID value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The GUID value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetInt16(System.Int32)">
+ <summary>Gets the 16-bit signed integer value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The 16-bit signed integer value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetInt32(System.Int32)">
+ <summary>Gets the 32-bit signed integer value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The 32-bit signed integer value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetInt64(System.Int32)">
+ <summary>Gets the 64-bit signed integer value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The 64-bit signed integer value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetName(System.Int32)">
+ <summary>Gets the name for the field to find.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The name of the field or the empty string (&quot;&quot;), if there is no value to return.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetOrdinal(System.String)">
+ <summary>Return the index of the named field.</summary>
+ <param name="name">The name of the field to find.</param>
+ <returns>The index of the named field.</returns>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetString(System.Int32)">
+ <summary>Gets the string value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The string value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetValue(System.Int32)">
+ <summary>Return the value of the specified field.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>The <see cref="T:System.Object"></see> which will contain the field value upon return.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.IDataRecord.GetValues(System.Object[])">
+ <summary>Populates an array of objects with the column values of the current record.</summary>
+ <param name="values">An array of <see cref="T:System.Object"></see> to copy the attribute fields into.</param>
+ <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
+ </member>
+ <member name="M:System.Data.IDataRecord.IsDBNull(System.Int32)">
+ <summary>Return whether the specified field is set to null.</summary>
+ <param name="i">The index of the field to find.</param>
+ <returns>true if the specified field is set to null; otherwise, false.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="P:System.Data.IDataRecord.Item(System.Int32)">
+ <summary>Gets the column located at the specified index.</summary>
+ <param name="i">The zero-based index of the column to get.</param>
+ <returns>The column located at the specified index as an <see cref="T:System.Object"></see>.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="P:System.Data.IDataRecord.Item(System.String)">
+ <summary>Gets the column with the specified name.</summary>
+ <param name="name">The name of the column to find.</param>
+ <returns>The column with the specified name as an <see cref="T:System.Object"></see>.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
+ </member>
+ <member name="T:System.Data.IDbCommand">
+ <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>
+ </member>
+ <member name="M:System.Data.IDbCommand.Cancel">
+ <summary>Attempts to cancels the execution of an <see cref="T:System.Data.IDbCommand"></see>.</summary>
+ </member>
+ <member name="P:System.Data.IDbCommand.CommandText">
+ <summary>Gets or sets the text command to run against the data source.</summary>
+ <returns>The text command to execute. The default value is an empty string (&quot;&quot;).</returns>
+ </member>
+ <member name="P:System.Data.IDbCommand.CommandTimeout">
+ <summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
+ <returns>The time (in seconds) to wait for the command to execute. The default value is 30 seconds.</returns>
+ <exception cref="T:System.ArgumentException">The property value assigned is less than 0.</exception>
+ </member>
+ <member name="P:System.Data.IDbCommand.CommandType">
+ <summary>Indicates or specifies how the <see cref="P:System.Data.IDbCommand.CommandText"></see> property is interpreted.</summary>
+ <returns>One of the <see cref="T:System.Data.CommandType"></see> values. The default is Text.</returns>
+ </member>
+ <member name="P:System.Data.IDbCommand.Connection">
+ <summary>Gets or sets the <see cref="T:System.Data.IDbConnection"></see> used by this instance of the <see cref="T:System.Data.IDbCommand"></see>.</summary>
+ <returns>The connection to the data source.</returns>
+ </member>
+ <member name="M:System.Data.IDbCommand.CreateParameter">
+ <summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter"></see> object.</summary>
+ <returns>An IDbDataParameter object.</returns>
+ </member>
+ <member name="M:System.Data.IDbCommand.ExecuteNonQuery">
+ <summary>Executes an SQL statement against the Connection object of a .NET Framework data provider, and returns the number of rows affected.</summary>
+ <returns>The number of rows affected.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection does not exist. -or- The connection is not open.</exception>
+ </member>
+ <member name="M:System.Data.IDbCommand.ExecuteReader">
+ <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText"></see> against the <see cref="P:System.Data.IDbCommand.Connection"></see> and builds an <see cref="T:System.Data.IDataReader"></see>.</summary>
+ <returns>An <see cref="T:System.Data.IDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior)">
+ <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText"></see> against the <see cref="P:System.Data.IDbCommand.Connection"></see>, and builds an <see cref="T:System.Data.IDataReader"></see> using one of the <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>An <see cref="T:System.Data.IDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.IDbCommand.ExecuteScalar">
+ <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>
+ <returns>The first column of the first row in the resultset.</returns>
+ </member>
+ <member name="P:System.Data.IDbCommand.Parameters">
+ <summary>Gets the <see cref="T:System.Data.IDataParameterCollection"></see>.</summary>
+ <returns>The parameters of the SQL statement or stored procedure.</returns>
+ </member>
+ <member name="M:System.Data.IDbCommand.Prepare">
+ <summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OleDb.OleDbCommand.Connection"></see> is not set. -or- The <see cref="P:System.Data.OleDb.OleDbCommand.Connection"></see> is not <see cref="M:System.Data.OleDb.OleDbConnection.Open"></see>.</exception>
+ </member>
+ <member name="P:System.Data.IDbCommand.Transaction">
+ <summary>Gets or sets the transaction within which the Command object of a .NET Framework data provider executes.</summary>
+ <returns>the Command object of a .NET Framework data provider executes. The default value is null.</returns>
+ </member>
+ <member name="P:System.Data.IDbCommand.UpdatedRowSource">
+ <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow"></see> when used by the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see> method of a <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.UpdateRowSource"></see> values. The default is Both unless the command is automatically generated. Then the default is None.</returns>
+ <exception cref="T:System.ArgumentException">The value entered was not one of the <see cref="T:System.Data.UpdateRowSource"></see> values.</exception>
+ </member>
+ <member name="T:System.Data.IDbConnection">
+ <summary>Represents an open connection to a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
+ </member>
+ <member name="M:System.Data.IDbConnection.BeginTransaction">
+ <summary>Begins a database transaction.</summary>
+ <returns>An object representing the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel)">
+ <summary>Begins a database transaction with the specified <see cref="T:System.Data.IsolationLevel"></see> value.</summary>
+ <param name="il">One of the <see cref="T:System.Data.IsolationLevel"></see> values.</param>
+ <returns>An object representing the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.IDbConnection.ChangeDatabase(System.String)">
+ <summary>Changes the current database for an open Connection object.</summary>
+ <param name="databaseName">The name of the database to use in place of the current database.</param>
+ </member>
+ <member name="M:System.Data.IDbConnection.Close">
+ <summary>Closes the connection to the database.</summary>
+ </member>
+ <member name="P:System.Data.IDbConnection.ConnectionString">
+ <summary>Gets or sets the string used to open a database.</summary>
+ <returns>A string containing connection settings.</returns>
+ </member>
+ <member name="P:System.Data.IDbConnection.ConnectionTimeout">
+ <summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.</summary>
+ <returns>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</returns>
+ </member>
+ <member name="M:System.Data.IDbConnection.CreateCommand">
+ <summary>Creates and returns a Command object associated with the connection.</summary>
+ <returns>A Command object associated with the connection.</returns>
+ </member>
+ <member name="P:System.Data.IDbConnection.Database">
+ <summary>Gets the name of the current database or the database to be used after a connection is opened.</summary>
+ <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>
+ </member>
+ <member name="M:System.Data.IDbConnection.Open">
+ <summary>Opens a database connection with the settings specified by the ConnectionString property of the provider-specific Connection object.</summary>
+ </member>
+ <member name="P:System.Data.IDbConnection.State">
+ <summary>Gets the current state of the connection.</summary>
+ <returns>One of the <see cref="T:System.Data.ConnectionState"></see> values.</returns>
+ </member>
+ <member name="T:System.Data.IDbDataAdapter">
+ <summary>Represents a set of command-related properties that are used to fill the <see cref="T:System.Data.DataSet"></see> and update a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
+ </member>
+ <member name="P:System.Data.IDbDataAdapter.DeleteCommand">
+ <summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the data source for deleted rows in the data set.</returns>
+ </member>
+ <member name="P:System.Data.IDbDataAdapter.InsertCommand">
+ <summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to insert records in the data source for new rows in the data set.</returns>
+ </member>
+ <member name="P:System.Data.IDbDataAdapter.SelectCommand">
+ <summary>Gets or sets an SQL statement used to select records in the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to select records from data source for placement in the data set.</returns>
+ </member>
+ <member name="P:System.Data.IDbDataAdapter.UpdateCommand">
+ <summary>Gets or sets an SQL statement used to update records in the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to update records in the data source for modified rows in the data set.</returns>
+ </member>
+ <member name="T:System.Data.IDbDataParameter">
+ <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"></see> columns.</summary>
+ </member>
+ <member name="P:System.Data.IDbDataParameter.Precision">
+ <summary>Indicates the precision of numeric parameters.</summary>
+ <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>
+ </member>
+ <member name="P:System.Data.IDbDataParameter.Scale">
+ <summary>Indicates the scale of numeric parameters.</summary>
+ <returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value"></see> is resolved. The default is 0.</returns>
+ </member>
+ <member name="P:System.Data.IDbDataParameter.Size">
+ <summary>The size of the parameter.</summary>
+ <returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the the parameter value.</returns>
+ </member>
+ <member name="T:System.Data.IDbTransaction">
+ <summary>Represents a transaction to be performed at a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
+ </member>
+ <member name="M:System.Data.IDbTransaction.Commit">
+ <summary>Commits the database transaction.</summary>
+ <exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
+ <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back. -or- The connection is broken.</exception>
+ </member>
+ <member name="P:System.Data.IDbTransaction.Connection">
+ <summary>Specifies the Connection object to associate with the transaction.</summary>
+ <returns>The Connection object to associate with the transaction.</returns>
+ </member>
+ <member name="P:System.Data.IDbTransaction.IsolationLevel">
+ <summary>Specifies the <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</summary>
+ <returns>The <see cref="T:System.Data.IsolationLevel"></see> for this transaction. The default is ReadCommitted.</returns>
+ </member>
+ <member name="M:System.Data.IDbTransaction.Rollback">
+ <summary>Rolls back a transaction from a pending state.</summary>
+ <exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
+ <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back. -or- The connection is broken.</exception>
+ </member>
+ <member name="T:System.Data.InRowChangingEventException">
+ <summary>Represents the exception that is thrown when you call the <see cref="M:System.Data.DataRow.EndEdit"></see> method within the <see cref="E:System.Data.DataTable.RowChanging"></see> event.</summary>
+ </member>
+ <member name="M:System.Data.InRowChangingEventException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.InRowChangingEventException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.InRowChangingEventException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.InRowChangingEventException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.SqlDbType">
+ <summary>Specifies SQL Server-specific data type of a field, property, for use in a <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
+ </member>
+ <member name="F:System.Data.SqlDbType.BigInt">
+ <summary><see cref="T:System.Int64"></see>. A 64-bit signed integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Binary">
+ <summary><see cref="T:System.Array"></see> of type <see cref="T:System.Byte"></see>. A fixed-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Bit">
+ <summary><see cref="T:System.Boolean"></see>. An unsigned numeric value that can be 0, 1, or null.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Char">
+ <summary><see cref="T:System.String"></see>. A fixed-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Date">
+ <summary>Date data ranging in value from January 1,1 AD through December 31, 9999 AD.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.DateTime">
+ <summary><see cref="T:System.DateTime"></see>. Date and time data ranging in value from January 1, 1753 to December 31, 9999 to an accuracy of 3.33 milliseconds.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.DateTime2">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.DateTimeOffset">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Decimal">
+ <summary><see cref="T:System.Decimal"></see>. A fixed precision and scale numeric value between -10 38 -1 and 10 38 -1.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Float">
+ <summary><see cref="T:System.Double"></see>. A floating point number within the range of -1.79E +308 through 1.79E +308.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Image">
+ <summary><see cref="T:System.Array"></see> of type <see cref="T:System.Byte"></see>. A variable-length stream of binary data ranging from 0 to 2 31 -1 (or 2,147,483,647) bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Int">
+ <summary><see cref="T:System.Int32"></see>. A 32-bit signed integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Money">
+ <summary><see cref="T:System.Decimal"></see>. 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.NChar">
+ <summary><see cref="T:System.String"></see>. A fixed-length stream of Unicode characters ranging between 1 and 4,000 characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.NText">
+ <summary><see cref="T:System.String"></see>. A variable-length stream of Unicode data with a maximum length of 2 30 - 1 (or 1,073,741,823) characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.NVarChar">
+ <summary><see cref="T:System.String"></see>. 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"></see> when the database column is nvarchar(max).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Real">
+ <summary><see cref="T:System.Single"></see>. A floating point number within the range of -3.40E +38 through 3.40E +38.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.SmallDateTime">
+ <summary><see cref="T:System.DateTime"></see>. Date and time data ranging in value from January 1, 1900 to June 6, 2079 to an accuracy of one minute.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.SmallInt">
+ <summary><see cref="T:System.Int16"></see>. A 16-bit signed integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.SmallMoney">
+ <summary><see cref="T:System.Decimal"></see>. A currency value ranging from -214,748.3648 to +214,748.3647 with an accuracy to a ten-thousandth of a currency unit.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Structured">
+ <summary>A special data type for specifying structured data contained in table-valued parameters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Text">
+ <summary><see cref="T:System.String"></see>. A variable-length stream of non-Unicode data with a maximum length of 2 31 -1 (or 2,147,483,647) characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Time">
+ <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 time value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Timestamp">
+ <summary><see cref="T:System.Array"></see> of type <see cref="T:System.Byte"></see>. Automatically generated binary numbers, which are guaranteed to be unique within a database. timestamp is used typically as a mechanism for version-stamping table rows. The storage size is 8 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.TinyInt">
+ <summary><see cref="T:System.Byte"></see>. An 8-bit unsigned integer.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Udt">
+ <summary>A SQL Server user-defined type (UDT).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.UniqueIdentifier">
+ <summary><see cref="T:System.Guid"></see>. A globally unique identifier (or GUID).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.VarBinary">
+ <summary><see cref="T:System.Array"></see> of type <see cref="T:System.Byte"></see>. 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.VarChar">
+ <summary><see cref="T:System.String"></see>. A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters. Use <see cref="F:System.Data.SqlDbType.VarChar"></see> when the database column is varchar(max).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Variant">
+ <summary><see cref="T:System.Object"></see>. 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlDbType.Xml">
+ <summary>An XML value. Obtain the XML as a string using the <see cref="M:System.Data.SqlClient.SqlDataReader.GetValue(System.Int32)"></see> method or <see cref="P:System.Data.SqlTypes.SqlXml.Value"></see> property, or as an <see cref="T:System.Xml.XmlReader"></see> by calling the <see cref="M:System.Data.SqlTypes.SqlXml.CreateReader"></see> method.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.AcceptRejectRule">
+ <summary>Determines the action that occurs when the <see cref="M:System.Data.DataSet.AcceptChanges"></see> or <see cref="M:System.Data.DataTable.RejectChanges"></see> method is invoked on a <see cref="T:System.Data.DataTable"></see> with a <see cref="T:System.Data.ForeignKeyConstraint"></see>.</summary>
+ </member>
+ <member name="F:System.Data.AcceptRejectRule.Cascade">
+ <summary>Changes are cascaded across the relationship.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.AcceptRejectRule.None">
+ <summary>No action occurs (default).</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.CommandBehavior">
+ <summary>Provides a description of the results of the query and its effect on the database.</summary>
+ </member>
+ <member name="F:System.Data.CommandBehavior.CloseConnection">
+ <summary>When the command is executed, the associated Connection object is closed when the associated DataReader object is closed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.Default">
+ <summary>The query may return multiple result sets. Execution of the query may affect the database state. Default sets no <see cref="T:System.Data.CommandBehavior"></see> flags, so calling ExecuteReader(CommandBehavior.Default) is functionally equivalent to calling ExecuteReader().</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.KeyInfo">
+ <summary>The query returns column and primary key information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.SchemaOnly">
+ <summary>The query returns column information only. When using <see cref="F:System.Data.CommandBehavior.SchemaOnly"></see>, the .NET Framework Data Provider for SQL Server precedes the statement being executed with SET FMTONLY ON.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.SequentialAccess">
+ <summary>Provides a way for the DataReader to handle rows that contain columns with large binary values. Rather than loading the entire row, SequentialAccess enables the DataReader to load data as a stream. You can then use the GetBytes or GetChars method to specify a byte location to start the read operation, and a limited buffer size for the data being returned.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.SingleResult">
+ <summary>The query returns a single result set.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandBehavior.SingleRow">
+ <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"></see> with the <see cref="M:System.Data.OleDb.OleDbCommand.ExecuteReader"></see> method of the <see cref="T:System.Data.OleDb.OleDbCommand"></see> object, the .NET Framework Data Provider for OLE DB performs binding using the OLE DB IRow interface if it is available. Otherwise, it uses the IRowset interface. If your SQL statement is expected to return only a single row, specifying <see cref="F:System.Data.CommandBehavior.SingleRow"></see> can also improve application performance. It is possible to specify 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>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.CommandType">
+ <summary>Specifies how a command string is interpreted.</summary>
+ </member>
+ <member name="F:System.Data.CommandType.StoredProcedure">
+ <summary>The name of a stored procedure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandType.TableDirect">
+ <summary>The name of a table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.CommandType.Text">
+ <summary>An SQL text command. (Default.)</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.CatalogLocation">
+ <summary>Indicates the position of the catalog name in a qualified table name in a text command.</summary>
+ </member>
+ <member name="F:System.Data.Common.CatalogLocation.End">
+ <summary>Indicates that the position of the catalog name occurs after the schema portion of a fully qualified table name in a text command.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.CatalogLocation.Start">
+ <summary>Indicates that the position of the catalog name occurs before the schema portion of a fully qualified table name in a text command.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.InternalDataCollectionBase">
+ <summary>Provides the base functionality for creating collections.</summary>
+ </member>
+ <member name="M:System.Data.InternalDataCollectionBase.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InternalDataCollectionBase"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.InternalDataCollectionBase.CopyTo(System.Array,System.Int32)">
+ <summary>Copies all the elements of the current <see cref="T:System.Data.InternalDataCollectionBase"></see> to a one-dimensional <see cref="T:System.Array"></see>, starting at the specified <see cref="T:System.Data.InternalDataCollectionBase"></see> index.</summary>
+ <param name="ar">The one-dimensional <see cref="T:System.Array"></see> to copy the current <see cref="T:System.Data.InternalDataCollectionBase"></see> object's elements into.</param>
+ <param name="index">The destination <see cref="T:System.Array"></see> index to start copying into.</param>
+ </member>
+ <member name="P:System.Data.InternalDataCollectionBase.Count">
+ <summary>Gets the total number of elements in a collection.</summary>
+ <returns>The total number of elements in a collection.</returns>
+ </member>
+ <member name="M:System.Data.InternalDataCollectionBase.GetEnumerator">
+ <summary>Gets an <see cref="T:System.Collections.IEnumerator"></see> for the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> for the collection.</returns>
+ </member>
+ <member name="P:System.Data.InternalDataCollectionBase.IsReadOnly">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase"></see> is read-only.</summary>
+ <returns>true if the collection is read-only; otherwise, false. The default is false.</returns>
+ </member>
+ <member name="P:System.Data.InternalDataCollectionBase.IsSynchronized">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase"></see> is synchonized.</summary>
+ <returns>true if the collection is synchronized; otherwise, false. The default is false.</returns>
+ </member>
+ <member name="P:System.Data.InternalDataCollectionBase.List">
+ <summary>Gets the items of the collection as a list.</summary>
+ <returns>An <see cref="T:System.Collections.ArrayList"></see> that contains the collection.</returns>
+ </member>
+ <member name="P:System.Data.InternalDataCollectionBase.SyncRoot">
+ <summary>Gets an object that can be used to synchronize the collection.</summary>
+ <returns>The <see cref="System.object"></see> used to synchronize the collection.</returns>
+ </member>
+ <member name="T:System.Data.InvalidConstraintException">
+ <summary>Represents the exception that is thrown when incorrectly trying to create or access a relation.</summary>
+ </member>
+ <member name="M:System.Data.InvalidConstraintException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.InvalidConstraintException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.InvalidConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.InvalidConstraintException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.InvalidExpressionException">
+ <summary>Represents the exception that is thrown when you try to add a <see cref="T:System.Data.DataColumn"></see> that contains an invalid <see cref="P:System.Data.DataColumn.Expression"></see> to a <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ </member>
+ <member name="M:System.Data.InvalidExpressionException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.InvalidExpressionException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.InvalidExpressionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException"></see> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> and the <see cref="T:System.Runtime.Serialization.StreamingContext"></see>.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a given serialized stream.</param>
+ </member>
+ <member name="M:System.Data.InvalidExpressionException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.IsolationLevel">
+ <summary>Specifies the transaction locking behavior for the connection.</summary>
+ </member>
+ <member name="F:System.Data.IsolationLevel.Chaos">
+ <summary>The pending changes from more highly isolated transactions cannot be overwritten.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.ReadCommitted">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.ReadUncommitted">
+ <summary>A dirty read is possible, meaning that no shared locks are issued and no exclusive locks are honored.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.RepeatableRead">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.Serializable">
+ <summary>A range lock is placed on the <see cref="T:System.Data.DataSet"></see>, preventing other users from updating or inserting rows into the dataset until the transaction is complete.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.Snapshot">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.IsolationLevel.Unspecified">
+ <summary>A different isolation level than the one specified is being used, but the level cannot be determined.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.ITableMapping">
+ <summary>Associates a source table with a table in a <see cref="T:System.Data.DataSet"></see>, and is implemented by the <see cref="T:System.Data.Common.DataTableMapping"></see> class, which is used in common by .NET Framework data providers.</summary>
+ </member>
+ <member name="P:System.Data.ITableMapping.ColumnMappings">
+ <summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> for the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A collection of data column mappings.</returns>
+ </member>
+ <member name="P:System.Data.ITableMapping.DataSetTable">
+ <summary>Gets or sets the case-insensitive name of the table within the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The case-insensitive name of the table within the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.ITableMapping.SourceTable">
+ <summary>Gets or sets the case-sensitive name of the source table.</summary>
+ <returns>The case-sensitive name of the source table.</returns>
+ </member>
+ <member name="T:System.Data.ITableMappingCollection">
+ <summary>Contains a collection of TableMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataTableMappingCollection"></see>, which is used in common by .NET Framework data providers.</summary>
+ </member>
+ <member name="M:System.Data.ITableMappingCollection.Add(System.String,System.String)">
+ <summary>Adds a table mapping to the collection.</summary>
+ <param name="sourceTableName">The case-sensitive name of the source table.</param>
+ <param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet"></see> table.</param>
+ <returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.ITableMappingCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether the collection contains a table mapping with the specified source table name.</summary>
+ <param name="sourceTableName">The case-sensitive name of the source table.</param>
+ <returns>true if a table mapping with the specified source table name exists, otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.ITableMappingCollection.GetByDataSetTable(System.String)">
+ <summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet"></see> table name.</summary>
+ <param name="dataSetTableName">The name of the DataSet table within the collection.</param>
+ <returns>The TableMapping object with the specified DataSet table name.</returns>
+ </member>
+ <member name="M:System.Data.ITableMappingCollection.IndexOf(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.ITableMapping"></see> object within the collection.</summary>
+ <param name="sourceTableName">The case-sensitive name of the source table.</param>
+ <returns>The zero-based location of the <see cref="T:System.Data.ITableMapping"></see> object within the collection.</returns>
+ </member>
+ <member name="P:System.Data.ITableMappingCollection.Item(System.String)">
+ <summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping"></see> with the specified <see cref="P:System.Data.ITableMapping.SourceTable"></see> name.</summary>
+ <param name="index">The SourceTable name of the <see cref="T:System.Data.ITableMapping"></see>.</param>
+ <returns>The instance of <see cref="T:System.Data.ITableMapping"></see> with the specified SourceTable name.</returns>
+ </member>
+ <member name="M:System.Data.ITableMappingCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.ITableMapping"></see> object with the specified <see cref="P:System.Data.ITableMapping.SourceTable"></see> name from the collection.</summary>
+ <param name="sourceTableName">The case-sensitive name of the SourceTable.</param>
+ </member>
+ <member name="T:System.Data.KeyRestrictionBehavior">
+ <summary>Identifies a list of connection string parameters identified by the KeyRestrictions property that are either allowed or not allowed.</summary>
+ </member>
+ <member name="F:System.Data.KeyRestrictionBehavior.AllowOnly">
+ <summary>Default. Identifies the only additional connection string parameters that are allowed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.KeyRestrictionBehavior.PreventUsage">
+ <summary>Identifies additional connection string parameters that are not allowed.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.ParameterDirection">
+ <summary>Specifies the type of a parameter within a query relative to the <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.ParameterDirection.Input">
+ <summary>The parameter is an input parameter.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ParameterDirection.InputOutput">
+ <summary>The parameter is capable of both input and output.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ParameterDirection.Output">
+ <summary>The parameter is an output parameter.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ParameterDirection.ReturnValue">
+ <summary>The parameter represents a return value from an operation such as a stored procedure, built-in function, or user-defined function.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.PropertyCollection">
+ <summary>Represents a collection of properties that can be added to <see cref="T:System.Data.DataColumn"></see>, <see cref="T:System.Data.DataSet"></see>, or <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.PropertyCollection.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.PropertyCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection"></see> class.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a given serialized stream.</param>
+ </member>
+ <member name="M:System.Data.PropertyCollection.Clone">
+ <summary>Creates a shallow copy of the <see cref="T:System.Data.PropertyCollection"></see> object.</summary>
+ <returns>Returns <see cref="T:System.Object"></see>, a shallow copy of the <see cref="T:System.Data.PropertyCollection"></see> object.</returns>
+ </member>
+ <member name="T:System.Data.ReadOnlyException">
+ <summary>Represents the exception that is thrown when you try to change the value of a read-only column.</summary>
+ </member>
+ <member name="M:System.Data.ReadOnlyException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.ReadOnlyException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.ReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.ReadOnlyException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.StateChangeEventArgs">
+ <summary>Provides data for the state change event of a .NET Framework data provider.</summary>
+ </member>
+ <member name="M:System.Data.StateChangeEventArgs.#ctor(System.Data.ConnectionState,System.Data.ConnectionState)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.StateChangeEventArgs"></see> class, when given the original state and the current state of the object.</summary>
+ <param name="originalState">One of the <see cref="T:System.Data.ConnectionState"></see> values.</param>
+ <param name="currentState">One of the <see cref="T:System.Data.ConnectionState"></see> values.</param>
+ </member>
+ <member name="P:System.Data.StateChangeEventArgs.CurrentState">
+ <summary>Gets the new state of the connection. The connection object will be in the new state already when the event is fired.</summary>
+ <returns>One of the <see cref="T:System.Data.ConnectionState"></see> values.</returns>
+ </member>
+ <member name="P:System.Data.StateChangeEventArgs.OriginalState">
+ <summary>Gets the original state of the connection.</summary>
+ <returns>One of the <see cref="T:System.Data.ConnectionState"></see> values.</returns>
+ </member>
+ <member name="T:System.Data.StateChangeEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Data.Common.DbConnection.StateChange"></see> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">The <see cref="T:System.Data.StateChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.StatementCompletedEventArgs">
+ <summary>Provides additional information for the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted"></see> event.</summary>
+ </member>
+ <member name="M:System.Data.StatementCompletedEventArgs.#ctor(System.Int32)">
+ <summary>Creates a new instance of the <see cref="T:System.Data.StatementCompletedEventArgs"></see> class.</summary>
+ <param name="recordCount">Indicates the number of rows affected by the statement that caused the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted"></see> event to occur.</param>
+ </member>
+ <member name="P:System.Data.StatementCompletedEventArgs.RecordCount">
+ <summary>Indicates the number of rows affected by the statement that caused the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted"></see> event to occur.</summary>
+ <returns>The number of rows affected.</returns>
+ </member>
+ <member name="T:System.Data.StatementCompletedEventHandler">
+ <summary>The delegate type for the event handlers of the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted"></see> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">The data for the event.</param>
+ </member>
+ <member name="T:System.Data.StatementType">
+ <summary>Specifies the type of SQL query to be used by the <see cref="T:System.Data.OleDb.OleDbRowUpdatedEventArgs"></see>, <see cref="T:System.Data.OleDb.OleDbRowUpdatingEventArgs"></see>, <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs"></see>, or <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs"></see> class.</summary>
+ </member>
+ <member name="F:System.Data.StatementType.Batch">
+ <summary>A SQL query that is a batch statement.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.StatementType.Delete">
+ <summary>An SQL query that is a DELETE statement.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.StatementType.Insert">
+ <summary>An SQL query that is an INSERT statement.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.StatementType.Select">
+ <summary>An SQL query that is a SELECT statement.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.StatementType.Update">
+ <summary>An SQL query that is an UPDATE statement.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.StrongTypingException">
+ <summary>The exception that is thrown by a strongly typed <see cref="T:System.Data.DataSet"></see> when the user accesses a DBNull value.</summary>
+ </member>
+ <member name="M:System.Data.StrongTypingException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.StrongTypingException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException"></see> class with the specified string.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.StrongTypingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException"></see> class using the specified serialization information and streaming context.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.StrongTypingException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException"></see> class with the specified string and inner exception.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ <param name="innerException">A reference to an inner exception.</param>
+ </member>
+ <member name="T:System.Data.SyntaxErrorException">
+ <summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression"></see> property of a <see cref="T:System.Data.DataColumn"></see> contains a syntax error.</summary>
+ </member>
+ <member name="M:System.Data.SyntaxErrorException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SyntaxErrorException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.SyntaxErrorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException"></see> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> and the <see cref="T:System.Runtime.Serialization.StreamingContext"></see>.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a specific serialized stream.</param>
+ </member>
+ <member name="M:System.Data.SyntaxErrorException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.UniqueConstraint">
+ <summary>Represents a restriction on a set of columns in which all values must be unique.</summary>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to constrain.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the given array of <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="columns">The array of <see cref="T:System.Data.DataColumn"></see> objects to constrain.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the <see cref="T:System.Data.DataColumn"></see> to constrain, and a value specifying whether the constraint is a primary key.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to constrain.</param>
+ <param name="isPrimaryKey">true to indicate that the constraint is a primary key; otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[],System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with an array of <see cref="T:System.Data.DataColumn"></see> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
+ <param name="columns">An array of <see cref="T:System.Data.DataColumn"></see> objects to constrain.</param>
+ <param name="isPrimaryKey">true to indicate that the constraint is a primary key; otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified name and <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="name">The name of the constraint.</param>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to constrain.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified name and array of <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="name">The name of the constraint.</param>
+ <param name="columns">The array of <see cref="T:System.Data.DataColumn"></see> objects to constrain.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified name, the <see cref="T:System.Data.DataColumn"></see> to constrain, and a value specifying whether the constraint is a primary key.</summary>
+ <param name="name">The name of the constraint.</param>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to constrain.</param>
+ <param name="isPrimaryKey">true to indicate that the constraint is a primary key; otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[],System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified name, an array of <see cref="T:System.Data.DataColumn"></see> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
+ <param name="name">The name of the constraint.</param>
+ <param name="columns">An array of <see cref="T:System.Data.DataColumn"></see> objects to constrain.</param>
+ <param name="isPrimaryKey">true to indicate that the constraint is a primary key; otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.String[],System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint"></see> class with the specified name, an array of <see cref="T:System.Data.DataColumn"></see> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
+ <param name="name">The name of the constraint.</param>
+ <param name="columnNames">An array of <see cref="T:System.Data.DataColumn"></see> objects to constrain.</param>
+ <param name="isPrimaryKey">true to indicate that the constraint is a primary key; otherwise, false.</param>
+ </member>
+ <member name="P:System.Data.UniqueConstraint.Columns">
+ <summary>Gets the array of columns that this constraint affects.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects.</returns>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.Equals(System.Object)">
+ <summary>Compares this constraint to a second to determine if both are identical.</summary>
+ <param name="key2">The object to which this <see cref="T:System.Data.UniqueConstraint"></see> is compared.</param>
+ <returns>true, if the contraints are equal; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.UniqueConstraint.GetHashCode">
+ <summary>Gets the hash code of this instance of the <see cref="T:System.Data.UniqueConstraint"></see> object.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="P:System.Data.UniqueConstraint.IsPrimaryKey">
+ <summary>Gets a value indicating whether or not the constraint is on a primary key.</summary>
+ <returns>true, if the constraint is on a primary key; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.UniqueConstraint.Table">
+ <summary>Gets the table to which this constraint belongs.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> to which the constraint belongs.</returns>
+ </member>
+ <member name="T:System.Data.UpdateRowSource">
+ <summary>Specifies how query command results are applied to the row being updated.</summary>
+ </member>
+ <member name="F:System.Data.UpdateRowSource.Both">
+ <summary>Both the output parameters and the first returned row are mapped to the changed row in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateRowSource.FirstReturnedRecord">
+ <summary>The data in the first returned row is mapped to the changed row in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateRowSource.None">
+ <summary>Any returned parameters or rows are ignored.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateRowSource.OutputParameters">
+ <summary>Output parameters are mapped to the changed row in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DuplicateNameException">
+ <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"></see> -related object.</summary>
+ </member>
+ <member name="M:System.Data.DuplicateNameException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DuplicateNameException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.DuplicateNameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.DuplicateNameException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException"></see> class with the specified string and exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.DataRowState">
+ <summary>Gets the state of a <see cref="T:System.Data.DataRow"></see> object.</summary>
+ </member>
+ <member name="F:System.Data.DataRowState.Added">
+ <summary>The row has been added to a <see cref="T:System.Data.DataRowCollection"></see>, and <see cref="M:System.Data.DataRow.AcceptChanges"></see> has not been called.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowState.Deleted">
+ <summary>The row was deleted using the <see cref="M:System.Data.DataRow.Delete"></see> method of the <see cref="T:System.Data.DataRow"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowState.Detached">
+ <summary>The row has been created but is not part of any <see cref="T:System.Data.DataRowCollection"></see>. A <see cref="T:System.Data.DataRow"></see> 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowState.Modified">
+ <summary>The row has been modified and <see cref="M:System.Data.DataRow.AcceptChanges"></see> has not been called.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowState.Unchanged">
+ <summary>The row has not changed since <see cref="M:System.Data.DataRow.AcceptChanges"></see> was last called.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DataRowVersion">
+ <summary>Describes the version of a <see cref="T:System.Data.DataRow"></see>.</summary>
+ </member>
+ <member name="F:System.Data.DataRowVersion.Current">
+ <summary>The row contains current values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowVersion.Default">
+ <summary>The default version of <see cref="T:System.Data.DataRowState"></see>. For a DataRowState value of Added, Modified or Deleted, the default version is Current. For a <see cref="T:System.Data.DataRowState"></see> value of Detached, the version is Proposed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowVersion.Original">
+ <summary>The row contains its original values.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowVersion.Proposed">
+ <summary>The row contains a proposed value.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DataRowView">
+ <summary>Represents a customized view of a <see cref="T:System.Data.DataRow"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRowView.BeginEdit">
+ <summary>Begins an edit procedure.</summary>
+ </member>
+ <member name="M:System.Data.DataRowView.CancelEdit">
+ <summary>Cancels an edit procedure.</summary>
+ </member>
+ <member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation)">
+ <summary>Returns a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see> with the specified child <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> object.</param>
+ <returns>a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.CreateChildView(System.String)">
+ <summary>Returns a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see> with the specified child <see cref="T:System.Data.DataRelation"></see> name.</summary>
+ <param name="relationName">A string containing the <see cref="T:System.Data.DataRelation"></see> name.</param>
+ <returns>a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation,System.Boolean)">
+ <summary>Returns a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see> with the specified <see cref="T:System.Data.DataRelation"></see> and parent..</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> object.</param>
+ <param name="followParent">The parent object.</param>
+ <returns>A <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.CreateChildView(System.String,System.Boolean)">
+ <summary>Returns a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see> with the specified <see cref="T:System.Data.DataRelation"></see> name and parent.</summary>
+ <param name="relationName">A string containing the <see cref="T:System.Data.DataRelation"></see> name.</param>
+ <param name="followParent">The parent</param>
+ <returns>a <see cref="T:System.Data.DataView"></see> for the child <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.DataView">
+ <summary>Gets the <see cref="T:System.Data.DataView"></see> to which this row belongs.</summary>
+ <returns>The DataView to which this row belongs.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.Delete">
+ <summary>Deletes a row.</summary>
+ </member>
+ <member name="M:System.Data.DataRowView.EndEdit">
+ <summary>Commits changes to the underlying <see cref="T:System.Data.DataRow"></see> and ends the editing session that was begun with <see cref="M:System.Data.DataRowView.BeginEdit"></see>. Use <see cref="M:System.Data.DataRowView.CancelEdit"></see> to discard the changes made to the <see cref="T:System.Data.DataRow"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRowView.Equals(System.Object)">
+ <summary>Gets a value indicating whether the current <see cref="T:System.Data.DataRowView"></see> is identical to the specified object.</summary>
+ <param name="other">An <see cref="T:System.Object"></see> to be compared.</param>
+ <returns>true if <paramref name="object">object</paramref> is a <see cref="T:System.Data.DataRowView"></see> and it returns the same row as the current <see cref="T:System.Data.DataRowView"></see>; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.GetHashCode">
+ <summary>Returns the hash code of the <see cref="T:System.Data.DataRow"></see> object.</summary>
+ <returns>A 32-bit signed integer hash code 1, which represents Boolean true if the value of this instance is nonzero; otherwise the integer zero, which represents Boolean false.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.IsEdit">
+ <summary>Indicates whether the row is in edit mode.</summary>
+ <returns>true if the row is in edit mode; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.IsNew">
+ <summary>Indicates whether a <see cref="T:System.Data.DataRowView"></see> is new.</summary>
+ <returns>true if the row is new; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.Item(System.Int32)">
+ <summary>Gets or sets a value in a specified column.</summary>
+ <param name="ndx">The specified column.</param>
+ <returns>The value of the column.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.Item(System.String)">
+ <summary>Gets or sets a value in a specified column.</summary>
+ <param name="property">String that contains the specified column.</param>
+ <returns>The value of the column.</returns>
+ </member>
+ <member name="E:System.Data.DataRowView.PropertyChanged">
+ <summary>Event that is raised when a <see cref="T:System.Data.DataRowView"></see> property is changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataRowView.Row">
+ <summary>Gets the <see cref="T:System.Data.DataRow"></see> being viewed.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> being viewed by the <see cref="T:System.Data.DataRowView"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.RowVersion">
+ <summary>Gets the current version description of the <see cref="T:System.Data.DataRow"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataRowVersion"></see> values. Possible values for the <see cref="P:System.Data.DataRowView.RowVersion"></see> property are Default, Original, Current, and Proposed.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
+ <summary>Returns a collection of custom attributes for this instance of a component.</summary>
+ <returns>An AttributeCollection containing the attributes for this object.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
+ <summary>Returns the class name of this instance of a component.</summary>
+ <returns>The class name of this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
+ <summary>Returns the name of this instance of a component.</summary>
+ <returns>The name of this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
+ <summary>Returns a type converter for this instance of a component.</summary>
+ <returns>The type converter for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
+ <summary>Returns the default event for this instance of a component.</summary>
+ <returns>The default event for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
+ <summary>Returns the default property for this instance of a component.</summary>
+ <returns>The default property for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
+ <summary>Returns an editor of the specified type for this instance of a component.</summary>
+ <param name="editorBaseType">A <see cref="T:System.Type"></see> that represents the editor for this object.</param>
+ <returns>An <see cref="T:System.Object"></see> of the specified type that is the editor for this object, or null if the editor cannot be found.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
+ <summary>Returns the events for this instance of a component.</summary>
+ <returns>The events for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
+ <summary>Returns the events for this instance of a component with specified attributes.</summary>
+ <param name="attributes">The attributes</param>
+ <returns>The events for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
+ <summary>Returns the properties for this instance of a component.</summary>
+ <returns>The properties for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
+ <summary>Returns the properties for this instance of a component with specified attributes.</summary>
+ <param name="attributes">The attributes.</param>
+ <returns>The properties for this instance of a component.</returns>
+ </member>
+ <member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
+ <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
+ <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the property whose owner is to be found.</param>
+ <returns>An <see cref="T:System.Object"></see> that represents the owner of the specified property.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Error">
+ <summary>Gets a message that describes any validation errors for the object.</summary>
+ <returns>The validation error on the object.</returns>
+ </member>
+ <member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Item(System.String)">
+ <summary>Gets the error message for the property with the given name.</summary>
+ <param name="colName">The name of the property whose error message to get.</param>
+ <returns>The error message for the property. The default is an empty string (&quot;&quot;).</returns>
+ </member>
+ <member name="T:System.Data.DataSet">
+ <summary>Represents an in-memory cache of data.</summary>
+ </member>
+ <member name="M:System.Data.DataSet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DataSet.#ctor(System.String)">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet"></see> class with the given name.</summary>
+ <param name="dataSetName">The name of the <see cref="T:System.Data.DataSet"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet"></see> class that has the given serialization information and context.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a given serialized stream.</param>
+ </member>
+ <member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet"></see> class.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object.</param>
+ <param name="ConstructSchema">The boolean value.</param>
+ </member>
+ <member name="M:System.Data.DataSet.AcceptChanges">
+ <summary>Commits all the changes made to this <see cref="T:System.Data.DataSet"></see> since it was loaded or since the last time <see cref="M:System.Data.DataSet.AcceptChanges"></see> was called.</summary>
+ </member>
+ <member name="M:System.Data.DataSet.BeginInit">
+ <summary>Begins the initialization of a <see cref="T:System.Data.DataSet"></see> that is used on a form or used by another component. The initialization occurs at run time.</summary>
+ </member>
+ <member name="P:System.Data.DataSet.CaseSensitive">
+ <summary>Gets or sets a value indicating whether string comparisons within <see cref="T:System.Data.DataTable"></see> objects are case-sensitive.</summary>
+ <returns>true if string comparisons are case-sensitive; otherwise false. The default is false.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.Clear">
+ <summary>Clears the <see cref="T:System.Data.DataSet"></see> of any data by removing all rows in all tables.</summary>
+ </member>
+ <member name="M:System.Data.DataSet.Clone">
+ <summary>Copies the structure of the <see cref="T:System.Data.DataSet"></see>, including all <see cref="T:System.Data.DataTable"></see> schemas, relations, and constraints. Does not copy any data.</summary>
+ <returns>A new <see cref="T:System.Data.DataSet"></see> with the same schema as the current <see cref="T:System.Data.DataSet"></see>, but none of the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.Copy">
+ <summary>Copies both the structure and data for this <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="3"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A new <xref href="System.Data.DataSet"></xref> with the same structure (table schemas, relations, and constraints) and data as this <xref href="System.Data.DataSet"></xref>. </p>
+ <block subset="none" type="note"><p><br> If these classes have been subclassed, the copy will also be of the same subclasses. </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="5" sourceendlinenumber="5"></block></p>
+</returns>
+ </member>
+ <member name="M:System.Data.DataSet.CreateDataReader(System.Data.DataTable[])">
+ <summary>Returns a <see cref="T:System.Data.DataTableReader"></see> with one result set per <see cref="T:System.Data.DataTable"></see>.</summary>
+ <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"></see>.</param>
+ <returns>A <see cref="T:System.Data.DataTableReader"></see> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable"></see> instances contained within the source <see cref="T:System.Data.DataSet"></see>. The returned result sets are in the order specified by the <paramref name="dataTables">dataTables</paramref> parameter.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.CreateDataReader">
+ <summary>Returns a <see cref="T:System.Data.DataTableReader"></see> with one result set per <see cref="T:System.Data.DataTable"></see>, in the same sequence as the tables appear in the <see cref="P:System.Data.DataSet.Tables"></see> collection.</summary>
+ <returns>A <see cref="T:System.Data.DataTableReader"></see> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable"></see> instances contained within the source <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.DataSetName">
+ <summary>Gets or sets the name of the current <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The name of the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.DefaultViewManager">
+ <summary>Gets a custom view of the data contained in the <see cref="T:System.Data.DataSet"></see> to allow filtering, searching, and navigating using a custom <see cref="T:System.Data.DataViewManager"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataViewManager"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Xml.XmlReader)">
+ <summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode"></see> for a <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> instance that is passed during deserialization of the <see cref="T:System.Data.DataSet"></see>.</param>
+ <returns>An <see cref="T:System.Data.SchemaSerializationMode"></see> enumeration indicating whether schema information has been omitted from the payload.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode"></see> for a <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that a DataSet’s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"></see> is invoked with during deserialization in remoting scenarios.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that a DataSet’s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"></see> is invoked with during deserialization in remoting scenarios.</param>
+ <returns>An <see cref="T:System.Data.SchemaSerializationMode"></see> enumeration indicating whether schema information has been omitted from the payload.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.EndInit">
+ <summary>Ends the initialization of a <see cref="T:System.Data.DataSet"></see> that is used on a form or used by another component. The initialization occurs at run time.</summary>
+ </member>
+ <member name="P:System.Data.DataSet.EnforceConstraints">
+ <summary>Gets or sets a value indicating whether constraint rules are followed when attempting any update operation.</summary>
+ <returns>true if rules are enforced; otherwise false. The default is true.</returns>
+ <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enforced.</exception>
+ </member>
+ <member name="P:System.Data.DataSet.ExtendedProperties">
+ <summary>Gets the collection of customized user information associated with the DataSet.</summary>
+ <returns>A <see cref="T:System.Data.PropertyCollection"></see> with all custom user information.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetChanges">
+ <summary>Gets a copy of the <see cref="T:System.Data.DataSet"></see> that contains all changes made to it since it was loaded or since <see cref="M:System.Data.DataSet.AcceptChanges"></see> was last called.</summary>
+ <returns>A copy of the changes from this <see cref="T:System.Data.DataSet"></see> that can have actions performed on it and later be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)"></see>. If no changed rows are found, the method returns null.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetChanges(System.Data.DataRowState)">
+ <summary>Gets a copy of the <see cref="T:System.Data.DataSet"></see> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataSet.AcceptChanges"></see> was called, filtered by <see cref="T:System.Data.DataRowState"></see>.</summary>
+ <param name="rowStates">One of the <see cref="T:System.Data.DataRowState"></see> values.</param>
+ <returns>A filtered copy of the <see cref="T:System.Data.DataSet"></see> that can have actions performed on it, and subsequently be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)"></see>. If no rows of the desired <see cref="T:System.Data.DataRowState"></see> are found, the method returns null.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetDataSetSchema(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Gets a copy of <see cref="T:System.Xml.Schema.XmlSchemaSet"></see> for the DataSet.</summary>
+ <param name="schemaSet">The specified schema set.</param>
+ <returns>A copy of <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that holds the serialized data associated with the <see cref="T:System.Data.DataSet"></see>.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataSet"></see>.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="info">info</paramref> parameter is null.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.GetSchemaSerializable">
+ <summary>Returns a serializable <see cref="System.Xml.Schema.XMLSchema"></see> instance.</summary>
+ <returns>The <see cref="System.Xml.Schema.XMLSchema"></see> instance.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetSerializationData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Deserializes the table data from the binary or XML stream.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> instance.</param>
+ <param name="context">The streaming context.</param>
+ </member>
+ <member name="M:System.Data.DataSet.GetXml">
+ <summary>Returns the XML representation of the data stored in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>A string that is a representation of the data stored in the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.GetXmlSchema">
+ <summary>Returns the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>String that is the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.HasChanges">
+ <summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet"></see> has changes, including new, deleted, or modified rows.</summary>
+ <returns>true if the <see cref="T:System.Data.DataSet"></see> has changes; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.HasChanges(System.Data.DataRowState)">
+ <summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet"></see> has changes, including new, deleted, or modified rows, filtered by <see cref="T:System.Data.DataRowState"></see>.</summary>
+ <param name="rowStates">One of the <see cref="T:System.Data.DataRowState"></see> values.</param>
+ <returns>true if the <see cref="T:System.Data.DataSet"></see> has changes; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.HasErrors">
+ <summary>Gets a value indicating whether there are errors in any of the <see cref="T:System.Data.DataTable"></see> objects within this <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>true if any table contains an error;otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.InferXmlSchema(System.IO.Stream,System.String[])">
+ <summary>Applies the XML schema from the specified <see cref="T:System.IO.Stream"></see> to the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="stream">The Stream from which to read the schema.</param>
+ <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
+ </member>
+ <member name="M:System.Data.DataSet.InferXmlSchema(System.IO.TextReader,System.String[])">
+ <summary>Applies the XML schema from the specified <see cref="T:System.IO.TextReader"></see> to the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="reader">The TextReader from which to read the schema.</param>
+ <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
+ </member>
+ <member name="M:System.Data.DataSet.InferXmlSchema(System.String,System.String[])">
+ <summary>Applies the XML schema from the specified file to the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="fileName">The name of the file (including the path) from which to read the schema.</param>
+ <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.InferXmlSchema(System.Xml.XmlReader,System.String[])">
+ <summary>Applies the XML schema from the specified <see cref="T:System.Xml.XmlReader"></see> to the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="reader">The XMLReader from which to read the schema.</param>
+ <param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
+ </member>
+ <member name="E:System.Data.DataSet.Initialized">
+ <summary>Occurs after the <see cref="T:System.Data.DataSet"></see> is initialized.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataSet.InitializeDerivedDataSet">
+ <summary>Deserialize all of the tables data of the DataSet from the binary or XML stream.</summary>
+ </member>
+ <member name="M:System.Data.DataSet.IsBinarySerialized(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Inspects the format of the serialized representation of the DataSet.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object.</param>
+ <returns>true if the specified <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> represents a DataSet serialized in its binary format, false otherwise.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.IsInitialized">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataSet"></see> is initialized.</summary>
+ <returns>true to indicate the component has completed initialization; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])">
+ <summary>Fills a <see cref="T:System.Data.DataSet"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see>, using an array of <see cref="T:System.Data.DataTable"></see> instances to supply the schema and namespace information.</summary>
+ <param name="reader">An <see cref="T:System.Data.IDataReader"></see> that provides one or more result sets.</param>
+ <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption"></see> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable"></see> instances within the <see cref="T:System.Data.DataSet"></see> will be combined with incoming rows that share the same primary key.</param>
+ <param name="tables">An array of <see cref="T:System.Data.DataTable"></see> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])"></see> method retrieves name and namespace information. Each of these tables must be a member of the <see cref="T:System.Data.DataTableCollection"></see> contained by this <see cref="T:System.Data.DataSet"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.String[])">
+ <summary>Fills a <see cref="T:System.Data.DataSet"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see>, using an array of strings to supply the names for the tables within the DataSet.</summary>
+ <param name="reader">An <see cref="T:System.Data.IDataReader"></see> that provides one or more result sets.</param>
+ <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption"></see> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable"></see> instances within the DataSet will be combined with incoming rows that share the same primary key.</param>
+ <param name="tables">An array of strings, from which the Load method retrieves table name information.</param>
+ </member>
+ <member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])">
+ <summary>Fills a <see cref="T:System.Data.DataSet"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see>, using an array of <see cref="T:System.Data.DataTable"></see> instances to supply the schema and namespace information.</summary>
+ <param name="reader">An <see cref="T:System.Data.IDataReader"></see> that provides one or more result sets.</param>
+ <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption"></see> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable"></see> instances within the <see cref="T:System.Data.DataSet"></see> will be combined with incoming rows that share the same primary key.</param>
+ <param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler"></see> delegate to call when an error occurs while loading data.</param>
+ <param name="tables">An array of <see cref="T:System.Data.DataTable"></see> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])"></see> method retrieves name and namespace information.</param>
+ </member>
+ <member name="P:System.Data.DataSet.Locale">
+ <summary>Gets or sets the locale information used to compare strings within the table.</summary>
+ <returns>A <see cref="T:System.Globalization.CultureInfo"></see> that contains data about the user's machine locale. The default is null.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataRow[])">
+ <summary>Merges an array of <see cref="T:System.Data.DataRow"></see> objects into the current <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="rows">The array of DataRow objects to be merged into the DataSet.</param>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataSet)">
+ <summary>Merges a specified <see cref="T:System.Data.DataSet"></see> and its schema into the current DataSet.</summary>
+ <param name="dataSet">The DataSet whose data and schema will be merged.</param>
+ <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enabled.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet">dataSet</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataTable)">
+ <summary>Merges a specified <see cref="T:System.Data.DataTable"></see> and its schema into the current <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> whose data and schema will be merged.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="table">table</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean)">
+ <summary>Merges a specified <see cref="T:System.Data.DataSet"></see> and its schema into the current DataSet, preserving or discarding any changes in this DataSet according to the given argument.</summary>
+ <param name="dataSet">The DataSet whose data and schema will be merged.</param>
+ <param name="preserveChanges">true to preserve changes in the current DataSet; otherwise false.</param>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataRow[],System.Boolean,System.Data.MissingSchemaAction)">
+ <summary>Merges an array of <see cref="T:System.Data.DataRow"></see> objects into the current <see cref="T:System.Data.DataSet"></see>, preserving or discarding changes in the DataSet and handling an incompatible schema according to the given arguments.</summary>
+ <param name="rows">The array of <see cref="T:System.Data.DataRow"></see> objects to be merged into the DataSet.</param>
+ <param name="preserveChanges">true to preserve changes in the DataSet; otherwise false.</param>
+ <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean,System.Data.MissingSchemaAction)">
+ <summary>Merges a specified <see cref="T:System.Data.DataSet"></see> and its schema with the current DataSet, preserving or discarding changes in the current DataSet and handling an incompatible schema according to the given arguments.</summary>
+ <param name="dataSet">The DataSet whose data and schema will be merged.</param>
+ <param name="preserveChanges">true to preserve changes in the current DataSet; otherwise false.</param>
+ <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet">dataSet</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
+ <summary>Merges a specified <see cref="T:System.Data.DataTable"></see> and its schema into the current DataSet, preserving or discarding changes in the DataSet and handling an incompatible schema according to the given arguments.</summary>
+ <param name="table">The DataTable whose data and schema will be merged.</param>
+ <param name="preserveChanges">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ <param name="missingSchemaAction">true to preserve changes in the DataSet; otherwise false.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet">dataSet</paramref> is null.</exception>
+ </member>
+ <member name="E:System.Data.DataSet.MergeFailed">
+ <summary>Occurs when a target and source <see cref="T:System.Data.DataRow"></see> have the same primary key value, and <see cref="P:System.Data.DataSet.EnforceConstraints"></see> is set to true.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataSet.Namespace">
+ <summary>Gets or sets the namespace of the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The namespace of the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The namespace already has data.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
+ <summary>Raises the <see cref="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)"></see> event.</summary>
+ <param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataSet.OnRemoveRelation(System.Data.DataRelation)">
+ <summary>Occurs when a <see cref="T:System.Data.DataRelation"></see> object is removed from a <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> being removed.</param>
+ </member>
+ <member name="M:System.Data.DataSet.OnRemoveTable(System.Data.DataTable)">
+ <summary>Occurs when a <see cref="T:System.Data.DataTable"></see> is removed from a <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> being removed.</param>
+ </member>
+ <member name="P:System.Data.DataSet.Prefix">
+ <summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The XML prefix for the <see cref="T:System.Data.DataSet"></see> namespace.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.RaisePropertyChanging(System.String)">
+ <summary>Sends a notification that the specified <see cref="T:System.Data.DataSet"></see> property is about to change.</summary>
+ <param name="name">The name of the property that is about to change.</param>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader,System.Data.XmlReadMode)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.Xml.XmlReader"></see> and <see cref="T:System.Data.XmlReadMode"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> from which to read.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlReadMode"></see> values.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.String,System.Data.XmlReadMode)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified file and <see cref="T:System.Data.XmlReadMode"></see>.</summary>
+ <param name="fileName">The filename (including the path) from which to read.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlReadMode"></see> values.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.IO.Stream,System.Data.XmlReadMode)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.Stream"></see> and <see cref="T:System.Data.XmlReadMode"></see>.</summary>
+ <param name="stream">The <see cref="T:System.IO.Stream"></see> from which to read.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlReadMode"></see> values.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader,System.Data.XmlReadMode)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.TextReader"></see> and <see cref="T:System.Data.XmlReadMode"></see>.</summary>
+ <param name="reader">The <see cref="T:System.IO.TextReader"></see> from which to read.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlReadMode"></see> values.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.String)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified file.</summary>
+ <param name="fileName">The filename (including the path) from which to read.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.TextReader"></see>.</summary>
+ <param name="reader">The TextReader from which to read the schema and data.</param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.IO.Stream)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.Stream"></see>.</summary>
+ <param name="stream">An object that derives from <see cref="T:System.IO.Stream"></see>.</param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.Xml.XmlReader"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> from which to read.</param>
+ <returns>The XmlReadMode used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.Stream)">
+ <summary>Reads the XML schema from the specified <see cref="T:System.IO.Stream"></see> into the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="stream">The <see cref="T:System.IO.Stream"></see> from which to read.</param>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.TextReader)">
+ <summary>Reads the XML schema from the specified <see cref="T:System.IO.TextReader"></see> into the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="reader">The <see cref="T:System.IO.TextReader"></see> from which to read.</param>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXmlSchema(System.String)">
+ <summary>Reads the XML schema from the specified file into the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="fileName">The file name (including the path) from which to read.</param>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXmlSchema(System.Xml.XmlReader)">
+ <summary>Reads the XML schema from the specified <see cref="T:System.Xml.XmlReader"></see> into the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> from which to read.</param>
+ </member>
+ <member name="M:System.Data.DataSet.ReadXmlSerializable(System.Xml.XmlReader)">
+ <summary>Ignores attributes and returns an empty DataSet.</summary>
+ <param name="reader">The specified XML reader.</param>
+ </member>
+ <member name="M:System.Data.DataSet.RejectChanges">
+ <summary>Rolls back all the changes made to the <see cref="T:System.Data.DataSet"></see> since it was created, or since the last time <see cref="M:System.Data.DataSet.AcceptChanges"></see> was called.</summary>
+ </member>
+ <member name="P:System.Data.DataSet.Relations">
+ <summary>Get the collection of relations that link tables and allow navigation from parent tables to child tables.</summary>
+ <returns>A <see cref="T:System.Data.DataRelationCollection"></see> that contains a collection of <see cref="T:System.Data.DataRelation"></see> objects. An empty collection is returned if no <see cref="T:System.Data.DataRelation"></see> objects exist.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.RemotingFormat">
+ <summary>Gets or sets a <see cref="T:System.Data.SerializationFormat"></see> for the <see cref="T:System.Data.DataSet"></see> used during remoting.</summary>
+ <returns>A <see cref="T:System.Data.SerializationFormat"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.Reset">
+ <summary>Clears all tables and removes all relations, foreign constraints, and tables from the <see cref="T:System.Data.DataSet"></see>. Subclasses should override <see cref="M:System.Data.DataSet.Reset"></see> to restore a <see cref="T:System.Data.DataSet"></see> to its original state.</summary>
+ </member>
+ <member name="P:System.Data.DataSet.SchemaSerializationMode">
+ <summary>Gets or sets a <see cref="T:System.Data.SchemaSerializationMode"></see> for a <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>Gets or sets a <see cref="T:System.Data.SchemaSerializationMode"></see> for a <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ShouldSerializeRelations">
+ <summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Relations"></see> property should be persisted.</summary>
+ <returns>true if the property value has been changed from its default; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.ShouldSerializeTables">
+ <summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Tables"></see> property should be persisted.</summary>
+ <returns>true if the property value has been changed from its default; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.Site">
+ <summary>Gets or sets an <see cref="T:System.ComponentModel.ISite"></see> for the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>An <see cref="T:System.ComponentModel.ISite"></see> for the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataSet.Tables">
+ <summary>Gets the collection of tables contained in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The <see cref="T:System.Data.DataTableCollection"></see> contained by this <see cref="T:System.Data.DataSet"></see>. An empty collection is returned if no <see cref="T:System.Data.DataTable"></see> objects exist.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.Xml.XmlWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> with which to write.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.String,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet"></see> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="fileName">The file name (including the path) to which to write.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.TextWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="writer">A <see cref="T:System.IO.TextWriter"></see> object used to write the document.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.Stream"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="stream">A <see cref="T:System.IO.Stream"></see> object used to write to a file.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.String)">
+ <summary>Writes the current data for the <see cref="T:System.Data.DataSet"></see> to the specified file.</summary>
+ <param name="fileName">The file name (including the path) to which to write.</param>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter)">
+ <summary>Writes the current data for the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.TextWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> object with which to write.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter)">
+ <summary>Writes the current data for the <see cref="T:System.Data.DataSet"></see> to the specified <see cref="T:System.Xml.XmlWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> with which to write.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXml(System.IO.Stream)">
+ <summary>Writes the current data for the <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.IO.Stream"></see>.</summary>
+ <param name="stream">A <see cref="T:System.IO.Stream"></see> object used to write to a file.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.String,System.Converter{System.Type,System.String})">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to a file.</summary>
+ <param name="fileName">The name of the file to write to.</param>
+ <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type"></see> to string.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream)">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to the specified <see cref="T:System.IO.Stream"></see> object.</summary>
+ <param name="stream">A <see cref="T:System.IO.Stream"></see> object used to write to a file.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter)">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter"></see> object.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> object with which to write.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.String)">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to a file.</summary>
+ <param name="fileName">The file name (including the path) to which to write.</param>
+ <exception cref="T:System.Security.SecurityException"><see cref="T:System.Security.Permissions.FileIOPermission"></see> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter)">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to an <see cref="T:System.Xml.XmlWriter"></see> object.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> to write to.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream,System.Converter{System.Type,System.String})">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to the specified <see cref="T:System.IO.Stream"></see> object.</summary>
+ <param name="stream">A <see cref="T:System.IO.Stream"></see> object to write to.</param>
+ <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type"></see> to string.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter,System.Converter{System.Type,System.String})">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter"></see>.</summary>
+ <param name="writer">A <see cref="T:System.IO.TextWriter"></see> object to write to.</param>
+ <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type"></see> to string.</param>
+ </member>
+ <member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter,System.Converter{System.Type,System.String})">
+ <summary>Writes the <see cref="T:System.Data.DataSet"></see> structure as an XML schema to the specified <see cref="T:System.Xml.XmlWriter"></see>.</summary>
+ <param name="writer">A <see cref="T:System.Xml.XmlWriter"></see> object to write to.</param>
+ <param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type"></see> to string.</param>
+ </member>
+ <member name="P:System.Data.DataSet.System#ComponentModel#IListSource#ContainsListCollection">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.System#ComponentModel#IListSource#GetList">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList"></see>.</summary>
+ <returns>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</summary>
+ <returns>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see>.</summary>
+ <param name="reader">A <see cref="T:System.Xml.XmlReader"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see>.</summary>
+ <param name="writer">A <see cref="T:System.Xml.XmlWriter"></see>.</param>
+ </member>
+ <member name="T:System.Data.DataSetDateTime">
+ <summary>Describes the serialization format for <see cref="T:System.DateTime"></see> columns in a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.DataSetDateTime.Local">
+ <summary>DateTime is always stored in Local. If <see cref="F:System.Data.DataSetDateTime.Utc"></see> or <see cref="F:System.Data.DataSetDateTime.Unspecified"></see> 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataSetDateTime.Unspecified">
+ <summary>DateTime is always stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local"></see> or <see cref="F:System.Data.DataSetDateTime.Utc"></see> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified"></see>. Serialization in this mode does not cause an offset.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataSetDateTime.UnspecifiedLocal">
+ <summary>DateTime is stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local"></see> or <see cref="F:System.Data.DataSetDateTime.Utc"></see> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified"></see>. 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"></see> during serialization.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataSetDateTime.Utc">
+ <summary>DateTime is stored in Universal Coordinated Time (UTC). If <see cref="F:System.Data.DataSetDateTime.Local"></see> or <see cref="F:System.Data.DataSetDateTime.Unspecified"></see> is assigned to a column in this mode, it is first converted into Utc format. Serialization in this mode is always performed in Utc. There is no offset during serialization.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DataSysDescriptionAttribute">
+ <summary>Marks a property, event, or extender with a description. Visual designers can display this description when referencing the member.</summary>
+ </member>
+ <member name="M:System.Data.DataSysDescriptionAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataSysDescriptionAttribute"></see> class using the specified description string.</summary>
+ <param name="description">The description string.</param>
+ </member>
+ <member name="P:System.Data.DataSysDescriptionAttribute.Description">
+ <summary>Gets the text for the description.</summary>
+ <returns>The description string.</returns>
+ </member>
+ <member name="T:System.Data.DataTable">
+ <summary>Represents one table of in-memory data.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable"></see> class with no arguments.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable"></see> class with the specified table name.</summary>
+ <param name="tableName">The name to give the table. If tableName is null or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataTable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable"></see> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> and the <see cref="T:System.Runtime.Serialization.StreamingContext"></see>.</summary>
+ <param name="info">The data needed to serialize or deserialize an object.</param>
+ <param name="context">The source and destination of a given serialized stream.</param>
+ </member>
+ <member name="M:System.Data.DataTable.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTable"></see> class using the specified table name and namespace.</summary>
+ <param name="tableName">The name to give the table. If tableName is null or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection"></see>.</param>
+ <param name="tableNamespace">The namespace for the XML representation of the data stored in the DataTable.</param>
+ </member>
+ <member name="M:System.Data.DataTable.AcceptChanges">
+ <summary>Commits all the changes made to this table since the last time <see cref="M:System.Data.DataTable.AcceptChanges"></see> was called.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.BeginInit">
+ <summary>Begins the initialization of a <see cref="T:System.Data.DataTable"></see> that is used on a form or used by another component. The initialization occurs at run time.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.BeginLoadData">
+ <summary>Turns off notifications, index maintenance, and constraints while loading data.</summary>
+ </member>
+ <member name="P:System.Data.DataTable.CaseSensitive">
+ <summary>Indicates whether string comparisons within the table are case-sensitive.</summary>
+ <returns>true if the comparison is case-sensitive; otherwise false. The default is set to the parent <see cref="T:System.Data.DataSet"></see> object's <see cref="P:System.Data.DataSet.CaseSensitive"></see> property, or false if the <see cref="T:System.Data.DataTable"></see> was created independently of a <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.ChildRelations">
+ <summary>Gets the collection of child relations for this <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataRelationCollection"></see> that contains the child relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation"></see> objects exist.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Clear">
+ <summary>Clears the <see cref="T:System.Data.DataTable"></see> of all data.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.Clone">
+ <summary>Clones the structure of the <see cref="T:System.Data.DataTable"></see>, including all <see cref="T:System.Data.DataTable"></see> schemas and constraints.</summary>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> with the same schema as the current <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="E:System.Data.DataTable.ColumnChanged">
+ <summary>Occurs after a value has been changed for the specified <see cref="T:System.Data.DataColumn"></see> in a <see cref="T:System.Data.DataRow"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTable.ColumnChanging">
+ <summary>Occurs when a value is being changed for the specified <see cref="T:System.Data.DataColumn"></see> in a <see cref="T:System.Data.DataRow"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataTable.Columns">
+ <summary>Gets the collection of columns that belong to this table.</summary>
+ <returns>A <see cref="T:System.Data.DataColumnCollection"></see> that contains the collection of <see cref="T:System.Data.DataColumn"></see> objects for the table. An empty collection is returned if no <see cref="T:System.Data.DataColumn"></see> objects exist.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Compute(System.String,System.String)">
+ <summary>Computes the given expression on the current rows that pass the filter criteria.</summary>
+ <param name="expression">The expression to compute.</param>
+ <param name="filter">The filter to limit the rows that evaluate in the expression.</param>
+ <returns>An <see cref="T:System.Object"></see>, set to the result of the computation. If the expression evaluates to null, the return value will be <see cref="F:System.DBNull.Value"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.Constraints">
+ <summary>Gets the collection of constraints maintained by this table.</summary>
+ <returns>A <see cref="T:System.Data.ConstraintCollection"></see> that contains the collection of <see cref="T:System.Data.Constraint"></see> objects for the table. An empty collection is returned if no <see cref="T:System.Data.Constraint"></see> objects exist.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Copy">
+ <summary>Copies both the structure and data for this <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> with the same structure (table schemas and constraints) and data as this <see cref="T:System.Data.DataTable"></see>. If these classes have been derived, the copy will also be of the same derived classes. <see cref="M:System.Data.DataTable.Copy"></see> creates a new <see cref="T:System.Data.DataTable"></see> with the same structure and data as the original <see cref="T:System.Data.DataTable"></see>. To copy the structure to a new <see cref="T:System.Data.DataTable"></see>, but not the data, use <see cref="M:System.Data.DataTable.Clone"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.CreateDataReader">
+ <summary>Returns a <see cref="T:System.Data.DataTableReader"></see> corresponding to the data within this <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTableReader"></see> containing one result set, corresponding to the source <see cref="T:System.Data.DataTable"></see> instance.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.CreateInstance">
+ <summary>Creates a new instance of <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>The new expression.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.DataSet">
+ <summary>Gets the <see cref="T:System.Data.DataSet"></see> to which this table belongs.</summary>
+ <returns>The <see cref="T:System.Data.DataSet"></see> to which this table belongs.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.DefaultView">
+ <summary>Gets a customized view of the table that may include a filtered view, or a cursor position.</summary>
+ <returns>The <see cref="T:System.Data.DataView"></see> associated with the <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.DisplayExpression">
+ <summary>Gets or sets the expression that returns a value used to represent this table in the user interface. The DisplayExpression property lets you display the name of this table in a user interface.</summary>
+ <returns>A display string.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.EndInit">
+ <summary>Ends the initialization of a <see cref="T:System.Data.DataTable"></see> that is used on a form or used by another component. The initialization occurs at run time.</summary>
+ </member>
+ <member name="M:System.Data.DataTable.EndLoadData">
+ <summary>Turns on notifications, index maintenance, and constraints after loading data.</summary>
+ </member>
+ <member name="P:System.Data.DataTable.ExtendedProperties">
+ <summary>Gets the collection of customized user information.</summary>
+ <returns>A <see cref="T:System.Data.PropertyCollection"></see> that contains custom user information.</returns>
+ </member>
+ <member name="F:System.Data.DataTable.fInitInProgress">
+ <summary>Checks whether initialization is in progress. The initialization occurs at run time.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetChanges">
+ <summary>Gets a copy of the <see cref="T:System.Data.DataTable"></see> that contains all changes made to it since it was loaded or <see cref="M:System.Data.DataTable.AcceptChanges"></see> was last called.</summary>
+ <returns>A copy of the changes from this <see cref="T:System.Data.DataTable"></see>, or null if no changes are found.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetChanges(System.Data.DataRowState)">
+ <summary>Gets a copy of the <see cref="T:System.Data.DataTable"></see> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataTable.AcceptChanges"></see> was called, filtered by <see cref="T:System.Data.DataRowState"></see>.</summary>
+ <param name="rowStates">One of the <see cref="T:System.Data.DataRowState"></see> values.</param>
+ <returns>A filtered copy of the <see cref="T:System.Data.DataTable"></see> that can have actions performed on it, and later be merged back in the <see cref="T:System.Data.DataTable"></see> using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)"></see>. If no rows of the desired <see cref="T:System.Data.DataRowState"></see> are found, the method returns null.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetDataTableSchema(System.Xml.Schema.XmlSchemaSet)">
+ <summary>This method returns an <see cref="T:System.Xml.Schema.XmlSchemaSet"></see> instance containing the Web Services Description Language (WSDL) that describes the <see cref="T:System.Data.DataTable"></see> for Web Services.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see> instance.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSet"></see> instance.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetErrors">
+ <summary>Gets an array of <see cref="T:System.Data.DataRow"></see> objects that contain errors.</summary>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects that have errors.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that holds the serialized data associated with the <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataTable"></see>.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="info">info</paramref> parameter is a null reference (Nothing in Visual Basic).</exception>
+ </member>
+ <member name="M:System.Data.DataTable.GetRowType">
+ <summary>Gets the row type.</summary>
+ <returns>Returns the type of the <see cref="T:System.Data.DataRow"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.GetSchema">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema"></see> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see> method.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.HasErrors">
+ <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"></see> to which the table belongs.</summary>
+ <returns>true if errors exist; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.ImportRow(System.Data.DataRow)">
+ <summary>Copies a <see cref="T:System.Data.DataRow"></see> into a <see cref="T:System.Data.DataTable"></see>, preserving any property settings, as well as original and current values.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> to be imported.</param>
+ </member>
+ <member name="E:System.Data.DataTable.Initialized">
+ <summary>Occurs after the <see cref="T:System.Data.DataTable"></see> is initialized.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataTable.IsInitialized">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTable"></see> is initialized.</summary>
+ <returns>true to indicate the component has completed initialization; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Load(System.Data.IDataReader)">
+ <summary>Fills a <see cref="T:System.Data.DataTable"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see>. If the <see cref="T:System.Data.DataTable"></see> already contains rows, the incoming data from the data source is merged with the existing rows.</summary>
+ <param name="reader">An <see cref="T:System.Data.IDataReader"></see> that provides a result set.</param>
+ </member>
+ <member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption)">
+ <summary>Fills a <see cref="T:System.Data.DataTable"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see>. If the DataTable already contains rows, the incoming data from the data source is merged with the existing rows according to the value of the <paramref name="loadOption">loadOption</paramref> parameter.</summary>
+ <param name="reader">An <see cref="T:System.Data.IDataReader"></see> that provides one or more result sets.</param>
+ <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption"></see> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable"></see> are combined with incoming rows that share the same primary key.</param>
+ </member>
+ <member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler)">
+ <summary>Fills a <see cref="T:System.Data.DataTable"></see> with values from a data source using the supplied <see cref="T:System.Data.IDataReader"></see> using an error-handling delegate.</summary>
+ <param name="reader">A <see cref="T:System.Data.IDataReader"></see> that provides a result set.</param>
+ <param name="loadOption">A value from the <see cref="T:System.Data.LoadOption"></see> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable"></see> are combined with incoming rows that share the same primary key.</param>
+ <param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler"></see> delegate to call when an error occurs while loading data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)">
+ <summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
+ <param name="values">An array of values used to create the new row.</param>
+ <param name="fAcceptChanges">true to accept changes; otherwise false.</param>
+ <returns>The new <see cref="T:System.Data.DataRow"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
+ <exception cref="T:System.InvalidCastException">A value doesn't match its respective column type.</exception>
+ <exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
+ <exception cref="T:System.Data.NoNullAllowedException">Attempting to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull"></see> is false.</exception>
+ </member>
+ <member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Data.LoadOption)">
+ <summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
+ <param name="values">An array of values used to create the new row.</param>
+ <param name="loadOption">Used to determine how the array values are applied to the corresponding values in an existing row.</param>
+ <returns>The new <see cref="T:System.Data.DataRow"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.Locale">
+ <summary>Gets or sets the locale information used to compare strings within the table.</summary>
+ <returns>A <see cref="T:System.Globalization.CultureInfo"></see> that contains data about the user's machine locale. The default is the <see cref="T:System.Data.DataSet"></see> object's <see cref="T:System.Globalization.CultureInfo"></see> (returned by the <see cref="P:System.Data.DataSet.Locale"></see> property) to which the <see cref="T:System.Data.DataTable"></see> belongs; if the table doesn't belong to a <see cref="T:System.Data.DataSet"></see>, the default is the current system <see cref="T:System.Globalization.CultureInfo"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
+ <summary>Merge the specified <see cref="T:System.Data.DataTable"></see> with the current DataTable, indicating whether to preserve changes and how to handle missing schema in the current DataTable.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> to be merged with the current <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="preserveChanges">true, to preserve changes in the current <see cref="T:System.Data.DataTable"></see>; otherwise false.</param>
+ <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean)">
+ <summary>Merge the specified <see cref="T:System.Data.DataTable"></see> with the current DataTable, indicating whether to preserve changes in the current DataTable.</summary>
+ <param name="table">The DataTable to be merged with the current DataTable.</param>
+ <param name="preserveChanges">true, to preserve changes in the current DataTable; otherwise false.``</param>
+ </member>
+ <member name="M:System.Data.DataTable.Merge(System.Data.DataTable)">
+ <summary>Merge the specified <see cref="T:System.Data.DataTable"></see> with the current <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> to be merged with the current <see cref="T:System.Data.DataTable"></see>.</param>
+ </member>
+ <member name="P:System.Data.DataTable.MinimumCapacity">
+ <summary>Gets or sets the initial starting size for this table.</summary>
+ <returns>The initial starting size in rows of this table. The default is 50.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.Namespace">
+ <summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>The namespace of the <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.NewRow">
+ <summary>Creates a new <see cref="T:System.Data.DataRow"></see> with the same schema as the table.</summary>
+ <returns>A <see cref="T:System.Data.DataRow"></see> with the same schema as the <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.NewRowArray(System.Int32)">
+ <summary>Returns an array of <see cref="T:System.Data.DataRow"></see>.</summary>
+ <param name="size">A <see cref="T:System.Int32"></see> value that describes the size of the array.</param>
+ <returns>The new array.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.NewRowFromBuilder(System.Data.DataRowBuilder)">
+ <summary>Creates a new row from an existing row.</summary>
+ <param name="builder">A <see cref="T:System.Data.DataRowBuilder"></see> object.</param>
+ <returns>A <see cref="T:System.Data.DataRow"></see> derived class.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.OnColumnChanged(System.Data.DataColumnChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanged"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnColumnChanging(System.Data.DataColumnChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanging"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
+ <summary>Raises the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"></see> event.</summary>
+ <param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnRemoveColumn(System.Data.DataColumn)">
+ <summary>Notifies the <see cref="T:System.Data.DataTable"></see> that a <see cref="T:System.Data.DataColumn"></see> is being removed.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> being removed.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnRowChanged(System.Data.DataRowChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.RowChanged"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnRowChanging(System.Data.DataRowChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.RowChanging"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.RowDeleted"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.RowDeleting"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnTableCleared(System.Data.DataTableClearEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.TableCleared"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnTableClearing(System.Data.DataTableClearEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.TableClearing"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.OnTableNewRow(System.Data.DataTableNewRowEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataTable.TableNewRow"></see> event.</summary>
+ <param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="P:System.Data.DataTable.ParentRelations">
+ <summary>Gets the collection of parent relations for this <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataRelationCollection"></see> that contains the parent relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation"></see> objects exist.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.Prefix">
+ <summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>The prefix of the <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.PrimaryKey">
+ <summary>Gets or sets an array of columns that function as primary keys for the data table.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects.</returns>
+ <exception cref="T:System.Data.DataException">The key is a foreign key.</exception>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXml(System.IO.Stream)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.IO.Stream"></see>.</summary>
+ <param name="stream">An object that derives from <see cref="T:System.IO.Stream"></see></param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXml(System.IO.TextReader)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.IO.TextReader"></see>.</summary>
+ <param name="reader">The <see cref="T:System.IO.TextReader"></see> that will be used to read the data.</param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXml(System.String)">
+ <summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable"></see> from the specified file.</summary>
+ <param name="fileName">The name of the file from which to read the data.</param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXml(System.Xml.XmlReader)">
+ <summary>Reads XML Schema and Data into the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.Xml.XmlReader"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> that will be used to read the data.</param>
+ <returns>The <see cref="T:System.Data.XmlReadMode"></see> used to read the data.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.Stream)">
+ <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable"></see> using the specified stream.</summary>
+ <param name="stream">The stream used to read the schema.</param>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.TextReader)">
+ <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.IO.TextReader"></see>.</summary>
+ <param name="reader">The <see cref="T:System.IO.TextReader"></see> used to read the schema information.</param>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXmlSchema(System.String)">
+ <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable"></see> from the specified file.</summary>
+ <param name="fileName">The name of the file from which to read the schema information.</param>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXmlSchema(System.Xml.XmlReader)">
+ <summary>Reads an XML schema into the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.Xml.XmlReader"></see>.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> used to read the schema information.</param>
+ </member>
+ <member name="M:System.Data.DataTable.ReadXmlSerializable(System.Xml.XmlReader)">
+ <summary>Reads from an XML stream.</summary>
+ <param name="reader">A <see cref="T:System.Xml.XmlReader"></see> object.</param>
+ </member>
+ <member name="M:System.Data.DataTable.RejectChanges">
+ <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"></see> was called.</summary>
+ </member>
+ <member name="P:System.Data.DataTable.RemotingFormat">
+ <summary>Gets or sets the serialization format.</summary>
+ <returns>A <see cref="T:System.Data.SerializationFormat"></see> enumeration specifying either Binary or Xml serialization.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Reset">
+ <summary>Resets the <see cref="T:System.Data.DataTable"></see> 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>
+ </member>
+ <member name="E:System.Data.DataTable.RowChanged">
+ <summary>Occurs after a <see cref="T:System.Data.DataRow"></see> has been changed successfully.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTable.RowChanging">
+ <summary>Occurs when a <see cref="T:System.Data.DataRow"></see> is changing.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTable.RowDeleted">
+ <summary>Occurs after a row in the table has been deleted.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTable.RowDeleting">
+ <summary>Occurs before a row in the table is about to be deleted.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataTable.Rows">
+ <summary>Gets the collection of rows that belong to this table.</summary>
+ <returns>A <see cref="T:System.Data.DataRowCollection"></see> that contains <see cref="T:System.Data.DataRow"></see> objects; otherwise a null value if no <see cref="T:System.Data.DataRow"></see> objects exist.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Select">
+ <summary>Gets an array of all <see cref="T:System.Data.DataRow"></see> objects.</summary>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Select(System.String)">
+ <summary>Gets an array of all <see cref="T:System.Data.DataRow"></see> objects that match the filter criteria.</summary>
+ <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Select(System.String,System.String)">
+ <summary>Gets an array of all <see cref="T:System.Data.DataRow"></see> objects that match the filter criteria, in the specified sort order.</summary>
+ <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
+ <param name="sort">A string specifying the column and sort direction.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects matching the filter expression.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.Select(System.String,System.String,System.Data.DataViewRowState)">
+ <summary>Gets an array of all <see cref="T:System.Data.DataRow"></see> objects that match the filter in the order of the sort that match the specified state.</summary>
+ <param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see <see cref="http://www.csharp-examples.net/dataview-rowfilter/">DataView RowFilter Syntax [C#]</see>.</param>
+ <param name="sort">A string specifying the column and sort direction.</param>
+ <param name="recordStates">One of the <see cref="T:System.Data.DataViewRowState"></see> values.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects.</returns>
+ </member>
+ <member name="P:System.Data.DataTable.Site">
+ <summary>Gets or sets an <see cref="T:System.ComponentModel.ISite"></see> for the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>An <see cref="T:System.ComponentModel.ISite"></see> for the <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="E:System.Data.DataTable.TableCleared">
+ <summary>Occurs after a <see cref="T:System.Data.DataTable"></see> is cleared.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTable.TableClearing">
+ <summary>Occurs when a <see cref="T:System.Data.DataTable"></see> is cleared.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataTable.TableName">
+ <summary>Gets or sets the name of the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>The name of the <see cref="T:System.Data.DataTable"></see>.</returns>
+ <exception cref="T:System.ArgumentException">null or empty string (&quot;&quot;) is passed in and this table belongs to a collection.</exception>
+ <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>
+ </member>
+ <member name="E:System.Data.DataTable.TableNewRow">
+ <summary>Occurs when a new <see cref="T:System.Data.DataRow"></see> is inserted.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataTable.ToString">
+ <summary>Gets the <see cref="P:System.Data.DataTable.TableName"></see> and <see cref="P:System.Data.DataTable.DisplayExpression"></see>, if there is one as a concatenated string.</summary>
+ <returns>A string consisting of the <see cref="P:System.Data.DataTable.TableName"></see> and the <see cref="P:System.Data.DataTable.DisplayExpression"></see> values.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.String)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified file.</summary>
+ <param name="fileName">The file to which to write the XML data.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode,System.Boolean)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.IO.TextWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> used to write the document.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode,System.Boolean)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="stream">The stream to which the data will be written.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.Xml.XmlWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> used to write the document.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Boolean)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.Xml.XmlWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> with which to write the contents.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified file and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="fileName">The name of the file to which the data will be written.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.String,System.Boolean)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified file. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="fileName">The file to which to write the XML data.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.IO.TextWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> used to write the document.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Boolean)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.IO.TextWriter"></see>. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> with which to write the content.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema.</summary>
+ <param name="stream">The stream to which the data will be written.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode,System.Boolean)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.Xml.XmlWriter"></see> and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> used to write the document.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.Xml.XmlWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> with which to write the contents.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode,System.Boolean)">
+ <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable"></see> using the specified file and <see cref="T:System.Data.XmlWriteMode"></see>. To write the schema, set the value for the <paramref name="mode">mode</paramref> parameter to WriteSchema. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="fileName">The name of the file to which the data will be written.</param>
+ <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode"></see> values.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.IO.TextWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> with which to write the content.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.IO.Stream"></see>.</summary>
+ <param name="stream">The stream to which the data will be written.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Boolean)">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataTable"></see> as XML using the specified <see cref="T:System.IO.Stream"></see>. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="stream">The stream to which the data will be written.</param>
+ <param name="writeHierarchy">If true, write the contents of the current table and all its descendants. If false (the default value), write the data for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema using the specified <see cref="T:System.IO.TextWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> with which to write.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.String)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema to the specified file.</summary>
+ <param name="fileName">The name of the file to use.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter"></see>.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> to use.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream,System.Boolean)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema to the specified stream. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="stream">The stream to which the XML schema will be written.</param>
+ <param name="writeHierarchy">If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter,System.Boolean)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema using the specified <see cref="T:System.IO.TextWriter"></see>. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter"></see> with which to write.</param>
+ <param name="writeHierarchy">If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter,System.Boolean)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter"></see>. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> used to write the document.</param>
+ <param name="writeHierarchy">If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.String,System.Boolean)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema to the specified file. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy">writeHierarchy</paramref> parameter to true.</summary>
+ <param name="fileName">The name of the file to use.</param>
+ <param name="writeHierarchy">If true, write the schema of the current table and all its descendants. If false (the default value), write the schema for the current table only.</param>
+ </member>
+ <member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream)">
+ <summary>Writes the current data structure of the <see cref="T:System.Data.DataTable"></see> as an XML schema to the specified stream.</summary>
+ <param name="stream">The stream to which the XML schema will be written.</param>
+ </member>
+ <member name="P:System.Data.DataTable.System#ComponentModel#IListSource#ContainsListCollection">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection"></see>.</summary>
+ <returns>true if the collection is a collection of <see cref="T:System.Collections.IList"></see> objects; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.System#ComponentModel#IListSource#GetList">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IList"></see> that can be bound to a data source from the object.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema"></see> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see> method.</returns>
+ </member>
+ <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see>.</summary>
+ <param name="reader">An XmlReader.</param>
+ </member>
+ <member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see>.</summary>
+ <param name="writer">An XmlWriter.</param>
+ </member>
+ <member name="T:System.Data.DataTableClearEventArgs">
+ <summary>Provides data for the <see cref="M:System.Data.DataTable.Clear"></see> method.</summary>
+ </member>
+ <member name="M:System.Data.DataTableClearEventArgs.#ctor(System.Data.DataTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableClearEventArgs"></see> class.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> whose rows are being cleared.</param>
+ </member>
+ <member name="P:System.Data.DataTableClearEventArgs.Table">
+ <summary>Gets the table whose rows are being cleared.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> whose rows are being cleared.</returns>
+ </member>
+ <member name="P:System.Data.DataTableClearEventArgs.TableName">
+ <summary>Gets the table name whose rows are being cleared.</summary>
+ <returns>A <see cref="T:System.String"></see> indicating the table name.</returns>
+ </member>
+ <member name="P:System.Data.DataTableClearEventArgs.TableNamespace">
+ <summary>Gets the namespace of the table whose rows are being cleared.</summary>
+ <returns>A <see cref="T:System.String"></see> indicating the namespace name.</returns>
+ </member>
+ <member name="T:System.Data.DataTableClearEventHandler">
+ <summary>Represents the method that handles the <see cref="M:System.Data.DataTable.Clear"></see> method.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.Data.DataTableClearEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.DataTableCollection">
+ <summary>Represents the collection of tables for the <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Add">
+ <summary>Creates a new <see cref="T:System.Data.DataTable"></see> object by using a default name and adds it to the collection.</summary>
+ <returns>The newly created <see cref="T:System.Data.DataTable"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Add(System.Data.DataTable)">
+ <summary>Adds the specified DataTable to the collection.</summary>
+ <param name="table">The DataTable object to add.</param>
+ <exception cref="T:System.ArgumentNullException">The value specified for the table is null.</exception>
+ <exception cref="T:System.ArgumentException">The table already belongs to this collection, or belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. The comparison is not case sensitive.</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Add(System.String)">
+ <summary>Creates a <see cref="T:System.Data.DataTable"></see> object by using the specified name and adds it to the collection.</summary>
+ <param name="name">The name to give the created <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>The newly created <see cref="T:System.Data.DataTable"></see>.</returns>
+ <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Add(System.String,System.String)">
+ <summary>Creates a <see cref="T:System.Data.DataTable"></see> object by using the specified name and adds it to the collection.</summary>
+ <param name="name">The name to give the created <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="tableNamespace">The namespace to give the created <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>The newly created <see cref="T:System.Data.DataTable"></see>.</returns>
+ <exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.AddRange(System.Data.DataTable[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.DataTable"></see> array to the end of the collection.</summary>
+ <param name="tables">The array of <see cref="T:System.Data.DataTable"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.DataTableCollection.CanRemove(System.Data.DataTable)">
+ <summary>Verifies whether the specified <see cref="T:System.Data.DataTable"></see> object can be removed from the collection.</summary>
+ <param name="table">The DataTable in the collection to perform the check against.</param>
+ <returns>true if the table can be removed; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Clear">
+ <summary>Clears the collection of all <see cref="T:System.Data.DataTable"></see> objects.</summary>
+ </member>
+ <member name="E:System.Data.DataTableCollection.CollectionChanged">
+ <summary>Occurs after the <see cref="T:System.Data.DataTableCollection"></see> is changed because of <see cref="T:System.Data.DataTable"></see> objects being added or removed.</summary>
+ <returns></returns>
+ </member>
+ <member name="E:System.Data.DataTableCollection.CollectionChanging">
+ <summary>Occurs while the <see cref="T:System.Data.DataTableCollection"></see> is changing because of <see cref="T:System.Data.DataTable"></see> objects being added or removed.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Contains(System.String)">
+ <summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable"></see> object with the specified name exists in the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <returns>true if the specified table exists; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Contains(System.String,System.String)">
+ <summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable"></see> object with the specified name and table namespace exists in the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable"></see> namespace to look in.</param>
+ <returns>true if the specified table exists; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.CopyTo(System.Data.DataTable[],System.Int32)">
+ <summary>Copies all the elements of the current <see cref="T:System.Data.DataTableCollection"></see> to a one-dimensional <see cref="T:System.Array"></see>, starting at the specified destination array index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> to copy the current <see cref="T:System.Data.DataTableCollection"></see> object's elements into.</param>
+ <param name="index">The destination <see cref="T:System.Array"></see> index to start copying into.</param>
+ </member>
+ <member name="M:System.Data.DataTableCollection.IndexOf(System.Data.DataTable)">
+ <summary>Gets the index of the specified <see cref="T:System.Data.DataTable"></see> object.</summary>
+ <param name="table">The DataTable to search for.</param>
+ <returns>The zero-based index of the table, or -1 if the table is not found in the collection.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.IndexOf(System.String)">
+ <summary>Gets the index in the collection of the <see cref="T:System.Data.DataTable"></see> object with the specified name.</summary>
+ <param name="tableName">The name of the DataTable object to look for.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="3"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">The zero-based index of the <code>DataTable</code> with the specified name, or -1 if the table does not exist in the collection. </p>
+ <block subset="none" type="note"><p><br> 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. </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="5" sourceendlinenumber="5"></block></p>
+</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.IndexOf(System.String,System.String)">
+ <summary>Gets the index in the collection of the specified <see cref="T:System.Data.DataTable"></see> object.</summary>
+ <param name="tableName">The name of the <see cref="T:System.Data.DataTable"></see> object to look for.</param>
+ <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable"></see> namespace to look in.</param>
+ <returns>The zero-based index of the <see cref="T:System.Data.DataTable"></see> with the specified name, or -1 if the table does not exist in the collection.</returns>
+ </member>
+ <member name="P:System.Data.DataTableCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> object at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> with the specified index; otherwise null if the <see cref="T:System.Data.DataTable"></see> does not exist.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
+ </member>
+ <member name="P:System.Data.DataTableCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> object with the specified name.</summary>
+ <param name="name">The name of the DataTable to find.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> with the specified name; otherwise null if the <see cref="T:System.Data.DataTable"></see> does not exist.</returns>
+ </member>
+ <member name="P:System.Data.DataTableCollection.Item(System.String,System.String)">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> object with the specified name in the specified namespace.</summary>
+ <param name="name">The name of the DataTable to find.</param>
+ <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable"></see> namespace to look in.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> with the specified name; otherwise null if the <see cref="T:System.Data.DataTable"></see> does not exist.</returns>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Remove(System.Data.DataTable)">
+ <summary>Removes the specified <see cref="T:System.Data.DataTable"></see> object from the collection.</summary>
+ <param name="table">The DataTable to remove.</param>
+ <exception cref="T:System.ArgumentNullException">The value specified for the table is null.</exception>
+ <exception cref="T:System.ArgumentException">The table does not belong to this collection. -or- The table is part of a relationship.</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Remove(System.String)">
+ <summary>Removes the <see cref="T:System.Data.DataTable"></see> object with the specified name from the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.DataTable"></see> object to remove.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.Remove(System.String,System.String)">
+ <summary>Removes the <see cref="T:System.Data.DataTable"></see> object with the specified name from the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.DataTable"></see> object to remove.</param>
+ <param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable"></see> namespace to look in.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
+ </member>
+ <member name="M:System.Data.DataTableCollection.RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Data.DataTable"></see> object at the specified index from the collection.</summary>
+ <param name="index">The index of the DataTable to remove.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a table at the specified index.</exception>
+ </member>
+ <member name="T:System.Data.DataTableNewRowEventArgs">
+ <summary>Provides data for the <see cref="M:System.Data.DataTable.NewRow"></see> method.</summary>
+ </member>
+ <member name="M:System.Data.DataTableNewRowEventArgs.#ctor(System.Data.DataRow)">
+ <summary>Initializes a new instance of <see cref="T:System.Data.DataTableNewRowEventArgs"></see>.</summary>
+ <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> being added.</param>
+ </member>
+ <member name="P:System.Data.DataTableNewRowEventArgs.Row">
+ <summary>Gets the row that is being added.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> that is being added.</returns>
+ </member>
+ <member name="T:System.Data.DataTableNewRowEventHandler">
+ <summary>Represents the method that handles the <see cref="M:System.Data.DataTable.NewRow"></see> method.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.DataTableReader">
+ <summary>The <see cref="T:System.Data.DataTableReader"></see> obtains the contents of one or more <see cref="T:System.Data.DataTable"></see> objects in the form of one or more read-only, forward-only result sets.</summary>
+ </member>
+ <member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader"></see> class by using data from the supplied <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> from which the new <see cref="T:System.Data.DataTableReader"></see> obtains its result set.</param>
+ </member>
+ <member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader"></see> class using the supplied array of <see cref="T:System.Data.DataTable"></see> objects.</summary>
+ <param name="dataTables">The array of <see cref="T:System.Data.DataTable"></see> objects that supplies the results for the new <see cref="T:System.Data.DataTableReader"></see> object.</param>
+ </member>
+ <member name="M:System.Data.DataTableReader.Close">
+ <summary>Closes the current <see cref="T:System.Data.DataTableReader"></see>.</summary>
+ </member>
+ <member name="P:System.Data.DataTableReader.Depth">
+ <summary>The depth of nesting for the current row of the <see cref="T:System.Data.DataTableReader"></see>.</summary>
+ <returns>The depth of nesting for the current row; always zero.</returns>
+ </member>
+ <member name="P:System.Data.DataTableReader.FieldCount">
+ <summary>Returns the number of columns in the current row.</summary>
+ <returns>When not positioned in a valid result set, 0; otherwise the number of columns in the current row.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to retrieve the field count in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetBoolean(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.Boolean"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a Boolean.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetByte(System.Int32)">
+ <summary>Gets the value of the specified column as a byte.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a byte.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <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>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <param name="dataIndex">The index within the field from which to start the read operation.</param>
+ <param name="buffer">The buffer into which to read the stream of bytes.</param>
+ <param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
+ <param name="length">The maximum length to copy into the buffer.</param>
+ <returns>The actual number of bytes read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a byte array.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetChar(System.Int32)">
+ <summary>Gets the value of the specified column as a character.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified field does not contain a character.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Returns the value of the specified column as a character array.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <param name="dataIndex">The index within the field from which to start the read operation.</param>
+ <param name="buffer">The buffer into which to read the stream of chars.</param>
+ <param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
+ <param name="length">The maximum length to copy into the buffer.</param>
+ <returns>The actual number of characters read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a character array.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetDataTypeName(System.Int32)">
+ <summary>Gets a string representing the data type of the specified column.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>A string representing the column's data type.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetDateTime(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a DateTime value.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetDecimal(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.Decimal"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a Decimal value.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetDouble(System.Int32)">
+ <summary>Gets the value of the column as a double-precision floating point number.</summary>
+ <param name="ordinal">The zero-based ordinal of the column.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed DataTableReader.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a double-precision floating point number.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetEnumerator">
+ <summary>Returns an enumerator that can be used to iterate through the item collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> object that represents the item collection.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetFieldType(System.Int32)">
+ <summary>Gets the <see cref="T:System.Type"></see> that is the data type of the object.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The <see cref="T:System.Type"></see> that is the data type of the object.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetFloat(System.Int32)">
+ <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a single-precision floating point number.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetGuid(System.Int32)">
+ <summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a GUID.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetInt16(System.Int32)">
+ <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a 16-bit signed integer.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetInt32(System.Int32)">
+ <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a 32-bit signed integer value.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetInt64(System.Int32)">
+ <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a 64-bit signed integer value.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetName(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.String"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The name of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetOrdinal(System.String)">
+ <summary>Gets the column ordinal, given the name of the column.</summary>
+ <param name="name">The name of the column.</param>
+ <returns>The zero-based column ordinal.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetProviderSpecificFieldType(System.Int32)">
+ <summary>Gets the type of the specified column in provider-specific format.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The <see cref="T:System.Type"></see> that is the data type of the object.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetProviderSpecificValue(System.Int32)">
+ <summary>Gets the value of the specified column in provider-specific format.</summary>
+ <param name="ordinal">The zero-based number of the column whose value is retrieved.</param>
+ <returns>The value of the specified column in provider-specific format.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see></exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetProviderSpecificValues(System.Object[])">
+ <summary>Fills the supplied array with provider-specific type information for all the columns in the <see cref="T:System.Data.DataTableReader"></see>.</summary>
+ <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"></see>.</param>
+ <returns>The number of column values copied into the array.</returns>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetSchemaTable">
+ <summary>Returns a <see cref="T:System.Data.DataTable"></see> that describes the column metadata of the <see cref="T:System.Data.DataTableReader"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that describes the column metadata.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.DataTableReader"></see> is closed.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetString(System.Int32)">
+ <summary>Gets the value of the specified column as a string.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ <exception cref="T:System.InvalidCastException">The specified column does not contain a string.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetValue(System.Int32)">
+ <summary>Gets the value of the specified column in its native format.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>The value of the specified column. This method returns DBNull for null columns.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access columns in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.GetValues(System.Object[])">
+ <summary>Populates an array of objects with the column values of the current row.</summary>
+ <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the column values from the <see cref="T:System.Data.DataTableReader"></see>.</param>
+ <returns>The number of column values copied into the array.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ </member>
+ <member name="P:System.Data.DataTableReader.HasRows">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader"></see> contains one or more rows.</summary>
+ <returns>true if the <see cref="T:System.Data.DataTableReader"></see> contains one or more rows; otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to retrieve information about a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="P:System.Data.DataTableReader.IsClosed">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader"></see> is closed.</summary>
+ <returns>Returns true if the <see cref="T:System.Data.DataTableReader"></see> is closed; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataTableReader.IsDBNull(System.Int32)">
+ <summary>Gets a value that indicates whether the column contains non-existent or missing values.</summary>
+ <param name="ordinal">The zero-based column ordinal</param>
+ <returns>true if the specified column value is equivalent to <see cref="T:System.DBNull"></see>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ </member>
+ <member name="P:System.Data.DataTableReader.Item(System.Int32)">
+ <summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column in its native format.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount"></see> - 1.</exception>
+ </member>
+ <member name="P:System.Data.DataTableReader.Item(System.String)">
+ <summary>Gets the value of the specified column in its native format given the column name.</summary>
+ <param name="name">The name of the column.</param>
+ <returns>The value of the specified column in its native format.</returns>
+ <exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.NextResult">
+ <summary>Advances the <see cref="T:System.Data.DataTableReader"></see> to the next result set, if any.</summary>
+ <returns>true if there was another result set; otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to navigate within a closed <see cref="T:System.Data.DataTableReader"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataTableReader.Read">
+ <summary>Advances the <see cref="T:System.Data.DataTableReader"></see> to the next record.</summary>
+ <returns>true if there was another row to read; otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader"></see> .</exception>
+ </member>
+ <member name="P:System.Data.DataTableReader.RecordsAffected">
+ <summary>Gets the number of rows inserted, changed, or deleted by execution of the SQL statement.</summary>
+ <returns>The <see cref="T:System.Data.DataTableReader"></see> does not support this property and always returns 0.</returns>
+ </member>
+ <member name="T:System.Data.DataView">
+ <summary>Represents a databindable, customized view of a <see cref="T:System.Data.DataTable"></see> for sorting, filtering, searching, editing, and navigation. The <see cref="T:System.Data.DataView"></see> does not store data, but instead represents a connected view of its corresponding <see cref="T:System.Data.DataTable"></see>. Changes to the <see cref="T:System.Data.DataView"></see>’s data will affect the <see cref="T:System.Data.DataTable"></see>. Changes to the <see cref="T:System.Data.DataTable"></see>’s data will affect all <see cref="T:System.Data.DataView"></see>s associated with it.</summary>
+ </member>
+ <member name="M:System.Data.DataView.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataView"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DataView.#ctor(System.Data.DataTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataView"></see> class with the specified <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="table">A <see cref="T:System.Data.DataTable"></see> to add to the <see cref="T:System.Data.DataView"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataView.#ctor(System.Data.DataTable,System.String,System.String,System.Data.DataViewRowState)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataView"></see> class with the specified <see cref="T:System.Data.DataTable"></see>, <see cref="P:System.Data.DataView.RowFilter"></see>, <see cref="P:System.Data.DataView.Sort"></see>, and <see cref="T:System.Data.DataViewRowState"></see>.</summary>
+ <param name="table">A <see cref="T:System.Data.DataTable"></see> to add to the <see cref="T:System.Data.DataView"></see>.</param>
+ <param name="RowFilter">A <see cref="P:System.Data.DataView.RowFilter"></see> to apply to the <see cref="T:System.Data.DataView"></see>.</param>
+ <param name="Sort">A <see cref="P:System.Data.DataView.Sort"></see> to apply to the <see cref="T:System.Data.DataView"></see>.</param>
+ <param name="RowState">A <see cref="T:System.Data.DataViewRowState"></see> to apply to the <see cref="T:System.Data.DataView"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataView.AddNew">
+ <summary>Adds a new row to the <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.DataRowView"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.DataView.AllowDelete">
+ <summary>Sets or gets a value that indicates whether deletes are allowed.</summary>
+ <returns>true, if deletes are allowed; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataView.AllowEdit">
+ <summary>Gets or sets a value that indicates whether edits are allowed.</summary>
+ <returns>true, if edits are allowed; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataView.AllowNew">
+ <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"></see> method.</summary>
+ <returns>true, if new rows can be added; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataView.ApplyDefaultSort">
+ <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"></see>.</summary>
+ <returns>true, if the default sort is used; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataView.BeginInit">
+ <summary>Starts the initialization of a <see cref="T:System.Data.DataView"></see> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
+ </member>
+ <member name="M:System.Data.DataView.Close">
+ <summary>Closes the <see cref="T:System.Data.DataView"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataView.ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
+ <summary>Occurs after a <see cref="T:System.Data.DataColumnCollection"></see> has been changed successfully.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataView.CopyTo(System.Array,System.Int32)">
+ <summary>Copies items into an array. Only for Web Forms Interfaces.</summary>
+ <param name="array">array to copy into.</param>
+ <param name="index">index to start at.</param>
+ </member>
+ <member name="P:System.Data.DataView.Count">
+ <summary>Gets the number of records in the <see cref="T:System.Data.DataView"></see> after <see cref="P:System.Data.DataView.RowFilter"></see> and <see cref="P:System.Data.DataView.RowStateFilter"></see> have been applied.</summary>
+ <returns>The number of records in the <see cref="T:System.Data.DataView"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.DataViewManager">
+ <summary>Gets the <see cref="T:System.Data.DataViewManager"></see> associated with this view.</summary>
+ <returns>The DataViewManager that created this view. If this is the default <see cref="T:System.Data.DataView"></see> for a <see cref="T:System.Data.DataTable"></see>, the DataViewManager property returns the default DataViewManager for the DataSet. Otherwise, if the DataView was created without a DataViewManager, this property is null.</returns>
+ </member>
+ <member name="M:System.Data.DataView.Delete(System.Int32)">
+ <summary>Deletes a row at the specified index.</summary>
+ <param name="index">The index of the row to delete.</param>
+ </member>
+ <member name="M:System.Data.DataView.Dispose(System.Boolean)">
+ <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Data.DataView"></see> object.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Data.DataView.EndInit">
+ <summary>Ends the initialization of a <see cref="T:System.Data.DataView"></see> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
+ </member>
+ <member name="M:System.Data.DataView.Equals(System.Data.DataView)">
+ <summary>Determines whether the specified <see cref="T:System.Data.DataView"></see> instances are considered equal.</summary>
+ <param name="view">The <see cref="T:System.Data.DataView"></see> to be compared.</param>
+ <returns>true if the two <see cref="T:System.Data.DataView"></see> instances are equal; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataView.Find(System.Object[])">
+ <summary>Finds a row in the <see cref="T:System.Data.DataView"></see> by the specified sort key values.</summary>
+ <param name="key">An array of values, typed as <see cref="T:System.Object"></see>.</param>
+ <returns>The index of the position of the first row in the <see cref="T:System.Data.DataView"></see> that matches the sort key values specified; otherwise -1 if there are no matching sort key values.</returns>
+ </member>
+ <member name="M:System.Data.DataView.Find(System.Object)">
+ <summary>Finds a row in the <see cref="T:System.Data.DataView"></see> by the specified sort key value.</summary>
+ <param name="key">The object to search for.</param>
+ <returns>The index of the row in the <see cref="T:System.Data.DataView"></see> that contains the sort key value specified; otherwise -1 if the sort key value does not exist.</returns>
+ </member>
+ <member name="M:System.Data.DataView.FindRows(System.Object)">
+ <summary>Returns an array of <see cref="T:System.Data.DataRowView"></see> objects whose columns match the specified sort key value.</summary>
+ <param name="key">The column value, typed as <see cref="T:System.Object"></see>, to search for.</param>
+ <returns>An array of DataRowView objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty DataRowView array.</returns>
+ </member>
+ <member name="M:System.Data.DataView.FindRows(System.Object[])">
+ <summary>Returns an array of <see cref="T:System.Data.DataRowView"></see> objects whose columns match the specified sort key value.</summary>
+ <param name="key">An array of column values, typed as <see cref="T:System.Object"></see>, to search for.</param>
+ <returns>An array of DataRowView objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty DataRowView array.</returns>
+ </member>
+ <member name="M:System.Data.DataView.GetEnumerator">
+ <summary>Gets an enumerator for this <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> for navigating through the list.</returns>
+ </member>
+ <member name="M:System.Data.DataView.IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)">
+ <summary>Occurs after a <see cref="T:System.Data.DataView"></see> has been changed successfully.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="E:System.Data.DataView.Initialized">
+ <summary>Occurs when initialization of the <see cref="T:System.Data.DataView"></see> is completed.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.DataView.IsInitialized">
+ <summary>Gets a value that indicates whether the component is initialized.</summary>
+ <returns>true to indicate the component has completed initialization; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataView.IsOpen">
+ <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"></see>.</summary>
+ <returns>true, if the source is open; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataView.Item(System.Int32)">
+ <summary>Gets a row of data from a specified table.</summary>
+ <param name="recordIndex">The index of a record in the <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>A <see cref="T:System.Data.DataRowView"></see> of the row that you want.</returns>
+ </member>
+ <member name="E:System.Data.DataView.ListChanged">
+ <summary>Occurs when the list managed by the <see cref="T:System.Data.DataView"></see> changes.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataView.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataView.ListChanged"></see> event.</summary>
+ <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataView.Open">
+ <summary>Opens a <see cref="T:System.Data.DataView"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataView.Reset">
+ <summary>Reserved for internal use only.</summary>
+ </member>
+ <member name="P:System.Data.DataView.RowFilter">
+ <summary>Gets or sets the expression used to filter which rows are viewed in the <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>A string that specifies how rows are to be filtered.</returns>
+ </member>
+ <member name="P:System.Data.DataView.RowStateFilter">
+ <summary>Gets or sets the row state filter used in the <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataViewRowState"></see> values.</returns>
+ </member>
+ <member name="P:System.Data.DataView.Sort">
+ <summary>Gets or sets the sort column or columns, and sort order for the <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>A string that contains the column name followed by &quot;ASC&quot; (ascending) or &quot;DESC&quot; (descending). Columns are sorted ascending by default. Multiple columns can be separated by commas.</returns>
+ </member>
+ <member name="P:System.Data.DataView.Table">
+ <summary>Gets or sets the source <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that provides the data for this view.</returns>
+ </member>
+ <member name="M:System.Data.DataView.ToTable(System.Boolean,System.String[])">
+ <summary>Creates and returns a new <see cref="T:System.Data.DataTable"></see> based on rows in an existing <see cref="T:System.Data.DataView"></see>.</summary>
+ <param name="distinct">If true, the returned <see cref="T:System.Data.DataTable"></see> contains rows that have distinct values for all its columns. The default value is false.</param>
+ <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"></see>. The <see cref="T:System.Data.DataTable"></see> contains the specified columns in the order they appear within this array.</param>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> instance that contains the requested rows and columns.</returns>
+ </member>
+ <member name="M:System.Data.DataView.ToTable(System.String)">
+ <summary>Creates and returns a new <see cref="T:System.Data.DataTable"></see> based on rows in an existing <see cref="T:System.Data.DataView"></see>.</summary>
+ <param name="tableName">The name of the returned <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> instance that contains the requested rows and columns.</returns>
+ </member>
+ <member name="M:System.Data.DataView.ToTable(System.String,System.Boolean,System.String[])">
+ <summary>Creates and returns a new <see cref="T:System.Data.DataTable"></see> based on rows in an existing <see cref="T:System.Data.DataView"></see>.</summary>
+ <param name="tableName">The name of the returned <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="distinct">If true, the returned <see cref="T:System.Data.DataTable"></see> contains rows that have distinct values for all its columns. The default value is false.</param>
+ <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"></see>. The DataTable contains the specified columns in the order they appear within this array.</param>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> instance that contains the requested rows and columns.</returns>
+ </member>
+ <member name="M:System.Data.DataView.ToTable">
+ <summary>Creates and returns a new <see cref="T:System.Data.DataTable"></see> based on rows in an existing <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.DataTable"></see> instance that contains the requested rows and columns.</returns>
+ </member>
+ <member name="M:System.Data.DataView.UpdateIndex(System.Boolean)">
+ <summary>Reserved for internal use only.</summary>
+ <param name="force">Reserved for internal use only.</param>
+ </member>
+ <member name="M:System.Data.DataView.UpdateIndex">
+ <summary>Reserved for internal use only.</summary>
+ </member>
+ <member name="P:System.Data.DataView.System#Collections#ICollection#IsSynchronized">
+ <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#Collections#ICollection#SyncRoot">
+ <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#Add(System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)"></see>.</summary>
+ <param name="value">A <see cref="T:System.Object"></see> value.</param>
+ <returns>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#Clear">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#Contains(System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)"></see>.</summary>
+ <param name="value">A <see cref="T:System.Object"></see> value.</param>
+ <returns>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#IndexOf(System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)"></see>.</summary>
+ <param name="value">A <see cref="T:System.Object"></see> value.</param>
+ <returns>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#Insert(System.Int32,System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)"></see>.</summary>
+ <param name="index">A <see cref="T:System.Int32"></see> value.</param>
+ <param name="value">A <see cref="T:System.Object"></see> value to be inserted.</param>
+ </member>
+ <member name="P:System.Data.DataView.System#Collections#IList#IsFixedSize">
+ <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#Collections#IList#IsReadOnly">
+ <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#Collections#IList#Item(System.Int32)">
+ <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)"></see>.</summary>
+ <param name="recordIndex">A <see cref="T:System.Int32"></see> value.</param>
+ <returns>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#Remove(System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)"></see>.</summary>
+ <param name="value">A <see cref="T:System.Object"></see> value.</param>
+ </member>
+ <member name="M:System.Data.DataView.System#Collections#IList#RemoveAt(System.Int32)">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)"></see>.</summary>
+ <param name="index">A <see cref="T:System.Int32"></see> value.</param>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)"></see>.</summary>
+ <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> object.</param>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddNew">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew"></see>.</summary>
+ <returns>The item added to the list.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowEdit">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowNew">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowRemove">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)"></see>.</summary>
+ <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> object.</param>
+ <param name="direction">A <see cref="T:System.ComponentModel.ListSortDirection"></see> object.</param>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)"></see>.</summary>
+ <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> object.</param>
+ <param name="key">A <see cref="T:System.Object"></see> value.</param>
+ <returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#IsSorted">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)"></see>.</summary>
+ <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> object.</param>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveSort">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveSort"></see>.</summary>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortDirection">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortProperty">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsChangeNotification">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSearching">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSorting">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#ApplySort(System.ComponentModel.ListSortDescriptionCollection)">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection)"></see>.</summary>
+ <param name="sorts">A <see cref="T:System.ComponentModel.ListSortDescriptionCollection"></see> object.</param>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#Filter">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#RemoveFilter">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.RemoveFilter"></see>.</summary>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SortDescriptions">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsAdvancedSorting">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsFiltering">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])"></see>.</summary>
+ <param name="listAccessors"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])"></see>.</summary>
+ <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor"></see> objects.</param>
+ <returns>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])"></see>.</returns>
+ </member>
+ <member name="T:System.Data.DataViewManager">
+ <summary>Contains a default <see cref="T:System.Data.DataViewSettingCollection"></see> for each <see cref="T:System.Data.DataTable"></see> in a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataViewManager.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DataViewManager.#ctor(System.Data.DataSet)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager"></see> class for the specified <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="dataSet">The name of the <see cref="T:System.Data.DataSet"></see> to use.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.CreateDataView(System.Data.DataTable)">
+ <summary>Creates a <see cref="T:System.Data.DataView"></see> for the specified <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="table">The name of the <see cref="T:System.Data.DataTable"></see> to use in the <see cref="T:System.Data.DataView"></see>.</param>
+ <returns>A <see cref="T:System.Data.DataView"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.DataSet">
+ <summary>Gets or sets the <see cref="T:System.Data.DataSet"></see> to use with the <see cref="T:System.Data.DataViewManager"></see>.</summary>
+ <returns>The <see cref="T:System.Data.DataSet"></see> to use.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.DataViewSettingCollectionString">
+ <summary>Gets or sets a value that is used for code persistence.</summary>
+ <returns>A value that is used for code persistence.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.DataViewSettings">
+ <summary>Gets the <see cref="T:System.Data.DataViewSettingCollection"></see> for each <see cref="T:System.Data.DataTable"></see> in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataViewSettingCollection"></see> for each DataTable.</returns>
+ </member>
+ <member name="E:System.Data.DataViewManager.ListChanged">
+ <summary>Occurs after a row is added to or deleted from a <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataViewManager.ListChanged"></see> event.</summary>
+ <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.RelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
+ <summary>Raises a <see cref="E:System.Data.DataRelationCollection.CollectionChanged"></see> event when a <see cref="T:System.Data.DataRelation"></see> is added to or removed from the <see cref="T:System.Data.DataRelationCollection"></see>.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.TableCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
+ <summary>Raises a <see cref="E:System.Data.DataTableCollection.CollectionChanged"></see> event when a <see cref="T:System.Data.DataTable"></see> is added to or removed from the <see cref="T:System.Data.DataTableCollection"></see>.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#ICollection#Count">
+ <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.Count"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.ICollection.Count"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#ICollection#IsSynchronized">
+ <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized"></see>.</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#ICollection#SyncRoot">
+ <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IEnumerable#GetEnumerator">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator"></see>.</summary>
+ <returns>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#Add(System.Object)">
+ <summary>Adds an item to the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to add to the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>The position into which the new element was inserted.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#Clear">
+ <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IList"></see> contains a specific value.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>true if the <see cref="T:System.Object"></see> is found in the <see cref="T:System.Collections.IList"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#IndexOf(System.Object)">
+ <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>The index of <paramref name="value">value</paramref> if found in the list; otherwise, -1.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#Insert(System.Int32,System.Object)">
+ <summary>Inserts an item to the <see cref="T:System.Collections.IList"></see> at the specified index.</summary>
+ <param name="index">The zero-based index at which value should be inserted.</param>
+ <param name="value">The <see cref="T:System.Object"></see> to insert into the <see cref="T:System.Collections.IList"></see>.</param>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#IList#IsFixedSize">
+ <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize"></see>.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#IList#IsReadOnly">
+ <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#Collections#IList#Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#Remove(System.Object)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to remove from the <see cref="T:System.Collections.IList"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#Collections#IList#RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Collections.IList"></see> item at the specified index.</summary>
+ <param name="index">The zero-based index of the item to remove.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
+ <summary>Adds the <see cref="T:System.ComponentModel.PropertyDescriptor"></see> to the indexes used for searching.</summary>
+ <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"></see> to add to the indexes used for searching.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddNew">
+ <summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew"></see>.</summary>
+ <returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowEdit">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowNew">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowRemove">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
+ <summary>Sorts the list based on a <see cref="T:System.ComponentModel.PropertyDescriptor"></see> and a <see cref="T:System.ComponentModel.ListSortDirection"></see>.</summary>
+ <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"></see> to sort by.</param>
+ <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection"></see> values.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
+ <summary>Returns the index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor"></see>.</summary>
+ <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"></see> to search on.</param>
+ <param name="key">The value of the property parameter to search for.</param>
+ <returns>The index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#IsSorted">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
+ <summary>Removes the <see cref="T:System.ComponentModel.PropertyDescriptor"></see> from the indexes used for searching.</summary>
+ <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor"></see> to remove from the indexes used for searching.</param>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveSort">
+ <summary>Removes any sort applied using <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)"></see>.</summary>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortDirection">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortProperty">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsChangeNotification">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSearching">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSorting">
+ <summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting"></see>.</summary>
+ <returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
+ <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the properties on each item used to bind data.</summary>
+ <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor"></see> objects to find in the collection as bindable. This can be null.</param>
+ <returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the properties on each item used to bind data.</returns>
+ </member>
+ <member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
+ <summary>Returns the name of the list.</summary>
+ <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor"></see> objects, for which the list name is returned. This can be null.</param>
+ <returns>The name of the list.</returns>
+ </member>
+ <member name="T:System.Data.DataViewRowState">
+ <summary>Describes the version of data in a <see cref="T:System.Data.DataRow"></see>.</summary>
+ </member>
+ <member name="F:System.Data.DataViewRowState.Added">
+ <summary>A new row.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.CurrentRows">
+ <summary>Current rows including unchanged, new, and modified rows. By default, <see cref="T:System.Data.DataViewRowState"></see> is set to CurrentRows.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.Deleted">
+ <summary>A deleted row.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.ModifiedCurrent">
+ <summary>A current version of original data that has been modified (see ModifiedOriginal).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.ModifiedOriginal">
+ <summary>The original version of the data that was modified. (Although the data has since been modified, it is available as ModifiedCurrent).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.None">
+ <summary>None.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.OriginalRows">
+ <summary>Original rows including unchanged and deleted rows.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataViewRowState.Unchanged">
+ <summary>An unchanged row.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DataViewSetting">
+ <summary>Represents the default settings for <see cref="P:System.Data.DataView.ApplyDefaultSort"></see>, <see cref="P:System.Data.DataView.DataViewManager"></see>, <see cref="P:System.Data.DataView.RowFilter"></see>, <see cref="P:System.Data.DataView.RowStateFilter"></see>, <see cref="P:System.Data.DataView.Sort"></see>, and <see cref="P:System.Data.DataView.Table"></see> for DataViews created from the <see cref="T:System.Data.DataViewManager"></see>.</summary>
+ </member>
+ <member name="P:System.Data.DataViewSetting.ApplyDefaultSort">
+ <summary>Gets or sets a value indicating whether to use the default sort.</summary>
+ <returns>true if the default sort is used; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSetting.DataViewManager">
+ <summary>Gets the <see cref="T:System.Data.DataViewManager"></see> that contains this <see cref="T:System.Data.DataViewSetting"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataViewManager"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSetting.RowFilter">
+ <summary>Gets or sets the filter to apply in the <see cref="T:System.Data.DataView"></see>. See <see cref="P:System.Data.DataView.RowFilter"></see> for a code sample using RowFilter.</summary>
+ <returns>A string that contains the filter to apply.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSetting.RowStateFilter">
+ <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"></see>.</summary>
+ <returns>A value that indicates which rows to display.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSetting.Sort">
+ <summary>Gets or sets a value indicating the sort to apply in the <see cref="T:System.Data.DataView"></see>.</summary>
+ <returns>The sort to apply in the <see cref="T:System.Data.DataView"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSetting.Table">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> to which the <see cref="T:System.Data.DataViewSetting"></see> properties apply.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> object.</returns>
+ </member>
+ <member name="T:System.Data.DataViewSettingCollection">
+ <summary>Contains a read-only collection of <see cref="T:System.Data.DataViewSetting"></see> objects for each <see cref="T:System.Data.DataTable"></see> in a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance starting at the specified index.</summary>
+ <param name="ar">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
+ <param name="index">The index of the array at which to start inserting.</param>
+ </member>
+ <member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Data.DataViewSetting[],System.Int32)">
+ <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance starting at the specified index.</summary>
+ <param name="ar">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
+ <param name="index">The index of the array at which to start inserting.</param>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.Count">
+ <summary>Gets the number of <see cref="T:System.Data.DataViewSetting"></see> objects in the <see cref="T:System.Data.DataViewSettingCollection"></see>.</summary>
+ <returns>The number of <see cref="T:System.Data.DataViewSetting"></see> objects in the collection.</returns>
+ </member>
+ <member name="M:System.Data.DataViewSettingCollection.GetEnumerator">
+ <summary>Gets an <see cref="T:System.Collections.IEnumerator"></see> for the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.IsReadOnly">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataViewSettingCollection"></see> is read-only.</summary>
+ <returns>Returns true.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.IsSynchronized">
+ <summary>Gets a value that indicates whether access to the <see cref="T:System.Data.DataViewSettingCollection"></see> is synchronized (thread-safe).</summary>
+ <returns>This property is always false, unless overridden by a derived class.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.Item(System.Data.DataTable)">
+ <summary>Gets the <see cref="T:System.Data.DataViewSetting"></see> objects of the specified <see cref="T:System.Data.DataTable"></see> from the collection.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <returns>A collection of <see cref="T:System.Data.DataViewSetting"></see> objects.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Data.DataViewSetting"></see> objects of the <see cref="T:System.Data.DataTable"></see> specified by its index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <returns>A collection of <see cref="T:System.Data.DataViewSetting"></see> objects.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Data.DataViewSetting"></see> of the <see cref="T:System.Data.DataTable"></see> specified by its name.</summary>
+ <param name="tableName">The name of the <see cref="T:System.Data.DataTable"></see> to find.</param>
+ <returns>A collection of <see cref="T:System.Data.DataViewSetting"></see> objects.</returns>
+ </member>
+ <member name="P:System.Data.DataViewSettingCollection.SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection"></see>.</returns>
+ </member>
+ <member name="T:System.Data.DBConcurrencyException">
+ <summary>The exception that is thrown by the <see cref="T:System.Data.Common.DataAdapter"></see> during an insert, update, or delete operation if the number of rows affected equals zero.</summary>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException"></see> class.</summary>
+ <param name="message">The text string describing the details of the exception.</param>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException"></see> class.</summary>
+ <param name="message">The text string describing the details of the exception.</param>
+ <param name="inner">A reference to an inner exception.</param>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception,System.Data.DataRow[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException"></see> class.</summary>
+ <param name="message">The error message that explains the reason for this exception.</param>
+ <param name="inner">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ <param name="dataRows">An array containing the <see cref="T:System.Data.DataRow"></see> objects whose update failure generated this exception.</param>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[])">
+ <summary>Copies the <see cref="T:System.Data.DataRow"></see> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow"></see> objects.</summary>
+ <param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow"></see> objects to copy the <see cref="T:System.Data.DataRow"></see> objects into.</param>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Data.DataRow"></see> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow"></see> objects, starting at the specified destination array index.</summary>
+ <param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow"></see> objects to copy the <see cref="T:System.Data.DataRow"></see> objects into.</param>
+ <param name="arrayIndex">The destination array index to start copying into.</param>
+ </member>
+ <member name="M:System.Data.DBConcurrencyException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Populates the aprcified serialization information object with the data needed to serialize the <see cref="T:System.Data.DBConcurrencyException"></see>.</summary>
+ <param name="si">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that holds the serialized data associated with the <see cref="T:System.Data.DBConcurrencyException"></see>.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DBConcurrencyException"></see>.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="info">info</paramref> parameter is a null reference (Nothing in Visual Basic).</exception>
+ </member>
+ <member name="P:System.Data.DBConcurrencyException.Row">
+ <summary>Gets or sets the value of the <see cref="T:System.Data.DataRow"></see> that generated the <see cref="T:System.Data.DBConcurrencyException"></see>.</summary>
+ <returns>The value of the <see cref="T:System.Data.DataRow"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DBConcurrencyException.RowCount">
+ <summary>Gets the number of rows whose update failed, generating this exception.</summary>
+ <returns>An integer containing a count of the number of rows whose update failed.</returns>
+ </member>
+ <member name="T:System.Data.DbType">
+ <summary>Specifies the data type of a field, a property, or a Parameter object of a .NET Framework data provider.</summary>
+ </member>
+ <member name="F:System.Data.DbType.AnsiString">
+ <summary>A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.AnsiStringFixedLength">
+ <summary>A fixed-length stream of non-Unicode characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Binary">
+ <summary>A variable-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Boolean">
+ <summary>A simple type representing Boolean values of true or false.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Byte">
+ <summary>An 8-bit unsigned integer ranging in value from 0 to 255.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Currency">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Date">
+ <summary>A type representing a date value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.DateTime">
+ <summary>A type representing a date and time value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.DateTime2">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.DateTimeOffset">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Decimal">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Double">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Guid">
+ <summary>A globally unique identifier (or GUID).</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Int16">
+ <summary>An integral type representing signed 16-bit integers with values between -32768 and 32767.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Int32">
+ <summary>An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Int64">
+ <summary>An integral type representing signed 64-bit integers with values between -9223372036854775808 and 9223372036854775807.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Object">
+ <summary>A general type representing any reference or value type not explicitly represented by another DbType value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.SByte">
+ <summary>An integral type representing signed 8-bit integers with values between -128 and 127.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Single">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.String">
+ <summary>A type representing Unicode character strings.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.StringFixedLength">
+ <summary>A fixed-length string of Unicode characters.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Time">
+ <summary>A type representing a SQL Server DateTime value. If you want to use a SQL Server time value, use <see cref="F:System.Data.SqlDbType.Time"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.UInt16">
+ <summary>An integral type representing unsigned 16-bit integers with values between 0 and 65535.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.UInt32">
+ <summary>An integral type representing unsigned 32-bit integers with values between 0 and 4294967295.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.UInt64">
+ <summary>An integral type representing unsigned 64-bit integers with values between 0 and 18446744073709551615.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.VarNumeric">
+ <summary>A variable-length numeric value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DbType.Xml">
+ <summary>A parsed representation of an XML document or fragment.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DeletedRowInaccessibleException">
+ <summary>Represents the exception that is thrown when an action is tried on a <see cref="T:System.Data.DataRow"></see> that has been deleted.</summary>
+ </member>
+ <member name="M:System.Data.DeletedRowInaccessibleException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.MissingMappingAction">
+ <summary>Determines the action that occurs when a mapping is missing from a source table or a source column.</summary>
+ </member>
+ <member name="F:System.Data.MissingMappingAction.Error">
+ <summary>An <see cref="T:System.InvalidOperationException"></see> is generated if the specified column mapping is missing.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MissingMappingAction.Ignore">
+ <summary>The column or table not having a mapping is ignored. Returns null.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MissingMappingAction.Passthrough">
+ <summary>The source column or source table is created and added to the <see cref="T:System.Data.DataSet"></see> using its original name.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.MissingPrimaryKeyException">
+ <summary>Represents the exception that is thrown when you try to access a row in a table that has no primary key.</summary>
+ </member>
+ <member name="M:System.Data.MissingPrimaryKeyException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">A description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.MissingSchemaAction">
+ <summary>Specifies the action to take when adding data to the <see cref="T:System.Data.DataSet"></see> and the required <see cref="T:System.Data.DataTable"></see> or <see cref="T:System.Data.DataColumn"></see> is missing.</summary>
+ </member>
+ <member name="F:System.Data.MissingSchemaAction.Add">
+ <summary>Adds the necessary columns to complete the schema.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MissingSchemaAction.AddWithKey">
+ <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 <see cref="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)"></see>.To function properly with the .NET Framework Data Provider for OLE DB, 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"></see>. This ensures that incoming records that match existing records are updated instead of appended. When using 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. See SQL Server Books Online for more information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MissingSchemaAction.Error">
+ <summary>An <see cref="T:System.InvalidOperationException"></see> is generated if the specified column mapping is missing.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MissingSchemaAction.Ignore">
+ <summary>Ignores the extra columns.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.NoNullAllowedException">
+ <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"></see> is set to false.</summary>
+ </member>
+ <member name="M:System.Data.NoNullAllowedException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.NoNullAllowedException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.NoNullAllowedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.NoNullAllowedException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.INullable">
+ <summary>All the <see cref="N:System.Data.SqlTypes"></see> objects and structures implement the INullable interface.</summary>
+ </member>
+ <member name="P:System.Data.SqlTypes.INullable.IsNull">
+ <summary>Indicates whether a structure is null. This property is read-only.</summary>
+ <returns><see cref="T:System.Data.SqlTypes.SqlBoolean"></see>true if the value of this object is null. Otherwise, false.</returns>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlAlreadyFilledException">
+ <summary>The <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException"></see> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException"></see> class.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException"></see> class.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ <param name="e">A reference to an inner exception.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlBinary">
+ <summary>Represents a variable-length stream of binary data to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.#ctor(System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure, setting the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property to the contents of the supplied byte array.</summary>
+ <param name="value">The byte array to be stored or retrieved.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.Add(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Concatenates two specified <see cref="T:System.Data.SqlTypes.SqlBinary"></see> values to create a new <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> that is the concatenated value of x and y.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.CompareTo(System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object to be compared to this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of this <xref href="System.Data.SqlTypes.SqlBinary"></xref> structure and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> The value of this <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is the same as object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is greater than object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference. </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object to the supplied object and returns an indication of their relative values.</summary>
+ <param name="value">The object to be compared to this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of this <xref href="System.Data.SqlTypes.SqlBinary"></xref> structure and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> The value of this <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is the same as object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This <xref href="System.Data.SqlTypes.SqlBinary"></xref> object is greater than object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference. </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.Concat(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Concatenates two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to create a new <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>The concatenated values of the <paramref name="x">x</paramref> and <paramref name="y">y</paramref> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.Equals(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlBinary will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.GetHashCode">
+ <summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.GreaterThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBinary.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure is null. This property is read-only.</summary>
+ <returns>true if null; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBinary.Item(System.Int32)">
+ <summary>Gets the single byte from the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property located at the position indicated by the integer parameter, <paramref name="index">index</paramref>. If <paramref name="index">index</paramref> indicates a position beyond the end of the byte array, a <see cref="T:System.Data.SqlTypes.SqlNullValueException"></see> will be raised. This property is read-only.</summary>
+ <param name="index">The position of the byte to be retrieved.</param>
+ <returns>The byte located at the position indicated by the integer parameter.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null"></see> - or - The <paramref name="index">index</paramref> parameter indicates a position byond the length of the byte array as indicated by the <see cref="P:System.Data.SqlTypes.SqlBinary.Length"></see> property.</exception>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBinary.Length">
+ <summary>Gets the length in bytes of the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property. This property is read-only.</summary>
+ <returns>The length of the binary data in the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Length"></see> property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null"></see>.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.LessThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.LessThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.NotEquals(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBinary.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Addition(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Concatenates the two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> parameters to create a new <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>The concatenated values of the <paramref name="x">x</paramref> and <paramref name="y">y</paramref> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Equality(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlBinary to System.Byte[])">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlGuid to System.Data.SqlTypes.SqlBinary)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_GreaterThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structues to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Implicit(System.Byte[] to System.Data.SqlTypes.SqlBinary)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_Inequality(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_LessThan(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.op_LessThanOrEqual(System.Data.SqlTypes.SqlBinary,System.Data.SqlTypes.SqlBinary)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structures to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.ToSqlGuid">
+ <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlBinary"></see> to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBinary"></see> object to a string.</summary>
+ <returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see>. If the <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> is null the string will contain &quot;null&quot;.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBinary.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure. This property is read-only.</summary>
+ <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Value"></see> property is read when the property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null"></see>.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</summary>
+ <returns>An <see cref="System.Xml.Schema.XMLSchema"></see> instance.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see>.</summary>
+ <param name="reader">A <see cref="T:System.Xml.XmlReader"></see>.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see>.</summary>
+ <param name="writer">A <see cref="T:System.Xml.XmlWriter"></see>.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlBoolean">
+ <summary>Represents an integer value that is either 1 or 0 to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure using the supplied Boolean value.</summary>
+ <param name="value">The value for the new <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure; either true or false.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure using the specified integer value.</summary>
+ <param name="value">The integer whose value is to be used for the new <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.And(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Computes the bitwise AND operation of two specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The result of the logical AND operation.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBoolean.ByteValue">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure as a byte.</summary>
+ <returns>A byte representing the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.CompareTo(System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> object and returns an indication of their relative values.</summary>
+ <param name="value">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see><see cref="T:System.Data.SqlTypes.SqlBoolean"></see> object to compare, or a null reference (Nothing in Visual Basic).</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and value. </p>
+ <table><thead><tr><th> Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Description <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> A negative integer <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is equal to <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> A positive integer <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> <code data-dev-comment-type="paramref">value</code> is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to a specified object and returns an indication of their relative values.</summary>
+ <param name="value">An object to compare, or a null reference (Nothing in Visual Basic).</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and value. </p>
+ <table><thead><tr><th> Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Description <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> A negative integer <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is equal to <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> A positive integer <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than <code data-dev-comment-type="paramref">value</code>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> <code data-dev-comment-type="paramref">value</code> is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> and the two are equal; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.Equals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBoolean.False">
+ <summary>Represents a false value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.GreaterThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is greater than the second instance; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.GreaterThanOrEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is greater than or equal to the second instance; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBoolean.IsFalse">
+ <summary>Indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> is <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>.</summary>
+ <returns>true if Value is False; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBoolean.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure is null.</summary>
+ <returns>true if the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure is null; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBoolean.IsTrue">
+ <summary>Indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see>.</summary>
+ <returns>true if Value is True; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.LessThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is less than the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.LessThanOrEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is less than or equal to the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.NotEquals(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> for equality.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBoolean.Null">
+ <summary>Represents <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBoolean.One">
+ <summary>Represents a one value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.OnesComplement(System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_BitwiseAnd(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Computes the bitwise AND operation of two specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The result of the logical AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_BitwiseOr(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Computes the bitwise OR of its operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The results of the logical OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Equality(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> for equality.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_ExclusiveOr(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a bitwise exclusive-OR (XOR) operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The result of the logical XOR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Boolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_False(System.Data.SqlTypes.SqlBoolean)">
+ <summary>The false operator can be used to test the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether it is false.</summary>
+ <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be tested.</param>
+ <returns>Returns true if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is false, false otherwise.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_GreaterThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> object.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> object.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is greater than the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is greater than or equal to the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Implicit(System.Boolean to System.Data.SqlTypes.SqlBoolean)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_Inequality(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_LessThan(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is less than the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_LessThanOrEqual(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is true if the first instance is less than or equal to the second instance; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_LogicalNot(System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a NOT operation on a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> on which the NOT operation will be performed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> with the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see><see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if argument was true, <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see> if argument was null, and <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> otherwise.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_OnesComplement(System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.op_True(System.Data.SqlTypes.SqlBoolean)">
+ <summary>The true operator can be used to test the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to determine whether it is true.</summary>
+ <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be tested.</param>
+ <returns>Returns true if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is true, false otherwise.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.Or(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a bitwise OR operation on the two specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure whose Value is the result of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.Parse(System.String)">
+ <summary>Converts the specified <see cref="T:System.String"></see> representation of a logical value to its <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> equivalent.</summary>
+ <param name="s">The <see cref="T:System.String"></see> to be converted.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure that contains the parsed value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true then the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true then the new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new SqlInt16 structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true then the new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure's value is 1. Otherwise, the new SqlInt16 structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new SqlInt32 structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure's value is 1. Otherwise, the new SqlInt32 structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new SqlInt64 structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure's value is 1. Otherwise, the new SqlInt64 structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> value is 1. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals false, the new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> value is 0. If <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value is neither 1 nor 0, the new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> value is <see cref="F:System.Data.SqlTypes.SqlMoney.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure's value is 1; otherwise the new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value equals true then <see cref="T:System.Data.SqlTypes.SqlString"></see> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure's value is 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to a string.</summary>
+ <returns>A string that contains the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>. If the value is null, the string will contain &quot;null&quot;.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBoolean.True">
+ <summary>Represents a true value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBoolean.Value">
+ <summary>Gets the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value. This property is read-only.</summary>
+ <returns>true if the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see>; otherwise false.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is set to null.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.Xor(System.Data.SqlTypes.SqlBoolean,System.Data.SqlTypes.SqlBoolean)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
+ <returns>The result of the logical XOR operation.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlBoolean.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlByte">
+ <summary>Represents an 8-bit unsigned integer, in the range of 0 through 255, to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.#ctor(System.Byte)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure using the specified byte value.</summary>
+ <param name="value">A byte value to be stored in the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property of the new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Add(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlByte"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose Value property contains the results of the addition.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.BitwiseAnd(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.BitwiseOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.CompareTo(System.Data.SqlTypes.SqlByte)">
+ <summary>Compares this instance to the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> object and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> object to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.CompareTo(System.Object)">
+ <summary>Compares this instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Divide(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Divides its first <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Equals(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlByte"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlByte will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Equals(System.Object)">
+ <summary>Compares the supplied <see cref="T:System.Object"></see> parameter to the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> object.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.GreaterThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.GreaterThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlByte"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlByte.IsNull">
+ <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.LessThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.LessThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlByte.MaxValue">
+ <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlByte.MinValue">
+ <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Mod(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Modulus(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlByte"></see> values and returns the remainder.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</param>
+ <returns>The remainder left after division is performed on <paramref name="x">x</paramref> and <paramref name="y">y</paramref>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Multiply(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.NotEquals(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlByte.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.OnesComplement(System.Data.SqlTypes.SqlByte)">
+ <summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Addition(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlByte"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the sum of the two operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_BitwiseAnd(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_BitwiseOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Division(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Divides its first <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Equality(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlByte"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_ExclusiveOr(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the bitwise XOR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlByte to System.Byte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_GreaterThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the SqlBoolean will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Implicit(System.Byte to System.Data.SqlTypes.SqlByte)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Inequality(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_LessThan(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_LessThanOrEqual(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Modulus(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Multiply(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlByte"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_OnesComplement(System.Data.SqlTypes.SqlByte)">
+ <summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.op_Subtraction(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand from the first.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its 8-bit unsigned integer equivalent.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure that contains the 8-bit number represented by the String parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Subtract(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand from the first.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A SqlDecimal structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A SqlDouble structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A SqlInt16 structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A SqlInt32 structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A SqlInt64 structure who <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A SqlMoney structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A SqlSingle structure that has the same <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> as this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToSqlString">
+ <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlByte"></see> to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A SqlString that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to a <see cref="T:System.String"></see>.</summary>
+ <returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlByte"></see>. If the Value is null, the String will be a null string.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlByte.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure. This property is read-only</summary>
+ <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.Xor(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
+ <returns>The results of the XOR operation.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlByte.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlBytes">
+ <summary>Represents a mutable reference type that wraps either a <see cref="P:System.Data.SqlTypes.SqlBytes.Buffer"></see> or a <see cref="P:System.Data.SqlTypes.SqlBytes.Stream"></see>.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> class based on the specified byte array.</summary>
+ <param name="buffer">The array of unsigned bytes.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.Data.SqlTypes.SqlBinary)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> class based on the specified <see cref="T:System.Data.SqlTypes.SqlBinary"></see> value.</summary>
+ <param name="value">A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> value.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> class based on the specified <see cref="T:System.IO.Stream"></see> value.</summary>
+ <param name="s">A <see cref="T:System.IO.Stream"></see>.</param>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Buffer">
+ <summary>Returns a reference to the internal buffer.</summary>
+ <returns>Returns a reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string that indicates the XSD of the specified XmlSchemaSet.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.IsNull">
+ <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> is null.</summary>
+ <returns>true if the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> is null, false otherwise.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Item(System.Int64)">
+ <summary>Gets or sets the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance at the specified index.</summary>
+ <param name="offset">A <see cref="T:System.Int64"></see> value.</param>
+ <returns>A <see cref="T:System.Byte"></see> value.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Length">
+ <summary>Gets the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <returns>A <see cref="T:System.Int64"></see> value representing the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance. Returns -1 if no buffer is available to the instance or if the value is null. Returns a <see cref="P:System.IO.Stream.Length"></see> for a stream-wrapped instance.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.MaxLength">
+ <summary>Gets the maximum length of the value of the internal buffer of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see>.</summary>
+ <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"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Null">
+ <summary>Returns a null instance of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see>.</summary>
+ <returns>Returns an instance in such a way that <see cref="P:System.Data.SqlTypes.SqlBytes.IsNull"></see> returns true.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBytes to System.Data.SqlTypes.SqlBinary)">
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBinary to System.Data.SqlTypes.SqlBytes)">
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.Read(System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes from this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance to the passed-in buffer and returns the number of copied bytes.</summary>
+ <param name="offset">An <see cref="T:System.Int64"></see> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</param>
+ <param name="buffer">The byte array buffer to copy into.</param>
+ <param name="offsetInBuffer">An <see cref="T:System.Int32"></see> integer offset into the buffer to start copying into.</param>
+ <param name="count">An <see cref="T:System.Int32"></see> integer representing the number of bytes to copy.</param>
+ <returns>An <see cref="T:System.Int64"></see> long value representing the number of copied bytes.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.SetLength(System.Int64)">
+ <summary>Sets the length of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <param name="value">The <see cref="T:System.Int64"></see> long value representing the length.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.SetNull">
+ <summary>Sets this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance to null.</summary>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Storage">
+ <summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.StorageState"></see> enumeration.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Stream">
+ <summary>Gets or sets the data of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> as a stream.</summary>
+ <returns>The stream that contains the SqlBytes data.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.ToSqlBinary">
+ <summary>Constructs and returns a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> from this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary"></see> from this instance.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlBytes.Value">
+ <summary>Returns a managed copy of the value held by this <see cref="T:System.Data.SqlTypes.SqlBytes"></see>.</summary>
+ <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> as an array of bytes.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.Write(System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes from the passed-in buffer to this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <param name="offset">An <see cref="T:System.Int64"></see> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</param>
+ <param name="buffer">The byte array buffer to copy into.</param>
+ <param name="offsetInBuffer">An <see cref="T:System.Int32"></see> integer offset into the buffer to start copying into.</param>
+ <param name="count">An <see cref="T:System.Int32"></see> integer representing the number of bytes to copy.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlBytes"></see> instance.</summary>
+ <param name="info">The object to be populated with serialization information.</param>
+ <param name="context">The destination context of the serialization.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="r">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlChars">
+ <summary><see cref="T:System.Data.SqlTypes.SqlChars"></see> is a mutable reference type that wraps a <see cref="T:System.Char"></see> array or a <see cref="T:System.Data.SqlTypes.SqlString"></see> instance.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.#ctor(System.Char[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars"></see> class based on the specified character array.</summary>
+ <param name="buffer">A <see cref="T:System.Char"></see> array.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.#ctor(System.Data.SqlTypes.SqlString)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars"></see> class based on the specified <see cref="T:System.Data.SqlTypes.SqlString"></see> value.</summary>
+ <param name="value">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Buffer">
+ <summary>Returns a reference to the internal buffer.</summary>
+ <returns>Returns a reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlChars"></see> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.IsNull">
+ <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlChars"></see> is null.</summary>
+ <returns>true if the <see cref="T:System.Data.SqlTypes.SqlChars"></see> is null. Otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Item(System.Int64)">
+ <summary>Gets or sets the <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance at the specified index.</summary>
+ <param name="offset">An <see cref="T:System.Int64"></see> value.</param>
+ <returns>A <see cref="T:System.Char"></see> value.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Length">
+ <summary>Gets the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</summary>
+ <returns>A <see cref="T:System.Int64"></see> value that indicates the length in characters of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance. Returns -1 if no buffer is available to the instance, or if the value is null. Returns a <see cref="P:System.IO.Stream.Length"></see> for a stream-wrapped instance.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.MaxLength">
+ <summary>Gets the maximum length in two-byte characters of the value the internal buffer can hold.</summary>
+ <returns>An <see cref="T:System.Int64"></see> value representing the maximum length in two-byte characters of the value of the internal buffer. Returns -1 for a stream-wrapped <see cref="T:System.Data.SqlTypes.SqlChars"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Null">
+ <summary>Returns a null instance of this <see cref="T:System.Data.SqlTypes.SqlChars"></see>.</summary>
+ <returns>Returns an instance in such a way that <see cref="P:System.Data.SqlTypes.SqlChars.IsNull"></see> returns true. For more information, see <see cref="~/docs/framework/data/adonet/sql/handling-null-values.md">Handling Null Values</see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlChars)">
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlChars to System.Data.SqlTypes.SqlString)">
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.Read(System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Copies characters from this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance to the passed-in buffer and returns the number of copied characters.</summary>
+ <param name="offset">An <see cref="T:System.Int64"></see>long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</param>
+ <param name="buffer">The character array buffer to copy into.</param>
+ <param name="offsetInBuffer">An <see cref="T:System.Int32"></see> integer offset into the buffer to start copying into.</param>
+ <param name="count">An <see cref="T:System.Int32"></see> integer value representing the number of characters to copy.</param>
+ <returns>An <see cref="T:System.Int64"></see>long value representing the number of copied bytes.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.SetLength(System.Int64)">
+ <summary>Sets the length of this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</summary>
+ <param name="value">The <see cref="T:System.Int64"></see>long value representing the length.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.SetNull">
+ <summary>Sets this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance to null.</summary>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Storage">
+ <summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.StorageState"></see> enumeration.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance to its equivalent <see cref="T:System.Data.SqlTypes.SqlString"></see> representation.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> representation of this type.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlChars.Value">
+ <summary>Returns a managed copy of the value held by this <see cref="T:System.Data.SqlTypes.SqlChars"></see>.</summary>
+ <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlChars"></see> as an array of characters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.Write(System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Copies characters from the passed-in buffer to this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</summary>
+ <param name="offset">A long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</param>
+ <param name="buffer">The character array buffer to copy into.</param>
+ <param name="offsetInBuffer">An <see cref="T:System.Int32"></see> integer offset into the buffer to start copying into.</param>
+ <param name="count">An <see cref="T:System.Int32"></see> integer representing the number of characters to copy.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlChars"></see> instance.</summary>
+ <param name="info">The object to be populated with serialization information.</param>
+ <param name="context">The destination context of the serialization.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="r">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlCompareOptions">
+ <summary>Specifies the compare option values for a <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.BinarySort">
+ <summary>Specifies that sorts should be based on a characters numeric value instead of its alphabetical value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.BinarySort2">
+ <summary>Performs a binary sort.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreCase">
+ <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString"></see> comparisons must ignore case.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreKanaType">
+ <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString"></see> 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 &quot;computer&quot; or &quot;Internet&quot;. 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreNonSpace">
+ <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString"></see> 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 <see cref="http://www.unicode.org">http://www.unicode.org</see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreWidth">
+ <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString"></see> 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlCompareOptions.None">
+ <summary>Specifies the default option settings for <see cref="T:System.Data.SqlTypes.SqlString"></see> comparisons.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlDateTime">
+ <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"></see> structure has a different underlying data structure from its corresponding .NET Framework type, <see cref="T:System.DateTime"></see>, 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"></see> actually stores the relative difference to 00:00:00 AM 1/1/1900. Therefore, a conversion from &quot;00:00:00 AM 1/1/1900&quot; to an integer will return 0.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.DateTime)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the specified <see cref="T:System.DateTime"></see> value.</summary>
+ <param name="value">A DateTime structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the supplied parameters.</summary>
+ <param name="dayTicks">An integer value that represents the date as ticks.</param>
+ <param name="timeTicks">An integer value that represents the time as ticks.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the supplied parameters to initialize the year, month, day.</summary>
+ <param name="year">An integer representing the year of the of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="day">An integer value representing the day number of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the supplied parameters to initialize the year, month, day, hour, minute, and second of the new structure.</summary>
+ <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and millisecond of the new structure.</summary>
+ <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="millisecond">An double value representing the millisecond of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and billisecond of the new structure.</summary>
+ <param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="day">An integer value representing the day of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="bilisecond">An integer value representing the bilisecond (billionth of a second) of the new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.Add(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
+ <summary>Adds a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to the specified TimeSpan.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value.</param>
+ <param name="t">A Timespan value.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.CompareTo(System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than <xref href="System.Data.SqlTypes.SqlDateTime"></xref>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as <xref href="System.Data.SqlTypes.SqlDateTime"></xref>. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than <xref href="System.Data.SqlTypes.SqlDateTime"></xref> <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> <xref href="System.Data.SqlTypes.SqlDateTime"></xref> is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> as Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDateTime.DayTicks">
+ <summary>Gets the number of ticks representing the date of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <returns>The number of ticks representing the date that is contained in the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value"></see> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the Value property of a <see cref="N:System.Data.SqlTypes"></see> structure is set to null.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.Equals(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.GetHashCode">
+ <summary>Gets the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.GreaterThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDateTime.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.LessThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.LessThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.MaxValue">
+ <summary>Represents the maximum valid date value for a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.MinValue">
+ <summary>Represents the minimum valid date value for a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.NotEquals(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Performs a logical comparison of two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Addition(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
+ <summary>Adds the period of time indicated by the supplied <see cref="T:System.TimeSpan"></see> parameter, <paramref name="t">t</paramref>, to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="t">A <see cref="T:System.TimeSpan"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>. If either argument is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null"></see>, the new <see cref="P:System.Data.SqlTypes.SqlDateTime.Value"></see> is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Equality(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Explicit(System.Data.SqlTypes.SqlDateTime to System.DateTime)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlDateTime)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_GreaterThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Implicit(System.DateTime to System.Data.SqlTypes.SqlDateTime)">
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Inequality(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Performs a logical comparison of two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_LessThan(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_LessThanOrEqual(System.Data.SqlTypes.SqlDateTime,System.Data.SqlTypes.SqlDateTime)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.op_Subtraction(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
+ <summary>Subtracts the supplied <see cref="T:System.TimeSpan"></see> structure, <paramref name="t">t</paramref>, from the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
+ <param name="t">A <see cref="T:System.TimeSpan"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure representing the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.Parse(System.String)">
+ <summary>Converts the specified <see cref="T:System.String"></see> representation of a date and time to its <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> equivalent.</summary>
+ <param name="s">The string to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure equal to the date and time represented by the specified string.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerHour">
+ <summary>A constant whose value is the number of ticks equivalent to one hour.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerMinute">
+ <summary>A constant whose value is the number of ticks equivalent to one minute.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerSecond">
+ <summary>A constant whose value is the number of ticks equivalent to one second.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.Subtract(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
+ <summary>Subtracts the specified Timespan from this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> instance.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value.</param>
+ <param name="t">A Timespan value.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDateTime.TimeTicks">
+ <summary>Gets the number of ticks representing the time of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
+ <returns>The number of ticks representing the time of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A SqlString structure whose value is a string representing the date and time that is contained in this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to a <see cref="T:System.String"></see>.</summary>
+ <returns>A String representing the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value"></see> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDateTime.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure. This property is read-only.</summary>
+ <returns>The value of this <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the Value property of a <see cref="N:System.Data.SqlTypes"></see> structure is set to null.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlDecimal">
+ <summary>Represents a numeric value between - 10^38 +1 and 10^38 - 1, with fixed precision and scale.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Decimal)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied <see cref="T:System.Decimal"></see> value.</summary>
+ <param name="value">The <see cref="T:System.Decimal"></see> value to be stored as a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied double parameter.</summary>
+ <param name="dVal">A double, representing the value for the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied integer value.</summary>
+ <param name="value">The supplied integer value which will the used as the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied long integer value.</summary>
+ <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"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Byte,System.Byte,System.Boolean,System.Int32[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied parameters.</summary>
+ <param name="bPrecision">The maximum number of digits that can be used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure represents a positive or negative number.</param>
+ <param name="bits">The 128-bit unsigned integer that provides the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.#ctor(System.Byte,System.Byte,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure using the supplied parameters.</summary>
+ <param name="bPrecision">The maximum number of digits that can be used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure represents a positive or negative number.</param>
+ <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"></see> structures value.</param>
+ <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"></see> structures value.</param>
+ <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"></see> structures value.</param>
+ <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"></see> structures value.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Abs(System.Data.SqlTypes.SqlDecimal)">
+ <summary>The Abs method gets the absolute value of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter.</summary>
+ <param name="n">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the unsigned number representing the absolute value of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Add(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operators.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the sum.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.AdjustScale(System.Data.SqlTypes.SqlDecimal,System.Int32,System.Boolean)">
+ <summary>The scale of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> 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>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be adjusted.</param>
+ <param name="digits">The number of digits in the adjusted structure.</param>
+ <param name="fRound">If this parameter is true, the new Value will be rounded, if false, the value will be truncated.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the adjusted number.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.BinData">
+ <summary>Get the binary representation of the value of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure as an array of bytes.</summary>
+ <returns>An array of bytes that contains the binary representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Ceiling(System.Data.SqlTypes.SqlDecimal)">
+ <summary>Returns the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure for which the ceiling value is to be calculated.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> representing the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.CompareTo(System.Data.SqlTypes.SqlDecimal)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> object and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ConvertToPrecScale(System.Data.SqlTypes.SqlDecimal,System.Int32,System.Int32)">
+ <summary>Adjusts the value of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operand to the indicated precision and scale.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose value is to be adjusted.</param>
+ <param name="precision">The precision for the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="scale">The scale for the new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose Value has been adjusted to the precision and scale indicated in the parameters.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.Data">
+ <summary>Gets the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure as an array of integers.</summary>
+ <returns>An array of integers that contains the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Divide(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>The division operator calculates the results of dividing the first <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Equals(System.Object)">
+ <summary>Compares the supplied <see cref="T:System.Object"></see> parameter to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> instance.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> and the two are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Equals(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operands to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, the value of the SqlDecimal will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Floor(System.Data.SqlTypes.SqlDecimal)">
+ <summary>Rounds a specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> number to the next lower whole number.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure for which the floor value is to be calculated.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure that contains the whole number part of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.GreaterThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structures to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure is null.</summary>
+ <returns>true if this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure is null. Otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.IsPositive">
+ <summary>Indicates whether the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure is greater than zero.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> is assigned to null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.LessThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structures to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.LessThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDecimal.MaxPrecision">
+ <summary>A constant representing the largest possible value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Precision"></see> property.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDecimal.MaxScale">
+ <summary>A constant representing the maximum value for the <see cref="P:System.Data.SqlTypes.SqlDecimal.Scale"></see> property.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDecimal.MaxValue">
+ <summary>A constant representing the maximum value of a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDecimal.MinValue">
+ <summary>A constant representing the minimum value for a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Multiply(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.NotEquals(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDecimal.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Addition(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operators.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the sum.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Division(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>The division operator calculates the results of dividing the first <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Equality(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operands to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Double to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Decimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_GreaterThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structures to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Int64 to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Decimal to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlDecimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Inequality(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_LessThan(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structures to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_LessThanOrEqual(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Multiply(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_Subtraction(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Calculates the results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose Value property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.op_UnaryNegation(System.Data.SqlTypes.SqlDecimal)">
+ <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter.</summary>
+ <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be negated.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose value contains the results of the negation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> equivalent.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Power(System.Data.SqlTypes.SqlDecimal,System.Double)">
+ <summary>Raises the value of the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to the specified exponential power.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be raised to a power.</param>
+ <param name="exp">A double value that indicates the power to which the number should be raised.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure that contains the results.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.Precision">
+ <summary>Gets the maximum number of digits used to represent the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property.</summary>
+ <returns>The maximum number of digits used to represent the Value of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Round(System.Data.SqlTypes.SqlDecimal,System.Int32)">
+ <summary>Gets the number nearest the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's value with the specified precision.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be rounded.</param>
+ <param name="position">The number of significant fractional digits (precision) in the return value.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure that contains the results of the rounding operation.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.Scale">
+ <summary>Gets the number of decimal places to which <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> is resolved.</summary>
+ <returns>The number of decimal places to which the Value property is resolved.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Sign(System.Data.SqlTypes.SqlDecimal)">
+ <summary>Gets a value that indicates the sign of a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose sign is to be evaluated.</param>
+ <returns>A number that indicates the sign of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Subtract(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)">
+ <summary>Calculates the results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose Value property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToDouble">
+ <summary>Returns the a double equal to the contents of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property of this instance.</summary>
+ <returns>The decimal representation of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure. If the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's Value is true, the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's Value will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's Value will be 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> structure whose value is a string representing the value contained in this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.String"></see>.</summary>
+ <returns>A new <see cref="T:System.String"></see> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value"></see> property.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.Truncate(System.Data.SqlTypes.SqlDecimal,System.Int32)">
+ <summary>Truncates the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure's value to the that you want position.</summary>
+ <param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be truncated.</param>
+ <param name="position">The decimal position to which the number will be truncated.</param>
+ <returns>Supply a negative value for the <paramref name="position">position</paramref> parameter in order to truncate the value to the corresponding position to the left of the decimal point.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDecimal.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure. This property is read-only.</summary>
+ <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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlDouble">
+ <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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.#ctor(System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure using the supplied double parameter to set the new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> property.</summary>
+ <param name="value">A double whose value will be used for the new <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Add(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The addition operator computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.CompareTo(System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to compare.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Divide(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure that contains the results of the division operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if the two values are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Equals(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Performs a logical comparison on two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.GetHashCode">
+ <summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structre.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.GreaterThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDouble.IsNull">
+ <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> instance is null.</summary>
+ <returns>true if <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> is null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.LessThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.LessThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDouble.MaxValue">
+ <summary>A constant representing the maximum value for a <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDouble.MinValue">
+ <summary>A constant representing the minimum possible value of <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Multiply(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.NotEquals(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether they are notequal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDouble.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Addition(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The addition operator computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Division(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure that contains the results of the division operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Equality(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Performs a logical comparison on two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Double)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_GreaterThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Double to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlDouble)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Inequality(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_LessThan(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_LessThanOrEqual(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Multiply(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The multiplication operator computes the product of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_Subtraction(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The subtraction operator the second <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The results of the subtraction operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.op_UnaryNegation(System.Data.SqlTypes.SqlDouble)">
+ <summary>Returns the negated value of the specified <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure that contains the negated value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its double-precision floating point number equivalent.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> that contains the value represented by the String.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.Subtract(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)">
+ <summary>The subtraction operator the second <see cref="T:System.Data.SqlTypes.SqlDouble"></see> operand from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
+ <returns>The results of the subtraction operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>A SqlBoolean structure whose <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> is non-zero, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> is zero and <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see> if the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure is <see cref="F:System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A SqlByte structure whose Value equals the Value of this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new SqlDecimal structure whose converted value equals the rounded value of this SqlDouble.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose Value equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose Value equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose Value equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure's value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new SqlMoney structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> is equal to the value of this <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new SqlSingle structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A SqlString representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to a string.</summary>
+ <returns>A string representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlDouble.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure. This property is read-only.</summary>
+ <returns>The value of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlDouble.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XML schema consumed by .NET Framework.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">A <see cref="T:System.Xml.XmlReader"></see>.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">A <see cref="T:System.Xml.XmlWriter"></see>.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlGuid">
+ <summary>Represents a GUID to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure using the supplied byte array parameter.</summary>
+ <param name="value">A byte array.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.Guid)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure using the specified <see cref="T:System.Guid"></see> parameter.</summary>
+ <param name="g">A <see cref="T:System.Guid"></see></param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure using the specified <see cref="T:System.String"></see> parameter.</summary>
+ <param name="s">A <see cref="T:System.String"></see> object.</param>
+ </member>
+ <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)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure using the specified values.</summary>
+ <param name="a">The first four bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="b">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="c">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="d">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="e">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="f">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="g">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="h">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="i">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="j">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ <param name="k">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlGuid"></see> 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>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> object is a null reference (<code>Nothing</code>). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> 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>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> object is a null reference (<code>Nothing</code>) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlGuid.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.Equals(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlGuid will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.GetHashCode">
+ <summary>Returns the hash code of this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.GreaterThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlGuid.IsNull">
+ <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.LessThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.LessThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.NotEquals(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Performs a logical comparison on two <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlGuid.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Equality(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlBinary to System.Data.SqlTypes.SqlGuid)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlGuid to System.Guid)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlGuid)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_GreaterThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Implicit(System.Guid to System.Data.SqlTypes.SqlGuid)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_Inequality(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Performs a logical comparison on two <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_LessThan(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.op_LessThanOrEqual(System.Data.SqlTypes.SqlGuid,System.Data.SqlTypes.SqlGuid)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.Parse(System.String)">
+ <summary>Converts the specified <see cref="T:System.String"></see> structure to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.ToByteArray">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to a byte array.</summary>
+ <returns>An array of bytes representing the <see cref="P:System.Data.SqlTypes.SqlGuid.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.ToSqlBinary">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</summary>
+ <returns>A SqlBinary structure that contains the bytes in the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> structure that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to a <see cref="T:System.String"></see>.</summary>
+ <returns>A <see cref="T:System.String"></see> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlGuid.Value">
+ <summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure. This property is read-only.</summary>
+ <returns>A <see cref="T:System.Guid"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlInt16">
+ <summary>Represents a 16-bit signed integer to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure using the supplied short integer parameter.</summary>
+ <param name="value">A short integer.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Add(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.BitwiseAnd(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the bitwise AND.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.BitwiseOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the bitwise OR.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.CompareTo(System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Divide(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Equals(System.Object)">
+ <summary>Compares the specified object to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Equals(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlInt16 will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A <see cref="T:System.String"></see> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.GreaterThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt16.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false. For more information, see <see cref="~/docs/framework/data/adonet/sql/handling-null-values.md">Handling Null Values</see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.LessThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.LessThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt16.MaxValue">
+ <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt16.MinValue">
+ <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Mod(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Modulus(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> values and returns the remainder.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> value.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> value.</param>
+ <returns>The remainder left after division is performed on <paramref name="x">x</paramref> and <paramref name="y">y</paramref>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Multiply(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> contains the product of the two parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.NotEquals(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt16.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.OnesComplement(System.Data.SqlTypes.SqlInt16)">
+ <summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Addition(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_BitwiseAnd(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the bitwise AND.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_BitwiseOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the bitwise OR.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Division(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operand by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Equality(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_ExclusiveOr(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the bitwise XOR.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt16 to System.Int16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_GreaterThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Int16 to System.Data.SqlTypes.SqlInt16)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Inequality(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_LessThan(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two instances of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Compares two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structures to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Modulus(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the remainder after dividing its first <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operand by its second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Multiply(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> contains the product of the two parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_OnesComplement(System.Data.SqlTypes.SqlInt16)">
+ <summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_Subtraction(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.op_UnaryNegation(System.Data.SqlTypes.SqlInt16)">
+ <summary>The unary minus operator negates the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure that contains the negated value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its 16-bit signed integer equivalent.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A 16-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Subtract(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> is less than 0 or greater than 255, an <see cref="T:System.OverflowException"></see> occurs.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure whose Value equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.ToString">
+ <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.String"></see>.</summary>
+ <returns>A <see cref="T:System.String"></see> object representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt16.Value">
+ <summary>Gets the value of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure. This property is read-only.</summary>
+ <returns>A short integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.Xor(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure that contains the results of the XOR operation.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt16.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XML schema consumed by .NET Framework.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlInt32">
+ <summary>Represents a 32-bit signed integer to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure using the supplied integer value.</summary>
+ <param name="value">The integer to be converted.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Add(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.BitwiseAnd(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt32"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.BitwiseOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the bitwise OR of the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.CompareTo(System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt32"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Divide(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter from the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Equals(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlInt32 will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.GreaterThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt32.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure is null.</summary>
+ <returns>This property is true if <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> is null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.LessThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.LessThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt32.MaxValue">
+ <summary>A constant representing the largest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt32.MinValue">
+ <summary>A constant representing the smallest possible value of a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Mod(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Modulus(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> values and returns the remainder.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> value.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> value.</param>
+ <returns>The remainder left after division is performed on <paramref name="x">x</paramref> and <paramref name="y">y</paramref>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Multiply(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> contains the product of the two parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.NotEquals(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt32.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.OnesComplement(System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the one's complement operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Addition(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_BitwiseAnd(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt32"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_BitwiseOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the bitwise OR of the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Division(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter from the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Equality(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_ExclusiveOr(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a bitwise exclusive-OR operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise XOR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt32 to System.Int32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_GreaterThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Int32 to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlInt32)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Inequality(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performa a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_LessThan(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Compares the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Modulus(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Multiply(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> contains the product of the two parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_OnesComplement(System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the one's complement operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_Subtraction(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.op_UnaryNegation(System.Data.SqlTypes.SqlInt32)">
+ <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the negated value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its 32-bit signed integer equivalent.</summary>
+ <param name="s">The <see cref="T:System.String"></see> to be parsed.</param>
+ <returns>A 32-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Subtract(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure. If the value of the SqlInt32 is less than 0 or greater than 255, an <see cref="T:System.OverflowException"></see> occurs.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.ToString">
+ <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to a <see cref="T:System.String"></see>.</summary>
+ <returns>A <see cref="T:System.String"></see> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt32.Value">
+ <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure. This property is read-only.</summary>
+ <returns>An integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property contains <see cref="F:System.Data.SqlTypes.SqlInt32.Null"></see>.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.Xor(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
+ <summary>Performs a bitwise exclusive-OR operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the bitwise XOR operation.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt32.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlInt64">
+ <summary>Represents a 64-bit signed integer to be stored in or retrieved from a database.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.#ctor(System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure using the supplied long integer.</summary>
+ <param name="value">A long integer.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Add(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.BitwiseAnd(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.BitwiseOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.CompareTo(System.Data.SqlTypes.SqlInt64)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt64"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Divide(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property contains the results of the division operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Equals(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlInt64 will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.GetHashCode">
+ <summary>Returns the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.GreaterThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt64.IsNull">
+ <summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.LessThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.LessThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt64.MaxValue">
+ <summary>A constant representing the largest possible value for a <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt64.MinValue">
+ <summary>A constant representing the smallest possible value for a <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Mod(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Modulus(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Divides two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> values and returns the remainder.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> value.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> value.</param>
+ <returns>The remainder left after division is performed on <paramref name="x">x</paramref> and <paramref name="y">y</paramref>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Multiply(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.NotEquals(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two SqlInt64 parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt64.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.OnesComplement(System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Addition(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_BitwiseAnd(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the bitwise AND of its <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise AND operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_BitwiseOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the bitwise OR of its two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operands.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise OR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Division(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property contains the results of the division operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Equality(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_ExclusiveOr(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise XOR operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Int64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_GreaterThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Int64 to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlInt64)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Inequality(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two SqlInt64 parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_LessThan(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_LessThanOrEqual(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a logical comparison on the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Modulus(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the remainder after dividing the first <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property contains the remainder.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Multiply(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Computes the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_OnesComplement(System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_Subtraction(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property equals the results of the subtraction operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.op_UnaryNegation(System.Data.SqlTypes.SqlInt64)">
+ <summary>The unary minus operator negates the <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> operand.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the negated <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its 64-bit signed integer equivalent.</summary>
+ <param name="s">The <see cref="T:System.String"></see> to be parsed.</param>
+ <returns>A 64-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Subtract(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property equals the results of the subtraction operation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.ToString">
+ <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlInt64"></see> to <see cref="T:System.String"></see>.</summary>
+ <returns>A <see cref="T:System.String"></see> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlInt64.Value">
+ <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure. This property is read-only.</summary>
+ <returns>A long integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.Xor(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)">
+ <summary>Performs a bitwise exclusive-OR operation on the supplied parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure that contains the results of the bitwise XOR operation.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlInt64.Zero">
+ <summary>Represents a zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlMoney">
+ <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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Decimal)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class with the specified <see cref="T:System.Decimal"></see> value.</summary>
+ <param name="value">The monetary value to initialize.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class with specified double value.</summary>
+ <param name="value">The monetary value to initialize.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class with the specified integer value.</summary>
+ <param name="value">The monetary value to initialize.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.#ctor(System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class with the specified long integer value.</summary>
+ <param name="value">The monetary value to initialize.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Add(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> stucture whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.CompareTo(System.Data.SqlTypes.SqlMoney)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Divide(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>Equals will return true if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Equals(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlMoney will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.GetHashCode">
+ <summary>Gets the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.GreaterThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlMoney.IsNull">
+ <summary>Returns a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.LessThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.LessThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlMoney.MaxValue">
+ <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlMoney.MinValue">
+ <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Multiply(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The multiplicaion operator calculates the product of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.NotEquals(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlMoney.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Addition(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Calculates the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> stucture whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Division(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The division operator divides the first <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Equality(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Decimal)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Double to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_GreaterThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Decimal to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Int64 to System.Data.SqlTypes.SqlMoney)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Inequality(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_LessThan(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_LessThanOrEqual(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Multiply(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The multiplicaion operator calculates the product of the two <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameters.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_Subtraction(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The subtraction operator subtracts the second <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure that contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.op_UnaryNegation(System.Data.SqlTypes.SqlMoney)">
+ <summary>The unary minus operator negates the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter.</summary>
+ <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to be negated.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> contains the results of the negation.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Parse(System.String)">
+ <summary>Converts the <see cref="T:System.String"></see> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlMoney"></see> equivalent.</summary>
+ <param name="s">The String to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.Subtract(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)">
+ <summary>The subtraction operator subtracts the second <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure that contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToDecimal">
+ <summary>Converts the Value of this instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> as a <see cref="T:System.Decimal"></see> structure.</summary>
+ <returns>A <see cref="T:System.Decimal"></see> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> property of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to a <see cref="T:System.Double"></see>.</summary>
+ <returns>A double with a value equal to this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to an <see cref="T:System.Int32"></see>.</summary>
+ <returns>A 32-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToInt64">
+ <summary>Converts the Value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to an <see cref="T:System.Int64"></see>.</summary>
+ <returns>A 64-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure is zero, the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure's value will be <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> structure whose value is a string representing the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.ToString">
+ <summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlMoney"></see> to string.</summary>
+ <returns>A string whose value is the string representation of the value of this <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlMoney.Value">
+ <summary>Gets the monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure. This property is read-only.</summary>
+ <returns>The monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is set to null.</exception>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlMoney.Zero">
+ <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlNotFilledException">
+ <summary>The <see cref="T:System.Data.SqlTypes.SqlNotFilledException"></see> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException"></see> class.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException"></see> class.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ <param name="e">A reference to an inner exception.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlNullValueException">
+ <summary>The exception that is thrown when the Value property of a <see cref="N:System.Data.SqlTypes"></see> structure is set to null.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException"></see> class with a system-supplied message that describes the error.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException"></see> class with a specified message that describes the error.</summary>
+ <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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlNullValueException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <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>
+ <param name="e">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlSingle">
+ <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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.#ctor(System.Double)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure using the supplied double parameter.</summary>
+ <param name="value">A double value which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> of the new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.#ctor(System.Single)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</summary>
+ <param name="value">A floating point number which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> of the new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Add(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.CompareTo(System.Data.SqlTypes.SqlSingle)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> instance to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Divide(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A SqlInt64 structure that contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>true if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> and the two are equal. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Equals(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlSingle will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.GetHashCode">
+ <summary>Gets the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.GreaterThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> operands to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlSingle.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure is null.</summary>
+ <returns>true if null. Otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.LessThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.LessThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlSingle.MaxValue">
+ <summary>Represents the maximum value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlSingle.MinValue">
+ <summary>Represents the minimum value that can be assigned to <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Multiply(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Computes the product of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.NotEquals(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlSingle.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Addition(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Division(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Divides the first <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure by the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the results of the division.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Equality(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two SqlSingle parameters to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Single)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlString to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_GreaterThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> operands to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures to determine whether the first is greater than or equl to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Single to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlSingle)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Inequality(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_LessThan(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_LessThanOrEqual(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameters to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Multiply(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Computes the product of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the product of the multiplication.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_Subtraction(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.op_UnaryNegation(System.Data.SqlTypes.SqlSingle)">
+ <summary>Negates the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> of the specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the negated value.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Parse(System.String)">
+ <summary>Converts the specified <see cref="T:System.String"></see> to a <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</summary>
+ <param name="s">The <see cref="T:System.String"></see> to be parsed.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> equivalent to the value that is contained in the specified <see cref="T:System.String"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.Subtract(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)">
+ <summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure from the first.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure that contains the results of the subtraction.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure. If the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure's Value is true, the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's Value will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure's Value will be 0.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new SqlDecimal equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new SqlDouble equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new SqlInt16 equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToSqlString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.ToString">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.String"></see>.</summary>
+ <returns>A String object representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlSingle.Value">
+ <summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure. This property is read-only.</summary>
+ <returns>A floating point value in the range -3.40E+38 through 3.40E+38.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlSingle.Zero">
+ <summary>Represents the zero value that can be assigned to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value"></see> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlString">
+ <summary>Represents a variable-length stream of characters to be stored in or retrieved from the database. <see cref="T:System.Data.SqlTypes.SqlString"></see> has a different underlying data structure from its corresponding .NET Framework <see cref="T:System.String"></see> data type.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure using the specified string.</summary>
+ <param name="data">The string to store.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure using the specified string and locale id values.</summary>
+ <param name="data">The string to store.</param>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure using the specified locale id, compare options, and data.</summary>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="data">The data array to store.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.String,System.Int32,System.Data.SqlTypes.SqlCompareOptions)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure using the specified string, locale id, and compare option values.</summary>
+ <param name="data">The string to store.</param>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> class.</summary>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="data">The data array to store.</param>
+ <param name="fUnicode">true if Unicode encoded. Otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> class.</summary>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="data">The data array to store.</param>
+ <param name="index">The starting index within the array.</param>
+ <param name="count">The number of characters from index to copy.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.#ctor(System.Int32,System.Data.SqlTypes.SqlCompareOptions,System.Byte[],System.Int32,System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> class.</summary>
+ <param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <param name="data">The data array to store.</param>
+ <param name="index">The starting index within the array.</param>
+ <param name="count">The number of characters from index to copy.</param>
+ <param name="fUnicode">true if Unicode encoded. Otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.Add(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Concatenates two specified <see cref="T:System.Data.SqlTypes.SqlString"></see> values to create a new <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> that is the concatenated value of <paramref name="x">x</paramref> and <paramref name="y">y</paramref>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.BinarySort">
+ <summary>Specifies that sorts should be based on a characters numeric value instead of its alphabetical value.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.BinarySort2">
+ <summary>Specifies that sorts should be based on a character's numeric value instead of its alphabetical value.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.Clone">
+ <summary>Creates a copy of this <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlString"></see> object in which all property values are the same as the original.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.CompareInfo">
+ <summary>Gets the <see cref="T:System.Globalization.CompareInfo"></see> object that defines how string comparisons should be performed for this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
+ <returns>A CompareInfo object that defines string comparison for this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions)">
+ <summary>Gets the <see cref="T:System.Globalization.CompareOptions"></see> enumeration equilvalent of the specified <see cref="T:System.Data.SqlTypes.SqlCompareOptions"></see> value.</summary>
+ <param name="compareOptions">A <see cref="T:System.Data.SqlTypes.SqlCompareOptions"></see> value that describes the comparison options for this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</param>
+ <returns>A CompareOptions value that corresponds to the SqlCompareOptions for this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.CompareTo(System.Data.SqlTypes.SqlString)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlString"></see> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Data.SqlTypes.SqlString"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic). </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.CompareTo(System.Object)">
+ <summary>Compares this <see cref="T:System.Data.SqlTypes.SqlString"></see> object to the supplied <see cref="T:System.Object"></see> and returns an indication of their relative values.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> to be compared.</param>
+ <returns><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Data.Common.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed number that indicates the relative values of the instance and the object. </p>
+ <table><thead><tr><th> Return Value <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Condition <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td> This instance is less than the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td> This instance is the same as the object. <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td> This instance is greater than the object <p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> -or- </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="20" sourceendlinenumber="20"> The object is a null reference (<code>Nothing</code> in Visual Basic) </p>
+<p sourcefile="System.Data.Common.yml" sourcestartlinenumber="22" sourceendlinenumber="22"> </td></tr></tbody></table></p>
+</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.Concat(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Concatenates the two specified <see cref="T:System.Data.SqlTypes.SqlString"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> parameters.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.CultureInfo">
+ <summary>Gets the <see cref="T:System.Globalization.CultureInfo"></see> structure that represents information about the culture of this <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</summary>
+ <returns>A <see cref="T:System.Globalization.CultureInfo"></see> 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>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.Equals(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>true if the two values are equal. Otherwise, false. If either instance is null, then the SqlString will be null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.Equals(System.Object)">
+ <summary>Compares the supplied object parameter to the <see cref="P:System.Data.SqlTypes.SqlString.Value"></see> property of the <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</summary>
+ <param name="value">The object to be compared.</param>
+ <returns>Equals will return true if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> and the two are equal; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GetHashCode">
+ <summary>Gets the hash code for this instance.</summary>
+ <returns>A 32-bit signed integer hash code.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GetNonUnicodeBytes">
+ <summary>Gets an array of bytes, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString"></see> in ANSI format.</summary>
+ <returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString"></see> in ANSI format.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GetUnicodeBytes">
+ <summary>Gets an array of bytes, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString"></see> in Unicode format.</summary>
+ <returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString"></see> in Unicode format.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GreaterThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.GreaterThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.IgnoreCase">
+ <summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString"></see> comparisons should ignore case.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.IgnoreKanaType">
+ <summary>Specifies that the string comparison must ignore the Kana type.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.IgnoreNonSpace">
+ <summary>Specifies that the string comparison must ignore non-space combining characters, such as diacritics.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.IgnoreWidth">
+ <summary>Specifies that the string comparison must ignore the character width.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.IsNull">
+ <summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure is null.</summary>
+ <returns>true if <see cref="P:System.Data.SqlTypes.SqlString.Value"></see> is <see cref="F:System.Data.SqlTypes.SqlString.Null"></see>. Otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.LCID">
+ <summary>Specifies the geographical locale and language for the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
+ <returns>The locale id for the string stored in the <see cref="P:System.Data.SqlTypes.SqlString.Value"></see> property.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.LessThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.LessThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.NotEquals(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.SqlString.Null">
+ <summary>Represents a <see cref="T:System.DBNull"></see> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Addition(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Concatenates the two specified <see cref="T:System.Data.SqlTypes.SqlString"></see> structures.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> parameters.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Equality(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether they are equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlString to System.String)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlSingle to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlMoney to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt64 to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt16 to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt32 to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDouble to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDecimal to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDateTime to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlByte to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlBoolean to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlGuid to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_GreaterThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is greater than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_GreaterThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is greater than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Implicit(System.String to System.Data.SqlTypes.SqlString)">
+ <param name="x"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_Inequality(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether they are not equal.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_LessThan(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is less than the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.op_LessThanOrEqual(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)">
+ <summary>Performs a logical comparison of the two <see cref="T:System.Data.SqlTypes.SqlString"></see> operands to determine whether the first is less than or equal to the second.</summary>
+ <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <param name="y">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
+ <returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="T:System.Data.SqlTypes.SqlString"></see> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.SqlCompareOptions">
+ <summary>A combination of one or more of the <see cref="T:System.Data.SqlTypes.SqlCompareOptions"></see> enumeration values that represent the way in which this <see cref="T:System.Data.SqlTypes.SqlString"></see> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString"></see> structures.</summary>
+ <returns>A value specifying how this <see cref="T:System.Data.SqlTypes.SqlString"></see> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString"></see> structures.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlBoolean">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
+ <returns>true if the <see cref="P:System.Data.SqlTypes.SqlString.Value"></see> is non-zero; false if zero; otherwise Null.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlByte">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
+ <returns>A new SqlByte structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value"></see> equals the number represented by this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlDateTime">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
+ <returns>A new SqlDateTime structure that contains the date value represented by this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlDecimal">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> that contains the value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlDouble">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlGuid">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value"></see> is the Guid represented by this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt16">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt32">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlInt64">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlMoney">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToSqlSingle">
+ <summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
+ <returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle"></see> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString"></see>..</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.ToString">
+ <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString"></see> object to a <see cref="T:System.String"></see>.</summary>
+ <returns>A <see cref="T:System.String"></see> with the same value as this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlString.Value">
+ <summary>Gets the string that is stored in this <see cref="T:System.Data.SqlTypes.SqlString"></see> structure. This property is read-only.</summary>
+ <returns>The string that is stored.</returns>
+ <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The value of the string is <see cref="F:System.Data.SqlTypes.SqlString.Null"></see>.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>An XmlSchema.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="reader">XmlReader</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="writer">XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlTruncateException">
+ <summary>The exception that is thrown when you set a value into a <see cref="N:System.Data.SqlTypes"></see> structure would truncate that value.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException"></see> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTruncateException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException"></see> class with a specified error message and a reference to the <see cref="T:System.Exception"></see>.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="e">A reference to an inner <see cref="T:System.Exception"></see>.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlTypeException">
+ <summary>The base exception class for the <see cref="N:System.Data.SqlTypes"></see>.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException"></see> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException"></see> class with serialized data.</summary>
+ <param name="si">The object that holds the serialized object data.</param>
+ <param name="sc">The contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <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>
+ <param name="e">The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.SqlXml">
+ <summary>Represents XML data stored in or retrieved from a server.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.#ctor">
+ <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance.</summary>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.#ctor(System.IO.Stream)">
+ <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance, supplying the XML value from the supplied <see cref="T:System.IO.Stream"></see>-derived instance.</summary>
+ <param name="value">A <see cref="T:System.IO.Stream"></see>-derived instance (such as <see cref="T:System.IO.FileStream"></see>) from which to load the <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance's Xml content.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.#ctor(System.Xml.XmlReader)">
+ <summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance and associates it with the content of the supplied <see cref="T:System.Xml.XmlReader"></see>.</summary>
+ <param name="value">An <see cref="T:System.Xml.XmlReader"></see>-derived class instance to be used as the value of the new <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.CreateReader">
+ <summary>Gets the value of the XML content of this <see cref="T:System.Data.SqlTypes.SqlXml"></see> as a <see cref="T:System.Xml.XmlReader"></see>.</summary>
+ <returns>A <see cref="T:System.Xml.XmlReader"></see>-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"></see>) depending on how the information is represented internally, on the server.</returns>
+ <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"></see>.</exception>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</summary>
+ <param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</param>
+ <returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet"></see>.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlXml.IsNull">
+ <summary>Indicates whether this instance represents a null <see cref="T:System.Data.SqlTypes.SqlXml"></see> value.</summary>
+ <returns>true if Value is null. Otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlXml.Null">
+ <summary>Represents a null instance of the <see cref="T:System.Data.SqlTypes.SqlXml"></see> type.</summary>
+ <returns>A null instance of the <see cref="T:System.Data.SqlTypes.SqlXml"></see> type.</returns>
+ </member>
+ <member name="P:System.Data.SqlTypes.SqlXml.Value">
+ <summary>Gets the string representation of the XML content of this <see cref="T:System.Data.SqlTypes.SqlXml"></see> instance.</summary>
+ <returns>The string representation of the XML content.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#GetSchema">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema"></see>.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema"></see> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see> method.</returns>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see>.</summary>
+ <param name="r">An XmlReader.</param>
+ </member>
+ <member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see>.</summary>
+ <param name="writer">An XmlWriter</param>
+ </member>
+ <member name="T:System.Data.SqlTypes.StorageState">
+ <summary>The <see cref="T:System.Data.SqlTypes.StorageState"></see> enumeration is not intended for use as a stand-alone component, but as an enumeration from which other classes derive standard functionality.</summary>
+ </member>
+ <member name="F:System.Data.SqlTypes.StorageState.Buffer">
+ <summary>Buffer size.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.StorageState.Stream">
+ <summary>Stream.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SqlTypes.StorageState.UnmanagedBuffer">
+ <summary>Unmanaged buffer.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.DataTableMappingCollection">
+ <summary>A collection of <see cref="T:System.Data.Common.DataTableMapping"></see> objects. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> class. This new instance is empty, that is, it does not yet contain any <see cref="T:System.Data.Common.DataTableMapping"></see> objects.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Add(System.Object)">
+ <summary>Adds an <see cref="T:System.Object"></see> that is a table mapping to the collection.</summary>
+ <param name="value">A DataTableMapping object to add to the collection.</param>
+ <returns>The index of the DataTableMapping object added to the collection.</returns>
+ <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataTableMapping"></see> object.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Add(System.String,System.String)">
+ <summary>Adds a <see cref="T:System.Data.Common.DataTableMapping"></see> object to the collection when given a source table name and a <see cref="T:System.Data.DataSet"></see> table name.</summary>
+ <param name="sourceTable">The case-sensitive name of the source table to map from.</param>
+ <param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet"></see> table to map to.</param>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> object that was added to the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Array)">
+ <summary>Copies the elements of the specified <see cref="T:System.Array"></see> to the end of the collection.</summary>
+ <param name="values">An <see cref="T:System.Array"></see> of values to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Data.Common.DataTableMapping[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataTableMapping"></see> array to the end of the collection.</summary>
+ <param name="values">The array of <see cref="T:System.Data.Common.DataTableMapping"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Clear">
+ <summary>Removes all <see cref="T:System.Data.Common.DataTableMapping"></see> objects from the collection.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.Object)">
+ <summary>Gets a value indicating whether the given <see cref="T:System.Data.Common.DataTableMapping"></see> object exists in the collection.</summary>
+ <param name="value">An <see cref="T:System.Object"></see> that is the <see cref="T:System.Data.Common.DataTableMapping"></see>.</param>
+ <returns>true if this collection contains the specified <see cref="T:System.Data.Common.DataTableMapping"></see>; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name exists in the collection.</summary>
+ <param name="value">The case-sensitive source table name containing the <see cref="T:System.Data.Common.DataTableMapping"></see> object.</param>
+ <returns>true if the collection contains a <see cref="T:System.Data.Common.DataTableMapping"></see> object with this source table name; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> to the specified array.</summary>
+ <param name="array">An <see cref="T:System.Array"></see> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> elements.</param>
+ <param name="index">The starting index of the array.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Data.Common.DataTableMapping[],System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMapping"></see> to the specified array.</summary>
+ <param name="array">A <see cref="T:System.Data.Common.DataTableMapping"></see> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> elements.</param>
+ <param name="index">The starting index of the array.</param>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.Count">
+ <summary>Gets the number of <see cref="T:System.Data.Common.DataTableMapping"></see> objects in the collection.</summary>
+ <returns>The number of DataTableMapping objects in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.GetByDataSetTable(System.String)">
+ <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified <see cref="T:System.Data.DataSet"></see> table name.</summary>
+ <param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet"></see> table to find.</param>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified <see cref="T:System.Data.DataSet"></see> table name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.GetEnumerator">
+ <summary>Gets an enumerator that can iterate through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection,System.String,System.String,System.Data.MissingMappingAction)">
+ <summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source table name and <see cref="T:System.Data.DataSet"></see> table name, using the given <see cref="T:System.Data.MissingMappingAction"></see>.</summary>
+ <param name="tableMappings">The <see cref="T:System.Data.Common.DataTableMappingCollection"></see> collection to search.</param>
+ <param name="sourceTable">The case-sensitive name of the mapped source table.</param>
+ <param name="dataSetTable">The name, which is not case-sensitive, of the mapped <see cref="T:System.Data.DataSet"></see> table.</param>
+ <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction"></see> values.</param>
+ <returns>A <see cref="T:System.Data.Common.DataTableMapping"></see> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction">mappingAction</paramref> parameter was set to Error, and no mapping was specified.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.Object)">
+ <summary>Gets the location of the specified <see cref="T:System.Data.Common.DataTableMapping"></see> object within the collection.</summary>
+ <param name="value">An <see cref="T:System.Object"></see> that is the <see cref="T:System.Data.Common.DataTableMapping"></see> object to find.</param>
+ <returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataTableMapping"></see> object within the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name.</summary>
+ <param name="sourceTable">The case-sensitive name of the source table.</param>
+ <returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.IndexOfDataSetTable(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified <see cref="T:System.Data.DataSet"></see> table name.</summary>
+ <param name="dataSetTable">The name, which is not case-sensitive, of the DataSet table to find.</param>
+ <returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the given <see cref="T:System.Data.DataSet"></see> table name, or -1 if the <see cref="T:System.Data.Common.DataTableMapping"></see> object does not exist in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Data.Common.DataTableMapping)">
+ <summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping"></see> object into the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping"></see> object to insert.</param>
+ <param name="value">The <see cref="T:System.Data.Common.DataTableMapping"></see> object to insert.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Object)">
+ <summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping"></see> object into the <see cref="T:System.Data.Common.DataTableMappingCollection"></see> at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping"></see> object to insert.</param>
+ <param name="value">The <see cref="T:System.Data.Common.DataTableMapping"></see> object to insert.</param>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.Item(System.Int32)">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping"></see> object at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping"></see> object to return.</param>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> object at the specified index.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.Item(System.String)">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name.</summary>
+ <param name="sourceTable">The case-sensitive name of the source table.</param>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Data.Common.DataTableMapping)">
+ <summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping"></see> object from the collection.</summary>
+ <param name="value">The <see cref="T:System.Data.Common.DataTableMapping"></see> object to remove.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Object)">
+ <summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping"></see> object from the collection.</summary>
+ <param name="value">The <see cref="T:System.Data.Common.DataTableMapping"></see> object to remove.</param>
+ <exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataTableMapping"></see> object.</exception>
+ <exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Data.Common.DataTableMapping"></see> object located at the specified index from the collection.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping"></see> object to remove.</param>
+ <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping"></see> object does not exist with the specified index.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.Common.DataTableMapping"></see> object with the specified source table name from the collection.</summary>
+ <param name="sourceTable">The case-sensitive source table name to find.</param>
+ <exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping"></see> object does not exist with the specified source table name.</exception>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> is read-only; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#Item(System.Int32)">
+ <summary>Gets or sets an item from the collection at a specified index.</summary>
+ <param name="index">The zero-based index of the item to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Add(System.String,System.String)">
+ <summary>Adds a table mapping to the collection.</summary>
+ <param name="sourceTableName">The case-sensitive name of the source table.</param>
+ <param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet"></see> table.</param>
+ <returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#GetByDataSetTable(System.String)">
+ <summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet"></see> table name.</summary>
+ <param name="dataSetTableName">The name of the DataSet table within the collection.</param>
+ <returns>The TableMapping object with the specified DataSet table name.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Item(System.String)">
+ <summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping"></see> with the specified <see cref="P:System.Data.ITableMapping.SourceTable"></see> name.</summary>
+ <param name="index">The SourceTable name of the <see cref="T:System.Data.ITableMapping"></see>.</param>
+ <returns>The instance of <see cref="T:System.Data.ITableMapping"></see> with the specified SourceTable name.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbColumn">
+
+ </member>
+ <member name="M:System.Data.Common.DbColumn.#ctor">
+
+ </member>
+ <member name="P:System.Data.Common.DbColumn.AllowDBNull">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.BaseCatalogName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.BaseColumnName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.BaseSchemaName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.BaseServerName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.BaseTableName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.ColumnName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.ColumnOrdinal">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.ColumnSize">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.DataType">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.DataTypeName">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsAliased">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsAutoIncrement">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsExpression">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsHidden">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsIdentity">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsKey">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsLong">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.IsUnique">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.Item(System.String)">
+ <param name="property"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.NumericPrecision">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.NumericScale">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbColumn.UdtAssemblyQualifiedName">
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.DbCommand">
+ <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"></see></summary>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.#ctor">
+ <summary>Constructs an instance of the <see cref="T:System.Data.Common.DbCommand"></see> object.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.Cancel">
+ <summary>Attempts to cancels the execution of a <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.CommandText">
+ <summary>Gets or sets the text command to run against the data source.</summary>
+ <returns>The text command to execute. The default value is an empty string (&quot;&quot;).</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.CommandTimeout">
+ <summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
+ <returns>The time in seconds to wait for the command to execute.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.CommandType">
+ <summary>Indicates or specifies how the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> property is interpreted.</summary>
+ <returns>One of the <see cref="T:System.Data.CommandType"></see> values. The default is Text.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.Connection">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DbConnection"></see> used by this <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
+ <returns>The connection to the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.CreateDbParameter">
+ <summary>Creates a new instance of a <see cref="T:System.Data.Common.DbParameter"></see> object.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbParameter"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.CreateParameter">
+ <summary>Creates a new instance of a <see cref="T:System.Data.Common.DbParameter"></see> object.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbParameter"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.DbConnection">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DbConnection"></see> used by this <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
+ <returns>The connection to the data source.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.DbParameterCollection">
+ <summary>Gets the collection of <see cref="T:System.Data.Common.DbParameter"></see> objects.</summary>
+ <returns>The parameters of the SQL statement or stored procedure.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.DbTransaction">
+ <summary>Gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction"></see> within which this <see cref="T:System.Data.Common.DbCommand"></see> object executes.</summary>
+ <returns>The transaction within which a Command object of a .NET Framework data provider executes. The default value is a null reference (Nothing in Visual Basic).</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.DesignTimeVisible">
+ <summary>Gets or sets a value indicating whether the command object should be visible in a customized interface control.</summary>
+ <returns>true, if the command object should be visible in a control; otherwise false. The default is true.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.Dispose">
+
+ </member>
+ <member name="M:System.Data.Common.DbCommand.Dispose(System.Boolean)">
+ <param name="disposing"></param>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)">
+ <summary>Executes the command text against the connection.</summary>
+ <param name="behavior">An instance of <see cref="T:System.Data.CommandBehavior"></see>.</param>
+ <returns>A task representing the operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
+ <summary>Providers should implement this method to provide a non-default implementation for <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader"></see> overloads. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteReader"></see> 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. This method accepts a cancellation token that can be used to request the operation to be cancelled early. Implementations may ignore this request.</summary>
+ <param name="behavior">Options for statement execution and data retrieval.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteNonQuery">
+ <summary>Executes a SQL statement against a connection object.</summary>
+ <returns>The number of rows affected.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)">
+ <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery"></see>. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery"></see> 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"></see> will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery"></see>, which executes a SQL statement against a connection object. Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReader">
+ <summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> against the <see cref="P:System.Data.Common.DbCommand.Connection"></see>, and returns an <see cref="T:System.Data.Common.DbDataReader"></see>.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReader(System.Data.CommandBehavior)">
+ <summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> against the <see cref="P:System.Data.Common.DbCommand.Connection"></see>, and returns an <see cref="T:System.Data.Common.DbDataReader"></see> using one of the <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>An <see cref="T:System.Data.Common.DbDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync">
+ <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader"></see>, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> against the <see cref="P:System.Data.Common.DbCommand.Connection"></see> and returns a <see cref="T:System.Data.Common.DbDataReader"></see>. Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior)">
+ <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader"></see>, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> against the <see cref="P:System.Data.Common.DbCommand.Connection"></see> and returns a <see cref="T:System.Data.Common.DbDataReader"></see>. Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see>.</summary>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Threading.CancellationToken)">
+ <summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader"></see>, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText"></see> against the <see cref="P:System.Data.Common.DbCommand.Connection"></see> and returns a <see cref="T:System.Data.Common.DbDataReader"></see>. This method propagates a notification that operations should be canceled. Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see>.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
+ <summary>Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see>.</summary>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ <exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior"></see> value.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteScalar">
+ <summary>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>
+ <returns>The first column of the first row in the result set.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)">
+ <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar"></see>. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteScalar"></see> 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. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar"></see>, 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. Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.Parameters">
+ <summary>Gets the collection of <see cref="T:System.Data.Common.DbParameter"></see> objects. For more information on parameters, see <see cref="~/docs/framework/data/adonet/configuring-parameters-and-parameter-data-types.md">Configuring Parameters and Parameter Data Types</see>.</summary>
+ <returns>The parameters of the SQL statement or stored procedure.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.Prepare">
+ <summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.Transaction">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DbTransaction"></see> within which this <see cref="T:System.Data.Common.DbCommand"></see> object executes.</summary>
+ <returns>The transaction within which a Command object of a .NET Framework data provider executes. The default value is a null reference (Nothing in Visual Basic).</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.UpdatedRowSource">
+ <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow"></see> when used by the Update method of a <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.UpdateRowSource"></see> values. The default is Both unless the command is automatically generated. Then the default is None.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Connection">
+ <summary>Gets or sets the <see cref="T:System.Data.IDbConnection"></see> used by this instance of the <see cref="T:System.Data.IDbCommand"></see>.</summary>
+ <returns>The connection to the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#CreateParameter">
+ <summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter"></see> object.</summary>
+ <returns>An IDbDataParameter object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader">
+ <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText"></see> against the <see cref="P:System.Data.IDbCommand.Connection"></see> and builds an <see cref="T:System.Data.IDataReader"></see>.</summary>
+ <returns>An <see cref="T:System.Data.IDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)">
+ <summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText"></see> against the <see cref="P:System.Data.IDbCommand.Connection"></see>, and builds an <see cref="T:System.Data.IDataReader"></see> using one of the <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>An <see cref="T:System.Data.IDataReader"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Parameters">
+ <summary>Gets the <see cref="T:System.Data.IDataParameterCollection"></see>.</summary>
+ <returns>The parameters of the SQL statement or stored procedure.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Transaction">
+ <summary>Gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction"></see> within which this <see cref="T:System.Data.Common.DbCommand"></see> object executes.</summary>
+ <returns>The transaction within which a Command object of a .NET Framework data provider executes. The default value is a null reference (Nothing in Visual Basic).</returns>
+ </member>
+ <member name="T:System.Data.Common.DbCommandBuilder">
+ <summary>Automatically generates single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet"></see> with the associated database. This is an abstract class that can only be inherited.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.#ctor">
+ <summary>Initializes a new instance of a class that inherits from the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)">
+ <summary>Allows the provider implementation of the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class to handle additional parameter properties.</summary>
+ <param name="parameter">A <see cref="T:System.Data.Common.DbParameter"></see> to which the additional modifications are applied.</param>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> from the schema table provided by <see cref="M:System.Data.Common.DbDataReader.GetSchemaTable"></see>.</param>
+ <param name="statementType">The type of command being generated; INSERT, UPDATE or DELETE.</param>
+ <param name="whereClause">true if the parameter is part of the update or delete WHERE clause, false if it is part of the insert or update values.</param>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.CatalogLocation">
+ <summary>Sets or gets the <see cref="T:System.Data.Common.CatalogLocation"></see> for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class.</summary>
+ <returns>A <see cref="T:System.Data.Common.CatalogLocation"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.CatalogSeparator">
+ <summary>Sets or gets a string used as the catalog separator for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class.</summary>
+ <returns>A string indicating the catalog separator for use with an instance of the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.ConflictOption">
+ <summary>Specifies which <see cref="T:System.Data.ConflictOption"></see> is to be used by the <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</summary>
+ <returns>Returns one of the <see cref="T:System.Data.ConflictOption"></see> values describing the behavior of this <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.DataAdapter">
+ <summary>Gets or sets a <see cref="T:System.Data.Common.DbDataAdapter"></see> object for which Transact-SQL statements are automatically generated.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbDataAdapter"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbCommandBuilder"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform deletions at the data source.</summary>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform deletions.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand(System.Boolean)">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform deletions at the data source, optionally using columns for parameter names.</summary>
+ <param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate <see cref="p1"></see>, <see cref="p2"></see>, and so on.</param>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform deletions.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform insertions at the data source.</summary>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform insertions.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand(System.Boolean)">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform insertions at the data source, optionally using columns for parameter names.</summary>
+ <param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate <see cref="p1"></see>, <see cref="p2"></see>, and so on.</param>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform insertions.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.Int32)">
+ <summary>Returns the name of the specified parameter in the format of <see cref="p*#*"></see>. Use when building a custom command builder.</summary>
+ <param name="parameterOrdinal">The number to be included as part of the parameter's name..</param>
+ <returns>The name of the parameter with the specified number appended as part of the parameter name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.String)">
+ <summary>Returns the full parameter name, given the partial parameter name.</summary>
+ <param name="parameterName">The partial name of the parameter.</param>
+ <returns>The full parameter name corresponding to the partial parameter name requested.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetParameterPlaceholder(System.Int32)">
+ <summary>Returns the placeholder for the parameter in the associated SQL statement.</summary>
+ <param name="parameterOrdinal">The number to be included as part of the parameter's name.</param>
+ <returns>The name of the parameter with the specified number appended.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetSchemaTable(System.Data.Common.DbCommand)">
+ <summary>Returns the schema table for the <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</summary>
+ <param name="sourceCommand">The <see cref="T:System.Data.Common.DbCommand"></see> for which to retrieve the corresponding schema table.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that represents the schema for the specific <see cref="T:System.Data.Common.DbCommand"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform updates at the data source.</summary>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform updates.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand(System.Boolean)">
+ <summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform updates at the data source, optionally using columns for parameter names.</summary>
+ <param name="useColumnsForParameterNames">If true, generate parameter names matching column names, if possible. If false, generate <see cref="p1"></see>, <see cref="p2"></see>, and so on.</param>
+ <returns>The automatically generated <see cref="T:System.Data.Common.DbCommand"></see> object required to perform updates.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.InitializeCommand(System.Data.Common.DbCommand)">
+ <summary>Resets the <see cref="P:System.Data.Common.DbCommand.CommandTimeout"></see>, <see cref="P:System.Data.Common.DbCommand.Transaction"></see>, <see cref="P:System.Data.Common.DbCommand.CommandType"></see>, and <see cref="T:System.Data.UpdateRowSource"></see> properties on the <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
+ <param name="command">The <see cref="T:System.Data.Common.DbCommand"></see> to be used by the command builder for the corresponding insert, update, or delete command.</param>
+ <returns>A <see cref="T:System.Data.Common.DbCommand"></see> 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)"></see> method to create a <see cref="T:System.Data.Common.DbCommand"></see> object based on the Select command associated with the <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.QuoteIdentifier(System.String)">
+ <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>
+ <param name="unquotedIdentifier">The original unquoted identifier.</param>
+ <returns>The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.QuotePrefix">
+ <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>
+ <returns>The beginning character or characters to use. The default is an empty string.</returns>
+ <exception cref="T:System.InvalidOperationException">This property cannot be changed after an insert, update, or delete command has been generated.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.QuoteSuffix">
+ <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>
+ <returns>The ending character or characters to use. The default is an empty string.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.RefreshSchema">
+ <summary>Clears the commands associated with this <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs)">
+ <summary>Adds an event handler for the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating"></see> event.</summary>
+ <param name="rowUpdatingEvent">A <see cref="T:System.Data.Common.RowUpdatingEventArgs"></see> instance containing information about the event.</param>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.SchemaSeparator">
+ <summary>Gets or sets the character to be used for the separator between the schema identifier and any other identifiers.</summary>
+ <returns>The character to be used as the schema separator.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbCommandBuilder.SetAllValues">
+ <summary>Specifies whether all column values in an update statement are included or only changed ones.</summary>
+ <returns>true if the UPDATE statement generated by the <see cref="T:System.Data.Common.DbCommandBuilder"></see> includes all columns; false if it includes only changed columns.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)">
+ <summary>Registers the <see cref="T:System.Data.Common.DbCommandBuilder"></see> to handle the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating"></see> event for a <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ <param name="adapter">The <see cref="T:System.Data.Common.DbDataAdapter"></see> to be used for the update.</param>
+ </member>
+ <member name="M:System.Data.Common.DbCommandBuilder.UnquoteIdentifier(System.String)">
+ <summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.</summary>
+ <param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
+ <returns>The unquoted identifier, with embedded quotes properly un-escaped.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbConnection">
+ <summary>Represents a connection to a database.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnection"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.BeginDbTransaction(System.Data.IsolationLevel)">
+ <summary>Starts a database transaction.</summary>
+ <param name="isolationLevel">Specifies the isolation level for the transaction.</param>
+ <returns>An object representing the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.BeginTransaction">
+ <summary>Starts a database transaction.</summary>
+ <returns>An object representing the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.BeginTransaction(System.Data.IsolationLevel)">
+ <summary>Starts a database transaction with the specified isolation level.</summary>
+ <param name="isolationLevel">Specifies the isolation level for the transaction.</param>
+ <returns>An object representing the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.ChangeDatabase(System.String)">
+ <summary>Changes the current database for an open connection.</summary>
+ <param name="databaseName">Specifies the name of the database for the connection to use.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.Close">
+ <summary>Closes the connection to the database. This is the preferred method of closing any open connection.</summary>
+ <exception cref="T:System.Data.Common.DbException">The connection-level error that occurred while opening the connection.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.ConnectionString">
+ <summary>Gets or sets the string used to open the connection.</summary>
+ <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>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.ConnectionTimeout">
+ <summary>Gets the time to wait while establishing a connection before terminating the attempt and generating an error.</summary>
+ <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>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.CreateCommand">
+ <summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand"></see> object associated with the current connection.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbCommand"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.CreateDbCommand">
+ <summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand"></see> object associated with the current connection.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbCommand"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.Database">
+ <summary>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>
+ <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>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.DataSource">
+ <summary>Gets the name of the database server to which to connect.</summary>
+ <returns>The name of the database server to which to connect. The default value is an empty string.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.DbProviderFactory">
+ <summary>Gets the <see cref="T:System.Data.Common.DbProviderFactory"></see> for this <see cref="T:System.Data.Common.DbConnection"></see>.</summary>
+ <returns>A set of methods for creating instances of a provider's implementation of the data source classes.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.Dispose(System.Boolean)">
+ <param name="disposing"></param>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.Dispose">
+
+ </member>
+ <member name="M:System.Data.Common.DbConnection.EnlistTransaction(System.Transactions.Transaction)">
+ <summary>Enlists in the specified transaction.</summary>
+ <param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction"></see> in which to enlist.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.GetSchema">
+ <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that contains schema information.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.GetSchema(System.String)">
+ <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection"></see> using the specified string for the schema name.</summary>
+ <param name="collectionName">Specifies the name of the schema to return.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that contains schema information.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="collectionName">collectionName</paramref> is specified as null.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.GetSchema(System.String,System.String[])">
+ <summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection"></see> using the specified string for the schema name and the specified string array for the restriction values.</summary>
+ <param name="collectionName">Specifies the name of the schema to return.</param>
+ <param name="restrictionValues">Specifies a set of restriction values for the requested schema.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that contains schema information.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="collectionName">collectionName</paramref> is specified as null.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.OnStateChange(System.Data.StateChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.Common.DbConnection.StateChange"></see> event.</summary>
+ <param name="stateChange">A <see cref="T:System.Data.StateChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.Open">
+ <summary>Opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.OpenAsync">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open"></see>, which opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString"></see>. This method invokes the virtual method <see cref="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)">
+ <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open"></see>. Providers should override with an appropriate implementation. The cancellation token can optionally be honored. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbConnection.Open"></see> 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. Do not invoke other methods and properties of the DbConnection object until the returned Task is complete.</summary>
+ <param name="cancellationToken">The cancellation instruction.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.ServerVersion">
+ <summary>Gets a string that represents the version of the server to which the object is connected.</summary>
+ <returns>The version of the database. The format of the string returned depends on the specific type of connection you are using.</returns>
+ <exception cref="T:System.InvalidOperationException"><see cref="P:System.Data.Common.DbConnection.ServerVersion"></see> 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"></see>.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbConnection.State">
+ <summary>Gets a string that describes the state of the connection.</summary>
+ <returns>The state of the connection. The format of the string returned depends on the specific type of connection you are using.</returns>
+ </member>
+ <member name="E:System.Data.Common.DbConnection.StateChange">
+ <summary>Occurs when the state of the event changes.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction(System.Data.IsolationLevel)">
+ <summary>Begins a database transaction with the specified <see cref="T:System.Data.IsolationLevel"></see> value.</summary>
+ <param name="isolationLevel">One of the <see cref="T:System.Data.IsolationLevel"></see> values.</param>
+ <returns>An object that represents the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction">
+ <summary>Begins a database transaction.</summary>
+ <returns>An object that represents the new transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#CreateCommand">
+ <summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand"></see> object that is associated with the current connection.</summary>
+ <returns>A <see cref="T:System.Data.Common.DbCommand"></see> object that is associated with the connection.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbConnectionStringBuilder">
+ <summary>Provides a base class for strongly typed connection string builders.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> class, optionally using ODBC rules for quoting values.</summary>
+ <param name="useOdbcRules">true to use {} to delimit fields; false to use quotation marks.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)">
+ <summary>Adds an entry with the specified key and value into the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <param name="keyword">The key to add to the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</param>
+ <param name="value">The value for the specified key.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is a null reference (Nothing in Visual Basic).</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only. -or- The <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String)">
+ <summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder"></see> object.</summary>
+ <param name="builder">The <see cref="T:System.Text.StringBuilder"></see> to which to add the key/value pair.</param>
+ <param name="keyword">The key to be added.</param>
+ <param name="value">The value for the supplied key.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String,System.Boolean)">
+ <summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder"></see> object.</summary>
+ <param name="builder">The <see cref="T:System.Text.StringBuilder"></see> to which to add the key/value pair.</param>
+ <param name="keyword">The key to be added.</param>
+ <param name="value">The value for the supplied key.</param>
+ <param name="useOdbcRules">true to use {} to delimit fields, false to use quotation marks.</param>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.BrowsableConnectionString">
+ <summary>Gets or sets a value that indicates whether the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString"></see> property is visible in Visual Studio designers.</summary>
+ <returns>true if the connection string is visible within designers; false otherwise. The default is true.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.Clear">
+ <summary>Clears the contents of the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> instance.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.ClearPropertyDescriptors">
+ <summary>Clears the collection of <see cref="T:System.ComponentModel.PropertyDescriptor"></see> objects on the associated <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString">
+ <summary>Gets or sets the connection string associated with the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <returns>The current connection string, created from the key/value pairs that are contained within the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>. The default value is an empty string.</returns>
+ <exception cref="T:System.ArgumentException">An invalid connection string argument has been supplied.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.ContainsKey(System.String)">
+ <summary>Determines whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> contains a specific key.</summary>
+ <param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</param>
+ <returns>true if the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> contains an entry with the specified key; otherwise false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is a null reference (Nothing in Visual Basic).</exception>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.Count">
+ <summary>Gets the current number of keys that are contained within the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString"></see> property.</summary>
+ <returns>The number of keys that are contained within the connection string maintained by the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.EquivalentTo(System.Data.Common.DbConnectionStringBuilder)">
+ <summary>Compares the connection information in this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> object with the connection information in the supplied object.</summary>
+ <param name="connectionStringBuilder">The <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> to be compared with this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> object.</param>
+ <returns>true if the connection information in both of the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> objects causes an equivalent connection string; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.GetProperties(System.Collections.Hashtable)">
+ <summary>Fills a supplied <see cref="T:System.Collections.Hashtable"></see> with information about all the properties of this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <param name="propertyDescriptors">The <see cref="T:System.Collections.Hashtable"></see> to be filled with information about this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</param>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.IsFixedSize">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> has a fixed size; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.IsReadOnly">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only; otherwise false. The default is false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.Item(System.String)">
+ <summary>Gets or sets the value associated with the specified key.</summary>
+ <param name="keyword">The key of the item to get or set.</param>
+ <returns>The value associated with the specified key. If the specified key is not found, trying to get it returns a null reference (Nothing in Visual Basic), and trying to set it creates a new element using the specified key. Passing a null (Nothing in Visual Basic) key throws an <see cref="T:System.ArgumentNullException"></see>. Assigning a null value removes the key/value pair.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is a null reference (Nothing in Visual Basic).</exception>
+ <exception cref="T:System.NotSupportedException">The property is set, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only. -or- The property is set, <paramref name="keyword">keyword</paramref> does not exist in the collection, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> has a fixed size.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.Keys">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.Remove(System.String)">
+ <summary>Removes the entry with the specified key from the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> instance.</summary>
+ <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"></see>.</param>
+ <returns>true if the key existed within the connection string and was removed; false if the key did not exist.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is null (Nothing in Visual Basic)</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> is read-only, or the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.ShouldSerialize(System.String)">
+ <summary>Indicates whether the specified key exists in this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> instance.</summary>
+ <param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</param>
+ <returns>true if the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> contains an entry with the specified key; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.ToString">
+ <summary>Returns the connection string associated with this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <returns>The current <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString"></see> property.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
+ <summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <param name="keyword">The key of the item to retrieve.</param>
+ <param name="value">The value corresponding to the key.</param>
+ <returns>true if <paramref name="keyword">keyword</paramref> was found within the connection string, false otherwise.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> contains a null value (Nothing in Visual Basic).</exception>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.Values">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Add(System.Object,System.Object)">
+ <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary"></see> object.</summary>
+ <param name="keyword">The <see cref="T:System.Object"></see> to use as the key of the element to add.</param>
+ <param name="value">The <see cref="T:System.Object"></see> to use as the value of the element to add.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IDictionary"></see> object contains an element with the specified key.</summary>
+ <param name="keyword">The key to locate in the <see cref="T:System.Collections.IDictionary"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> contains an element with the key; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the <see cref="T:System.Collections.IDictionary"></see> object.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the <see cref="T:System.Collections.IDictionary"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#IsFixedSize">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Item(System.Object)">
+ <summary>Gets or sets the element with the specified key.</summary>
+ <param name="keyword">The key of the element to get or set.</param>
+ <returns>The element with the specified key.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Remove(System.Object)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"></see> object.</summary>
+ <param name="keyword">The key of the element to remove.</param>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
+ <summary>Returns a collection of custom attributes for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.AttributeCollection"></see> containing the attributes for this object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
+ <summary>Returns the class name of this instance of a component.</summary>
+ <returns>The class name of the object, or null if the class does not have a name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
+ <summary>Returns the name of this instance of a component.</summary>
+ <returns>The name of the object, or null if the object does not have a name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
+ <summary>Returns a type converter for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.TypeConverter"></see> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"></see> for this object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
+ <summary>Returns the default event for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptor"></see> that represents the default event for this object, or null if this object does not have events.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
+ <summary>Returns the default property for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the default property for this object, or null if this object does not have properties.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
+ <summary>Returns an editor of the specified type for this instance of a component.</summary>
+ <param name="editorBaseType">A <see cref="T:System.Type"></see> that represents the editor for this object.</param>
+ <returns>An <see cref="T:System.Object"></see> of the specified type that is the editor for this object, or null if the editor cannot be found.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
+ <summary>Returns the events for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the events for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
+ <summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
+ <param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter.</param>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the filtered events for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
+ <summary>Returns the properties for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the properties for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
+ <summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
+ <param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter.</param>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the filtered properties for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
+ <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
+ <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the property whose owner is to be found.</param>
+ <returns>An <see cref="T:System.Object"></see> that represents the owner of the specified property.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbDataAdapter">
+ <summary>Aids implementation of the <see cref="T:System.Data.IDbDataAdapter"></see> interface. Inheritors of <see cref="T:System.Data.Common.DbDataAdapter"></see> implement a set of functions to provide strong typing, but inherit most of the functionality needed to fully implement a DataAdapter.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.#ctor">
+ <summary>Initializes a new instance of a DataAdapter class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.#ctor(System.Data.Common.DbDataAdapter)">
+ <summary>Initializes a new instance of a DataAdapter class from an existing object of the same type.</summary>
+ <param name="adapter">A DataAdapter object used to create the new DataAdapter.</param>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.AddToBatch(System.Data.IDbCommand)">
+ <summary>Adds a <see cref="T:System.Data.IDbCommand"></see> to the current batch.</summary>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> to add to the batch.</param>
+ <returns>The number of commands in the batch before adding the <see cref="T:System.Data.IDbCommand"></see>.</returns>
+ <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.ClearBatch">
+ <summary>Removes all <see cref="T:System.Data.IDbCommand"></see> objects from the batch.</summary>
+ <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs"></see> class.</summary>
+ <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> used to update the data source.</param>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> executed during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ <param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
+ <param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping"></see> object.</param>
+ <returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs"></see> class.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs"></see> class.</summary>
+ <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> that updates the data source.</param>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> to execute during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ <param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
+ <param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping"></see> object.</param>
+ <returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs"></see> class.</returns>
+ </member>
+ <member name="F:System.Data.Common.DbDataAdapter.DefaultSourceTableName">
+ <summary>The default name used by the <see cref="T:System.Data.Common.DataAdapter"></see> object for table mappings.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.DeleteCommand">
+ <summary>Gets or sets a command for deleting records from the data set.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the data source for deleted rows in the data set.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbDataAdapter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.ExecuteBatch">
+ <summary>Executes the current batch.</summary>
+ <returns>The return value from the last command in the batch.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String,System.Data.IDbCommand,System.Data.CommandBehavior)">
+ <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> and source table names, command string, and command behavior.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <param name="startRecord">The zero-based record number to start with.</param>
+ <param name="maxRecords">The maximum number of records to retrieve.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="startRecord">startRecord</paramref> parameter is less than 0. -or- The <paramref name="maxRecords">maxRecords</paramref> parameter is less than 0.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable[],System.Int32,System.Int32,System.Data.IDbCommand,System.Data.CommandBehavior)">
+ <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> and <see cref="T:System.Data.DataTable"></see> names.</summary>
+ <param name="dataTables">The <see cref="T:System.Data.DataTable"></see> objects to fill from the data source.</param>
+ <param name="startRecord">The zero-based record number to start with.</param>
+ <param name="maxRecords">The maximum number of records to retrieve.</param>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> executed to fill the <see cref="T:System.Data.DataTable"></see> objects.</param>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>The number of rows added to or refreshed in the data tables.</returns>
+ <exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid. -or- The connection is invalid.</exception>
+ <exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="startRecord">startRecord</paramref> parameter is less than 0. -or- The <paramref name="maxRecords">maxRecords</paramref> parameter is less than 0.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String)">
+ <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> and <see cref="T:System.Data.DataTable"></see> names.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <param name="startRecord">The zero-based record number to start with.</param>
+ <param name="maxRecords">The maximum number of records to retrieve.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ <exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid. -or- The connection is invalid.</exception>
+ <exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="startRecord">startRecord</paramref> parameter is less than 0. -or- The <paramref name="maxRecords">maxRecords</paramref> parameter is less than 0.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Int32,System.Int32,System.Data.DataTable[])">
+ <summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable"></see> to match those in the data source starting at the specified record and retrieving up to the specified maximum number of records.</summary>
+ <param name="startRecord">The zero-based record number to start with.</param>
+ <param name="maxRecords">The maximum number of records to retrieve.</param>
+ <param name="dataTables">The <see cref="T:System.Data.DataTable"></see> objects to fill from the data source.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable"></see>. This value does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)">
+ <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.String)">
+ <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> and <see cref="T:System.Data.DataTable"></see> names.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ <exception cref="T:System.SystemException">The source table is invalid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)">
+ <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataTable"></see> name.</summary>
+ <param name="dataTable">The name of the <see cref="T:System.Data.DataTable"></see> to use for table mapping.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable,System.Data.IDbCommand,System.Data.CommandBehavior)">
+ <summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable"></see> to match those in the data source using the specified <see cref="T:System.Data.DataTable"></see>, <see cref="T:System.Data.IDbCommand"></see> and <see cref="T:System.Data.CommandBehavior"></see>.</summary>
+ <param name="dataTable">A <see cref="T:System.Data.DataTable"></see> to fill with records and, if necessary, schema.</param>
+ <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.FillCommandBehavior">
+ <summary>Gets or sets the behavior of the command used to fill the data adapter.</summary>
+ <returns>The <see cref="T:System.Data.CommandBehavior"></see> of the command used to fill the data adapter.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> to the specified <see cref="T:System.Data.DataSet"></see> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> to be filled with the schema from the data source.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>An array of <see cref="T:System.Data.DataTable"></see> objects that contain schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> to the specified <see cref="T:System.Data.DataSet"></see> and configures the schema to match that in the data source based upon the specified <see cref="T:System.Data.SchemaType"></see> and <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to insert the schema in.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values that specify how to insert the schema.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <returns>A reference to a collection of <see cref="T:System.Data.DataTable"></see> objects that were added to the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.ArgumentException">A source table from which to get the schema could not be found.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior)">
+ <summary>Configures the schema of the specified <see cref="T:System.Data.DataTable"></see> based on the specified <see cref="T:System.Data.SchemaType"></see>, command string, and <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> to be filled with the schema from the data source.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
+ <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values.</param>
+ <returns>A of <see cref="T:System.Data.DataTable"></see> object that contains schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> named &quot;Table&quot; to the specified <see cref="T:System.Data.DataSet"></see> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType"></see>.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to insert the schema in.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values that specify how to insert the schema.</param>
+ <returns>A reference to a collection of <see cref="T:System.Data.DataTable"></see> objects that were added to the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType)">
+ <summary>Configures the schema of the specified <see cref="T:System.Data.DataTable"></see> based on the specified <see cref="T:System.Data.SchemaType"></see>.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> to be filled with the schema from the data source.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that contains schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.GetBatchedParameter(System.Int32,System.Int32)">
+ <summary>Returns a <see cref="T:System.Data.IDataParameter"></see> from one of the commands in the current batch.</summary>
+ <param name="commandIdentifier">The index of the command to retrieve the parameter from.</param>
+ <param name="parameterIndex">The index of the parameter within the command.</param>
+ <returns>The <see cref="T:System.Data.IDataParameter"></see> specified.</returns>
+ <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.GetBatchedRecordsAffected(System.Int32,System.Int32@,System.Exception@)">
+ <summary>Returns information about an individual update attempt within a larger batched update.</summary>
+ <param name="commandIdentifier">The zero-based column ordinal of the individual command within the batch.</param>
+ <param name="recordsAffected">The number of rows affected in the data store by the specified command within the batch.</param>
+ <param name="error">An <see cref="T:System.Exception"></see> thrown during execution of the specified command. Returns null (Nothing in Visual Basic) if no exception is thrown.</param>
+ <returns>Information about an individual update attempt within a larger batched update.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.GetFillParameters">
+ <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
+ <returns>An array of <see cref="T:System.Data.IDataParameter"></see> objects that contains the parameters set by the user.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.InitializeBatching">
+ <summary>Initializes batching for the <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.InsertCommand">
+ <summary>Gets or sets a command used to insert new records into the data source.</summary>
+ <returns>A <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see> to insert records in the data source for new rows in the data set.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)">
+ <summary>Raises the RowUpdated event of a .NET Framework data provider.</summary>
+ <param name="value">A <see cref="T:System.Data.Common.RowUpdatedEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)">
+ <summary>Raises the RowUpdating event of a .NET Framework data provider.</summary>
+ <param name="value">An <see cref="T:System.Data.Common.RowUpdatingEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.SelectCommand">
+ <summary>Gets or sets a command used to select records in the data source.</summary>
+ <returns>A <see cref="T:System.Data.IDbCommand"></see> that is used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see> to select records from data source for placement in the data set.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.TerminateBatching">
+ <summary>Ends batching for the <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)">
+ <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"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> used to update the data source.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataTable)">
+ <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"></see>.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> used to update the data source.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataTable"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow"></see> exists to update. -or- No <see cref="T:System.Data.DataTable"></see> exists to update. -or- No <see cref="T:System.Data.DataSet"></see> exists to use as a source.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[])">
+ <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"></see>.</summary>
+ <param name="dataRows">An array of <see cref="T:System.Data.DataRow"></see> objects used to update the data source.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow"></see> exists to update. -or- No <see cref="T:System.Data.DataTable"></see> exists to update. -or- No <see cref="T:System.Data.DataSet"></see> exists to use as a source.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet,System.String)">
+ <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"></see> with the specified <see cref="T:System.Data.DataTable"></see> name.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> to use to update the data source.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping)">
+ <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"></see> objects.</summary>
+ <param name="dataRows">An array of <see cref="T:System.Data.DataRow"></see> objects used to update the data source.</param>
+ <param name="tableMapping">The <see cref="P:System.Data.IDataAdapter.TableMappings"></see> collection to use.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet"></see> is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow"></see> exists to update. -or- No <see cref="T:System.Data.DataTable"></see> exists to update. -or- No <see cref="T:System.Data.DataSet"></see> exists to use as a source.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.UpdateBatchSize">
+ <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>
+ <returns>The number of rows to process per batch. Value is
+
+ Effect
+
+ 0
+
+ There is no limit on the batch size.
+
+ 1
+
+ Disables batch updating.
+
+ &gt; 1
+
+ Changes are sent using batches of <see cref="P:System.Data.Common.DbDataAdapter.UpdateBatchSize"></see> operations at a time.
+
+ When setting this to a value other than 1 ,all the commands associated with the <see cref="T:System.Data.Common.DbDataAdapter"></see> must have their <see cref="P:System.Data.IDbCommand.UpdatedRowSource"></see> property set to None or OutputParameters. An exception will be thrown otherwise.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.UpdateCommand">
+ <summary>Gets or sets a command used to update records in the data source.</summary>
+ <returns>A <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)"></see> to update records in the data source for modified rows in the data set.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
+ <summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the data source for deleted rows in the data set.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
+ <summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to insert records in the data source for new rows in the data set.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
+ <summary>Gets or sets an SQL statement used to select records in the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to select records from data source for placement in the data set.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
+ <summary>Gets or sets an SQL statement used to update records in the data source.</summary>
+ <returns>An <see cref="T:System.Data.IDbCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to update records in the data source for modified rows in the data set.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataAdapter.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current instance.</summary>
+ <returns>A new object that is a copy of this instance.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbDataReader">
+ <summary>Reads a forward-only stream of rows from a data source.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataReader"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.Close">
+ <summary>Closes the <see cref="T:System.Data.Common.DbDataReader"></see> object.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.Depth">
+ <summary>Gets a value indicating the depth of nesting for the current row.</summary>
+ <returns>The depth of nesting for the current row.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.Data.Common.DbDataReader"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.Dispose(System.Boolean)">
+ <summary>Releases the managed resources used by the <see cref="T:System.Data.Common.DbDataReader"></see> and optionally releases the unmanaged resources.</summary>
+ <param name="disposing">true to release managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.FieldCount">
+ <summary>Gets the number of columns in the current row.</summary>
+ <returns>The number of columns in the current row.</returns>
+ <exception cref="T:System.NotSupportedException">There is no current connection to an instance of SQL Server.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetBoolean(System.Int32)">
+ <summary>Gets the value of the specified column as a Boolean.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetByte(System.Int32)">
+ <summary>Gets the value of the specified column as a byte.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads a stream of bytes from the specified column, starting at location indicated by <paramref name="dataOffset">dataOffset</paramref>, into the buffer, starting at the location indicated by <paramref name="bufferOffset">bufferOffset</paramref>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <param name="dataOffset">The index within the row from which to begin the read operation.</param>
+ <param name="buffer">The buffer into which to copy the data.</param>
+ <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
+ <param name="length">The maximum number of characters to read.</param>
+ <returns>The actual number of bytes read.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetChar(System.Int32)">
+ <summary>Gets the value of the specified column as a single character.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a stream of characters from the specified column, starting at location indicated by <paramref name="dataOffset">dataOffset</paramref>, into the buffer, starting at the location indicated by <paramref name="bufferOffset">bufferOffset</paramref>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <param name="dataOffset">The index within the row from which to begin the read operation.</param>
+ <param name="buffer">The buffer into which to copy the data.</param>
+ <param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
+ <param name="length">The maximum number of characters to read.</param>
+ <returns>The actual number of characters read.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetData(System.Int32)">
+ <summary>Returns a <see cref="T:System.Data.Common.DbDataReader"></see> object for the requested column ordinal.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>A <see cref="T:System.Data.Common.DbDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetDataTypeName(System.Int32)">
+ <summary>Gets name of the data type of the specified column.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>A string representing the name of the data type.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetDateTime(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetDbDataReader(System.Int32)">
+ <summary>Returns a <see cref="T:System.Data.Common.DbDataReader"></see> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>A <see cref="T:System.Data.Common.DbDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetDecimal(System.Int32)">
+ <summary>Gets the value of the specified column as a <see cref="T:System.Decimal"></see> object.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetDouble(System.Int32)">
+ <summary>Gets the value of the specified column as a double-precision floating point number.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the rows in the data reader.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the rows in the data reader.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetFieldType(System.Int32)">
+ <summary>Gets the data type of the specified column.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The data type of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetFieldValue``1(System.Int32)">
+ <summary>Synchronously gets the value of the specified column as a type.</summary>
+ <param name="ordinal">The column to be retrieved.</param>
+ <typeparam name="T">Synchronously gets the value of the specified column as a type.</typeparam>
+ <returns>The column to be retrieved.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.SqlClient.SqlDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read"></see> hasn't been called, or returned false). Tried to read a previously-read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ <exception cref="T:System.InvalidCastException"><paramref name="T">T</paramref> doesn’t match the type returned by SQL Server or cannot be cast.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32)">
+ <summary>Asynchronously gets the value of the specified column as a type.</summary>
+ <param name="ordinal">The type of the value to be returned.</param>
+ <typeparam name="T">The type of the value to be returned.</typeparam>
+ <returns>The type of the value to be returned.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Tried to read a previously-read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ <exception cref="T:System.InvalidCastException"><paramref name="T">T</paramref> doesn’t match the type returned by the data source or cannot be cast.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously gets the value of the specified column as a type.</summary>
+ <param name="ordinal">The type of the value to be returned.</param>
+ <param name="cancellationToken">The cancellation instruction, which propagates a notification that operations should be canceled. This does not guarantee the cancellation. A setting of CancellationToken.None makes this method equivalent to <see cref="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32)"></see>. The returned task must be marked as cancelled.</param>
+ <typeparam name="T">The type of the value to be returned.</typeparam>
+ <returns>The type of the value to be returned.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Tried to read a previously-read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ <exception cref="T:System.InvalidCastException"><paramref name="T">T</paramref> doesn’t match the type returned by the data source or cannot be cast.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetFloat(System.Int32)">
+ <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetGuid(System.Int32)">
+ <summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetInt16(System.Int32)">
+ <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetInt32(System.Int32)">
+ <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetInt64(System.Int32)">
+ <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetName(System.Int32)">
+ <summary>Gets the name of the column, given the zero-based column ordinal.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The name of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetOrdinal(System.String)">
+ <summary>Gets the column ordinal given the name of the column.</summary>
+ <param name="name">The name of the column.</param>
+ <returns>The zero-based column ordinal.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificFieldType(System.Int32)">
+ <summary>Returns the provider-specific field type of the specified column.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The <see cref="T:System.Type"></see> object that describes the data type of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValue(System.Int32)">
+ <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValues(System.Object[])">
+ <summary>Gets all provider-specific attribute columns in the collection for the current row.</summary>
+ <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the attribute columns.</param>
+ <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetSchemaTable">
+ <summary>Returns a <see cref="T:System.Data.DataTable"></see> that describes the column metadata of the <see cref="T:System.Data.Common.DbDataReader"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that describes the column metadata.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader"></see> is closed.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetStream(System.Int32)">
+ <summary>Retrieves data as a <see cref="T:System.IO.Stream"></see>.</summary>
+ <param name="ordinal">Retrieves data as a <see cref="T:System.IO.Stream"></see>.</param>
+ <returns>The returned object.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Tried to read a previously-read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ <exception cref="T:System.InvalidCastException">The returned type was not one of the types below: binary image varbinary udt</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetString(System.Int32)">
+ <summary>Gets the value of the specified column as an instance of <see cref="T:System.String"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetTextReader(System.Int32)">
+ <summary>Retrieves data as a <see cref="T:System.IO.TextReader"></see>.</summary>
+ <param name="ordinal">Retrieves data as a <see cref="T:System.IO.TextReader"></see>.</param>
+ <returns>The returned object.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Tried to read a previously-read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ <exception cref="T:System.InvalidCastException">The returned type was not one of the types below: char nchar ntext nvarchar text varchar</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetValue(System.Int32)">
+ <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.GetValues(System.Object[])">
+ <summary>Populates an array of objects with the column values of the current row.</summary>
+ <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the attribute columns.</param>
+ <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.HasRows">
+ <summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbDataReader"></see> contains one or more rows.</summary>
+ <returns>true if the <see cref="T:System.Data.Common.DbDataReader"></see> contains one or more rows; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.IsClosed">
+ <summary>Gets a value indicating whether the <see cref="T:System.Data.Common.DbDataReader"></see> is closed.</summary>
+ <returns>true if the <see cref="T:System.Data.Common.DbDataReader"></see> is closed; otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader"></see> is closed.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)">
+ <summary>Gets a value that indicates whether the column contains nonexistent or missing values.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>true if the specified column is equivalent to <see cref="T:System.DBNull"></see>; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32,System.Threading.CancellationToken)">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)"></see>, which gets a value that indicates whether the column contains non-existent or missing values. Optionally, sends a notification that operations should be cancelled.</summary>
+ <param name="ordinal">The zero-based column to be retrieved.</param>
+ <param name="cancellationToken">The cancellation instruction, which propagates a notification that operations should be canceled. This does not guarantee the cancellation. A setting of CancellationToken.None makes this method equivalent to <see cref="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32)"></see>. The returned task must be marked as cancelled.</param>
+ <returns>true if the specified column value is equivalent to DBNull otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Trying to read a previously read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32)">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)"></see>, which gets a value that indicates whether the column contains non-existent or missing values.</summary>
+ <param name="ordinal">The zero-based column to be retrieved.</param>
+ <returns>true if the specified column value is equivalent to DBNull otherwise false.</returns>
+ <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval. The <see cref="T:System.Data.Common.DbDataReader"></see> is closed during the data retrieval. There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read"></see> hasn't been called, or returned false). Trying to read a previously read column in sequential mode. 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>
+ <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.Item(System.Int32)">
+ <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.Item(System.String)">
+ <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object"></see>.</summary>
+ <param name="name">The name of the column.</param>
+ <returns>The value of the specified column.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.NextResult">
+ <summary>Advances the reader to the next result when reading the results of a batch of statements.</summary>
+ <returns>true if there are more result sets; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.NextResultAsync">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.NextResult"></see>, which advances the reader to the next result when reading the results of a batch of statements. Invokes <see cref="M:System.Data.Common.DbDataReader.NextResultAsync(System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.NextResultAsync(System.Threading.CancellationToken)">
+ <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbDataReader.NextResult"></see>. Providers should override with an appropriate implementation. The <paramref name="cancellationToken">cancellationToken</paramref> may optionally be ignored. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbDataReader.NextResult"></see> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled <paramref name="cancellationToken">cancellationToken</paramref>. Exceptions thrown by <see cref="M:System.Data.Common.DbDataReader.NextResult"></see> will be communicated via the returned Task Exception property. Other methods and properties of the DbDataReader object should not be invoked while the returned Task is not yet completed.</summary>
+ <param name="cancellationToken">The cancellation instruction.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.Read">
+ <summary>Advances the reader to the next record in a result set.</summary>
+ <returns>true if there are more rows; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.ReadAsync">
+ <summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.Read"></see>, which advances the reader to the next record in a result set. This method invokes <see cref="M:System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken)"></see> with CancellationToken.None.</summary>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken)">
+ <summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbDataReader.Read"></see>. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbDataReader.Read"></see> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Read will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbDataReader object until the returned Task is complete.</summary>
+ <param name="cancellationToken">The cancellation instruction.</param>
+ <returns>A task representing the asynchronous operation.</returns>
+ <exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.RecordsAffected">
+ <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
+ <returns>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected or the statement failed.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataReader.VisibleFieldCount">
+ <summary>Gets the number of fields in the <see cref="T:System.Data.Common.DbDataReader"></see> that are not hidden.</summary>
+ <returns>The number of fields that are not hidden.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.System#Data#IDataReader#Close">
+
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.System#Data#IDataReader#GetSchemaTable">
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReader.System#Data#IDataRecord#GetData(System.Int32)">
+ <summary>For a description of this member, see <see cref="M:System.Data.IDataRecord.GetData(System.Int32)"></see>.</summary>
+ <param name="ordinal">The zero-based column ordinal.</param>
+ <returns>An instance of <see cref="T:System.Data.IDataReader"></see> to be used when the field points to more remote structured data.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbDataReaderExtensions">
+
+ </member>
+ <member name="M:System.Data.Common.DbDataReaderExtensions.CanGetColumnSchema(System.Data.Common.DbDataReader)">
+ <param name="reader"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataReaderExtensions.GetColumnSchema(System.Data.Common.DbDataReader)">
+ <param name="reader"></param>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.DbDataRecord">
+ <summary>Implements <see cref="T:System.Data.IDataRecord"></see> and <see cref="T:System.ComponentModel.ICustomTypeDescriptor"></see>, and provides data binding support for <see cref="T:System.Data.Common.DbEnumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataRecord"></see> class.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbDataRecord.FieldCount">
+ <summary>Indicates the number of fields within the current record. This property is read-only.</summary>
+ <returns>The number of fields within the current record.</returns>
+ <exception cref="T:System.NotSupportedException">Not connected to a data source to read from.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetBoolean(System.Int32)">
+ <summary>Returns the value of the specified column as a Boolean.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>true if the Boolean is true; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetByte(System.Int32)">
+ <summary>Returns the value of the specified column as a byte.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
+ <summary>Returns the value of the specified column as a byte array.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <param name="dataIndex">The index within the field from which to start the read operation.</param>
+ <param name="buffer">The buffer into which to read the stream of bytes.</param>
+ <param name="bufferIndex">The index for buffer to start the read operation.</param>
+ <param name="length">The number of bytes to read.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetChar(System.Int32)">
+ <summary>Returns the value of the specified column as a character.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
+ <summary>Returns the value of the specified column as a character array.</summary>
+ <param name="i">Column ordinal.</param>
+ <param name="dataIndex">Buffer to copy data into.</param>
+ <param name="buffer">Maximum length to copy into the buffer.</param>
+ <param name="bufferIndex">Point to start from within the buffer.</param>
+ <param name="length">Point to start from within the source data.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetData(System.Int32)">
+ <summary>Not currently supported.</summary>
+ <param name="i">Not currently supported.</param>
+ <returns>Not currently supported.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetDataTypeName(System.Int32)">
+ <summary>Returns the name of the back-end data type.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The name of the back-end data type.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetDateTime(System.Int32)">
+ <summary>Returns the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetDbDataReader(System.Int32)">
+ <summary>Returns a <see cref="T:System.Data.Common.DbDataReader"></see> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
+ <param name="i">The zero-based column ordinal.</param>
+ <returns>A <see cref="T:System.Data.Common.DbDataReader"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetDecimal(System.Int32)">
+ <summary>Returns the value of the specified column as a <see cref="T:System.Decimal"></see> object.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetDouble(System.Int32)">
+ <summary>Returns the value of the specified column as a double-precision floating-point number.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetFieldType(System.Int32)">
+ <summary>Returns the <see cref="T:System.Type"></see> that is the data type of the object.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The <see cref="T:System.Type"></see> that is the data type of the object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetFloat(System.Int32)">
+ <summary>Returns the value of the specified column as a single-precision floating-point number.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetGuid(System.Int32)">
+ <summary>Returns the GUID value of the specified field.</summary>
+ <param name="i">The index of the field to return.</param>
+ <returns>The GUID value of the specified field.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetInt16(System.Int32)">
+ <summary>Returns the value of the specified column as a 16-bit signed integer.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetInt32(System.Int32)">
+ <summary>Returns the value of the specified column as a 32-bit signed integer.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetInt64(System.Int32)">
+ <summary>Returns the value of the specified column as a 64-bit signed integer.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetName(System.Int32)">
+ <summary>Returns the name of the specified column.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The name of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetOrdinal(System.String)">
+ <summary>Returns the column ordinal, given the name of the column.</summary>
+ <param name="name">The name of the column.</param>
+ <returns>The column ordinal.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetString(System.Int32)">
+ <summary>Returns the value of the specified column as a string.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value of the specified column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetValue(System.Int32)">
+ <summary>Returns the value at the specified column in its native format.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value to return.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.GetValues(System.Object[])">
+ <summary>Populates an array of objects with the column values of the current record.</summary>
+ <param name="values">An array of <see cref="T:System.Object"></see> to copy the attribute fields into.</param>
+ <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.IsDBNull(System.Int32)">
+ <summary>Used to indicate nonexistent values.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>true if the specified column is equivalent to <see cref="T:System.DBNull"></see>; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataRecord.Item(System.Int32)">
+ <summary>Indicates the value at the specified column in its native format given the column ordinal. This property is read-only.</summary>
+ <param name="i">The column ordinal.</param>
+ <returns>The value at the specified column in its native format.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbDataRecord.Item(System.String)">
+ <summary>Indicates the value at the specified column in its native format given the column name. This property is read-only.</summary>
+ <param name="name">The column name.</param>
+ <returns>The value at the specified column in its native format.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
+ <summary>Returns a collection of custom attributes for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.AttributeCollection"></see> that contains the attributes for this object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
+ <summary>Returns the class name of this instance of a component.</summary>
+ <returns>The class name of the object, or null if the class does not have a name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
+ <summary>Returns the name of this instance of a component.</summary>
+ <returns>The name of the object, or null if the object does not have a name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
+ <summary>Returns a type converter for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.TypeConverter"></see> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"></see> for this object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
+ <summary>Returns the default event for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptor"></see> that represents the default event for this object, or null if this object does not have events.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
+ <summary>Returns the default property for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the default property for this object, or null if this object does not have properties.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
+ <summary>Returns an editor of the specified type for this instance of a component.</summary>
+ <param name="editorBaseType">A <see cref="T:System.Type"></see> that represents the editor for this object.</param>
+ <returns>An <see cref="T:System.Object"></see> of the specified type that is the editor for this object, or null if the editor cannot be found.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
+ <summary>Returns the events for this instance of a component.</summary>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the events for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
+ <summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
+ <param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter.</param>
+ <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection"></see> that represents the filtered events for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
+ <summary>Returns the properties for this instance of a component.</summary>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the properties for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
+ <summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
+ <param name="attributes">An array of type <see cref="T:System.Attribute"></see> that is used as a filter.</param>
+ <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"></see> that represents the filtered properties for this component instance.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
+ <summary>Returns an object that contains the property described by the specified property descriptor.</summary>
+ <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"></see> that represents the property whose owner is to be found.</param>
+ <returns>An <see cref="T:System.Object"></see> that represents the owner of the specified property.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbDataSourceEnumerator">
+ <summary>Provides a mechanism for enumerating all available instances of database servers within the local network.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataSourceEnumerator.#ctor">
+ <summary>Creates a new instance of the <see cref="T:System.Data.Common.DbDataSourceEnumerator"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbDataSourceEnumerator.GetDataSources">
+ <summary>Retrieves a <see cref="T:System.Data.DataTable"></see> containing information about all visible instances of the server represented by the strongly typed instance of this class.</summary>
+ <returns>Returns a <see cref="T:System.Data.DataTable"></see> containing information about the visible instances of the associated data source.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbEnumerator">
+ <summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator"></see> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator"></see> class with the give n data reader.</summary>
+ <param name="reader">The DataReader through which to iterate.</param>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator"></see> class using the specified DataReader.</summary>
+ <param name="reader">The DataReader through which to iterate.</param>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator"></see> class using the specified reader and indicates whether to automatically close the reader after iterating through its data.</summary>
+ <param name="reader">The DataReader through which to iterate.</param>
+ <param name="closeReader">true to automatically close the DataReader after iterating through its data; otherwise, false.</param>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator"></see> class using the specified DataReader, and indicates whether to automatically close the DataReader after iterating through its data.</summary>
+ <param name="reader">The DataReader through which to iterate.</param>
+ <param name="closeReader">true to automatically close the DataReader after iterating through its data; otherwise, false.</param>
+ </member>
+ <member name="P:System.Data.Common.DbEnumerator.Current">
+ <summary>Gets the current element in the collection.</summary>
+ <returns>The current element in the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the collection.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbEnumerator.Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Data.Common.DbException">
+ <summary>The base class for all exceptions thrown on behalf of the data source.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException"></see> class with the specified error message.</summary>
+ <param name="message">The message to display for this exception.</param>
+ </member>
+ <member name="M:System.Data.Common.DbException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException"></see> class with the specified serialization information and context.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that holds the serialized object data about the exception being thrown.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that contains contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.Data.Common.DbException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException"></see> class with the specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message string.</param>
+ <param name="innerException">The inner exception reference.</param>
+ </member>
+ <member name="M:System.Data.Common.DbException.#ctor(System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException"></see> class with the specified error message and error code.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="errorCode">The error code for the exception.</param>
+ </member>
+ <member name="T:System.Data.Common.DbMetaDataCollectionNames">
+ <summary>Provides a list of constants for the well-known MetaDataCollections: DataSourceInformation, DataTypes, MetaDataCollections, ReservedWords, and Restrictions.</summary>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataCollectionNames.DataSourceInformation">
+ <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema"></see> method that represents the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataCollectionNames.DataTypes">
+ <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema"></see> method that represents the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataCollectionNames.MetaDataCollections">
+ <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema"></see> method that represents the MetaDataCollections collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataCollectionNames.ReservedWords">
+ <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema"></see> method that represents the ReservedWords collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataCollectionNames.Restrictions">
+ <summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema"></see> method that represents the Restrictions collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.DbMetaDataColumnNames">
+ <summary>Provides static values that are used for the column names in the MetaDataCollection objects contained in the <see cref="T:System.Data.DataTable"></see>. The <see cref="T:System.Data.DataTable"></see> is created by the GetSchema method.</summary>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.CollectionName">
+ <summary>Used by the GetSchema method to create the CollectionName column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ColumnSize">
+ <summary>Used by the GetSchema method to create the ColumnSize column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.CompositeIdentifierSeparatorPattern">
+ <summary>Used by the GetSchema method to create the CompositeIdentifierSeparatorPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.CreateFormat">
+ <summary>Used by the GetSchema method to create the CreateFormat column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.CreateParameters">
+ <summary>Used by the GetSchema method to create the CreateParameters column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductName">
+ <summary>Used by the GetSchema method to create the DataSourceProductName column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersion">
+ <summary>Used by the GetSchema method to create the DataSourceProductVersion column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersionNormalized">
+ <summary>Used by the GetSchema method to create the DataSourceProductVersionNormalized column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.DataType">
+ <summary>Used by the GetSchema method to create the DataType column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.GroupByBehavior">
+ <summary>Used by the GetSchema method to create the GroupByBehavior column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierCase">
+ <summary>Used by the GetSchema method to create the IdentifierCase column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierPattern">
+ <summary>Used by the GetSchema method to create the IdentifierPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsAutoIncrementable">
+ <summary>Used by the GetSchema method to create the IsAutoIncrementable column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsBestMatch">
+ <summary>Used by the GetSchema method to create the IsBestMatch column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsCaseSensitive">
+ <summary>Used by the GetSchema method to create the IsCaseSensitive column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsConcurrencyType">
+ <summary>Used by the GetSchema method to create the IsConcurrencyType column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedLength">
+ <summary>Used by the GetSchema method to create the IsFixedLength column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedPrecisionScale">
+ <summary>Used by the GetSchema method to create the IsFixedPrecisionScale column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsLiteralSupported">
+ <summary>Used by the GetSchema method to create the IsLiteralSupported column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsLong">
+ <summary>Used by the GetSchema method to create the IsLong column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsNullable">
+ <summary>Used by the GetSchema method to create the IsNullable column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchable">
+ <summary>Used by the GetSchema method to create the IsSearchable column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchableWithLike">
+ <summary>Used by the GetSchema method to create the IsSearchableWithLike column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.IsUnsigned">
+ <summary>Used by the GetSchema method to create the IsUnsigned column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralPrefix">
+ <summary>Used by the GetSchema method to create the LiteralPrefix column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralSuffix">
+ <summary>Used by the GetSchema method to create the LiteralSuffix column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.MaximumScale">
+ <summary>Used by the GetSchema method to create the MaximumScale column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.MinimumScale">
+ <summary>Used by the GetSchema method to create the MinimumScale column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfIdentifierParts">
+ <summary>Used by the GetSchema method to create the NumberOfIdentifierParts column in the MetaDataCollections collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfRestrictions">
+ <summary>Used by the GetSchema method to create the NumberOfRestrictions column in the MetaDataCollections collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.OrderByColumnsInSelect">
+ <summary>Used by the GetSchema method to create the OrderByColumnsInSelect column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerFormat">
+ <summary>Used by the GetSchema method to create the ParameterMarkerFormat column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerPattern">
+ <summary>Used by the GetSchema method to create the ParameterMarkerPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNameMaxLength">
+ <summary>Used by the GetSchema method to create the ParameterNameMaxLength column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNamePattern">
+ <summary>Used by the GetSchema method to create the ParameterNamePattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ProviderDbType">
+ <summary>Used by the GetSchema method to create the ProviderDbType column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierCase">
+ <summary>Used by the GetSchema method to create the QuotedIdentifierCase column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierPattern">
+ <summary>Used by the GetSchema method to create the QuotedIdentifierPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.ReservedWord">
+ <summary>Used by the GetSchema method to create the ReservedWord column in the ReservedWords collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.StatementSeparatorPattern">
+ <summary>Used by the GetSchema method to create the StatementSeparatorPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.StringLiteralPattern">
+ <summary>Used by the GetSchema method to create the StringLiteralPattern column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.SupportedJoinOperators">
+ <summary>Used by the GetSchema method to create the SupportedJoinOperators column in the DataSourceInformation collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.DbMetaDataColumnNames.TypeName">
+ <summary>Used by the GetSchema method to create the TypeName column in the DataTypes collection.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.DbParameter">
+ <summary>Represents a parameter to a <see cref="T:System.Data.Common.DbCommand"></see> and optionally, its mapping to a <see cref="T:System.Data.DataSet"></see> column. For more information on parameters, see <see cref="~/docs/framework/data/adonet/configuring-parameters-and-parameter-data-types.md">Configuring Parameters and Parameter Data Types</see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbParameter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameter"></see> class.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.DbType">
+ <summary>Gets or sets the <see cref="T:System.Data.DbType"></see> of the parameter.</summary>
+ <returns>One of the <see cref="T:System.Data.DbType"></see> values. The default is <see cref="F:System.Data.DbType.String"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The property is not set to a valid <see cref="T:System.Data.DbType"></see>.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.Direction">
+ <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>
+ <returns>One of the <see cref="T:System.Data.ParameterDirection"></see> values. The default is Input.</returns>
+ <exception cref="T:System.ArgumentException">The property is not set to one of the valid <see cref="T:System.Data.ParameterDirection"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.IsNullable">
+ <summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
+ <returns>true if null values are accepted; otherwise false. The default is false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.ParameterName">
+ <summary>Gets or sets the name of the <see cref="T:System.Data.Common.DbParameter"></see>.</summary>
+ <returns>The name of the <see cref="T:System.Data.Common.DbParameter"></see>. The default is an empty string (&quot;&quot;).</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.Precision">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions] Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value"></see> property.</summary>
+ <returns>The maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value"></see> property.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameter.ResetDbType">
+ <summary>Resets the DbType property to its original settings.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.Scale">
+ <summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value"></see> is resolved.</summary>
+ <returns>The number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value"></see> is resolved.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.Size">
+ <summary>Gets or sets the maximum size, in bytes, of the data within the column.</summary>
+ <returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.SourceColumn">
+ <summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet"></see> and used for loading or returning the <see cref="P:System.Data.Common.DbParameter.Value"></see>.</summary>
+ <returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet"></see>. The default is an empty string.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.SourceColumnNullMapping">
+ <summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.Common.DbCommandBuilder"></see> to correctly generate Update statements for nullable columns.</summary>
+ <returns>true if the source column is nullable; false if it is not.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.SourceVersion">
+ <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion"></see> to use when you load <see cref="P:System.Data.Common.DbParameter.Value"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataRowVersion"></see> values. The default is Current.</returns>
+ <exception cref="T:System.ArgumentException">The property is not set to one of the <see cref="T:System.Data.DataRowVersion"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.Value">
+ <summary>Gets or sets the value of the parameter.</summary>
+ <returns>An <see cref="T:System.Object"></see> that is the value of the parameter. The default value is null.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.System#Data#IDataParameter#SourceVersion">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Precision">
+ <summary>Indicates the precision of numeric parameters.</summary>
+ <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>
+ </member>
+ <member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Scale">
+ <summary>For a description of this member, see <see cref="P:System.Data.IDbDataParameter.Scale"></see>.</summary>
+ <returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value"></see> is resolved. The default is 0.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbParameterCollection">
+ <summary>The base class for a collection of parameters relevant to a <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameterCollection"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Add(System.Object)">
+ <summary>Adds the specified <see cref="T:System.Data.Common.DbParameter"></see> object to the <see cref="T:System.Data.Common.DbParameterCollection"></see>.</summary>
+ <param name="value">The <see cref="P:System.Data.Common.DbParameter.Value"></see> of the <see cref="T:System.Data.Common.DbParameter"></see> to add to the collection.</param>
+ <returns>The index of the <see cref="T:System.Data.Common.DbParameter"></see> object in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.AddRange(System.Array)">
+ <summary>Adds an array of items with the specified values to the <see cref="T:System.Data.Common.DbParameterCollection"></see>.</summary>
+ <param name="values">An array of values of type <see cref="T:System.Data.Common.DbParameter"></see> to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Clear">
+ <summary>Removes all <see cref="T:System.Data.Common.DbParameter"></see> values from the <see cref="T:System.Data.Common.DbParameterCollection"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Contains(System.Object)">
+ <summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter"></see> with the specified <see cref="P:System.Data.Common.DbParameter.Value"></see> is contained in the collection.</summary>
+ <param name="value">The <see cref="P:System.Data.Common.DbParameter.Value"></see> of the <see cref="T:System.Data.Common.DbParameter"></see> to look for in the collection.</param>
+ <returns>true if the <see cref="T:System.Data.Common.DbParameter"></see> is in the collection; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Contains(System.String)">
+ <summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter"></see> with the specified name exists in the collection.</summary>
+ <param name="value">The name of the <see cref="T:System.Data.Common.DbParameter"></see> to look for in the collection.</param>
+ <returns>true if the <see cref="T:System.Data.Common.DbParameter"></see> is in the collection; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.CopyTo(System.Array,System.Int32)">
+ <summary>Copies an array of items to the collection starting at the specified index.</summary>
+ <param name="array">The array of items to copy to the collection.</param>
+ <param name="index">The index in the collection to copy the items.</param>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.Count">
+ <summary>Specifies the number of items in the collection.</summary>
+ <returns>The number of items in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.GetEnumerator">
+ <summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator"></see> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.Int32)">
+ <summary>Returns the <see cref="T:System.Data.Common.DbParameter"></see> object at the specified index in the collection.</summary>
+ <param name="index">The index of the <see cref="T:System.Data.Common.DbParameter"></see> in the collection.</param>
+ <returns>The <see cref="T:System.Data.Common.DbParameter"></see> object at the specified index in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.String)">
+ <summary>Returns <see cref="T:System.Data.Common.DbParameter"></see> the object with the specified name.</summary>
+ <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter"></see> in the collection.</param>
+ <returns>The <see cref="T:System.Data.Common.DbParameter"></see> the object with the specified name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.Object)">
+ <summary>Returns the index of the specified <see cref="T:System.Data.Common.DbParameter"></see> object.</summary>
+ <param name="value">The <see cref="T:System.Data.Common.DbParameter"></see> object in the collection.</param>
+ <returns>The index of the specified <see cref="T:System.Data.Common.DbParameter"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.String)">
+ <summary>Returns the index of the <see cref="T:System.Data.Common.DbParameter"></see> object with the specified name.</summary>
+ <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter"></see> object in the collection.</param>
+ <returns>The index of the <see cref="T:System.Data.Common.DbParameter"></see> object with the specified name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Insert(System.Int32,System.Object)">
+ <summary>Inserts the specified index of the <see cref="T:System.Data.Common.DbParameter"></see> object with the specified name into the collection at the specified index.</summary>
+ <param name="index">The index at which to insert the <see cref="T:System.Data.Common.DbParameter"></see> object.</param>
+ <param name="value">The <see cref="T:System.Data.Common.DbParameter"></see> object to insert into the collection.</param>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.IsFixedSize">
+ <summary>Specifies whether the collection is a fixed size.</summary>
+ <returns>true if the collection is a fixed size; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.IsReadOnly">
+ <summary>Specifies whether the collection is read-only.</summary>
+ <returns>true if the collection is read-only; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.IsSynchronized">
+ <summary>Specifies whether the collection is synchronized.</summary>
+ <returns>true if the collection is synchronized; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.Item(System.Int32)">
+ <summary>Gets and sets the <see cref="T:System.Data.Common.DbParameter"></see> at the specified index.</summary>
+ <param name="index">The zero-based index of the parameter.</param>
+ <returns>The <see cref="T:System.Data.Common.DbParameter"></see> at the specified index.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.Item(System.String)">
+ <summary>Gets and sets the <see cref="T:System.Data.Common.DbParameter"></see> with the specified name.</summary>
+ <param name="parameterName">The name of the parameter.</param>
+ <returns>The <see cref="T:System.Data.Common.DbParameter"></see> with the specified name.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.Remove(System.Object)">
+ <summary>Removes the specified <see cref="T:System.Data.Common.DbParameter"></see> object from the collection.</summary>
+ <param name="value">The <see cref="T:System.Data.Common.DbParameter"></see> object to remove.</param>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Data.Common.DbParameter"></see> object at the specified from the collection.</summary>
+ <param name="index">The index where the <see cref="T:System.Data.Common.DbParameter"></see> object is located.</param>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.Common.DbParameter"></see> object with the specified name from the collection.</summary>
+ <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter"></see> object to remove.</param>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)">
+ <summary>Sets the <see cref="T:System.Data.Common.DbParameter"></see> object at the specified index to a new value.</summary>
+ <param name="index">The index where the <see cref="T:System.Data.Common.DbParameter"></see> object is located.</param>
+ <param name="value">The new <see cref="T:System.Data.Common.DbParameter"></see> value.</param>
+ </member>
+ <member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)">
+ <summary>Sets the <see cref="T:System.Data.Common.DbParameter"></see> object with the specified name to a new value.</summary>
+ <param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter"></see> object in the collection.</param>
+ <param name="value">The new <see cref="T:System.Data.Common.DbParameter"></see> value.</param>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.SyncRoot">
+ <summary>Specifies the <see cref="T:System.Object"></see> to be used to synchronize access to the collection.</summary>
+ <returns>A <see cref="T:System.Object"></see> to be used to synchronize access to the <see cref="T:System.Data.Common.DbParameterCollection"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.System#Collections#ICollection#IsSynchronized">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.System#Collections#IList#IsFixedSize">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.System#Collections#IList#IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.System#Collections#IList#Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbParameterCollection.System#Data#IDataParameterCollection#Item(System.String)">
+ <summary>Gets or sets the parameter at the specified index.</summary>
+ <param name="parameterName">The name of the parameter to retrieve.</param>
+ <returns>An <see cref="T:System.Object"></see> at the specified index.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbProviderFactory">
+ <summary>Represents a set of methods for creating instances of a provider's implementation of the data source classes.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.#ctor">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderFactory"></see> class.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbProviderFactory.CanCreateDataSourceEnumerator">
+ <summary>Specifies whether the specific <see cref="T:System.Data.Common.DbProviderFactory"></see> supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator"></see> class.</summary>
+ <returns>true if the instance of the <see cref="T:System.Data.Common.DbProviderFactory"></see> supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator"></see> class; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateCommand">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommand"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbCommand"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateCommandBuilder">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommandBuilder"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbCommandBuilder"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateConnection">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnection"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbConnection"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateConnectionStringBuilder">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateDataAdapter">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataAdapter"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbDataAdapter"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateDataSourceEnumerator">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataSourceEnumerator"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbDataSourceEnumerator"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbProviderFactory.CreateParameter">
+ <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbParameter"></see> class.</summary>
+ <returns>A new instance of <see cref="T:System.Data.Common.DbParameter"></see>.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute">
+ <summary>Identifies which provider-specific property in the strongly typed parameter classes is to be used when setting a provider-specific type.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbProviderSpecificTypePropertyAttribute.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute"></see> class.</summary>
+ <param name="isProviderSpecificTypeProperty">Specifies whether this property is a provider-specific property.</param>
+ </member>
+ <member name="P:System.Data.Common.DbProviderSpecificTypePropertyAttribute.IsProviderSpecificTypeProperty">
+ <summary>Indicates whether the attributed property is a provider-specific type.</summary>
+ <returns>true if the property that this attribute is applied to is a provider-specific type property; otherwise false.</returns>
+ </member>
+ <member name="T:System.Data.Common.DbTransaction">
+ <summary>The base class for a transaction.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbTransaction.#ctor">
+ <summary>Initializes a new <see cref="T:System.Data.Common.DbTransaction"></see> object.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbTransaction.Commit">
+ <summary>Commits the database transaction.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbTransaction.Connection">
+ <summary>Specifies the <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction.</summary>
+ <returns>The <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction.</returns>
+ </member>
+ <member name="P:System.Data.Common.DbTransaction.DbConnection">
+ <summary>Specifies the <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction.</summary>
+ <returns>The <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbTransaction.Dispose">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DbTransaction.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">If true, this method releases all resources held by any managed objects that this <see cref="T:System.Data.Common.DbTransaction"></see> references.</param>
+ </member>
+ <member name="P:System.Data.Common.DbTransaction.IsolationLevel">
+ <summary>Specifies the <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</summary>
+ <returns>The <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</returns>
+ </member>
+ <member name="M:System.Data.Common.DbTransaction.Rollback">
+ <summary>Rolls back a transaction from a pending state.</summary>
+ </member>
+ <member name="P:System.Data.Common.DbTransaction.System#Data#IDbTransaction#Connection">
+ <summary>Gets the <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction, or a null reference if the transaction is no longer valid.</summary>
+ <returns>The <see cref="T:System.Data.Common.DbConnection"></see> object associated with the transaction.</returns>
+ </member>
+ <member name="T:System.Data.UpdateStatus">
+ <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)"></see>.</summary>
+ </member>
+ <member name="F:System.Data.UpdateStatus.Continue">
+ <summary>The <see cref="T:System.Data.Common.DataAdapter"></see> is to continue proccessing rows.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateStatus.ErrorsOccurred">
+ <summary>The event handler reports that the update should be treated as an error.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateStatus.SkipAllRemainingRows">
+ <summary>The current row and all remaining rows are not to be updated.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.UpdateStatus.SkipCurrentRow">
+ <summary>The current row is not to be updated.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.VersionNotFoundException">
+ <summary>Represents the exception that is thrown when you try to return a version of a <see cref="T:System.Data.DataRow"></see> that has been deleted.</summary>
+ </member>
+ <member name="M:System.Data.VersionNotFoundException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.VersionNotFoundException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.VersionNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.VersionNotFoundException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.XmlReadMode">
+ <summary>Specifies how to read XML data and a relational schema into a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.XmlReadMode.Auto">
+ <summary>Default.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.DiffGram">
+ <summary>Reads a DiffGram, applying changes from the DiffGram to the <see cref="T:System.Data.DataSet"></see>. The semantics are identical to those of a <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)"></see> operation. As with the <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)"></see> operation, <see cref="P:System.Data.DataRow.RowState"></see> values are preserved. Input to <see cref="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)"></see> with DiffGrams should only be obtained using the output from <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)"></see> as a DiffGram.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.Fragment">
+ <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"></see> is set to Fragment, the default namespace is read as the inline schema.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.IgnoreSchema">
+ <summary>Ignores any inline schema and reads data into the existing <see cref="T:System.Data.DataSet"></see> 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"></see>). If the data is a DiffGram, IgnoreSchema has the same functionality as DiffGram.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.InferSchema">
+ <summary>Ignores any inline schema, infers schema from the data and loads the data. If the <see cref="T:System.Data.DataSet"></see> 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.InferTypedSchema">
+ <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"></see> 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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlReadMode.ReadSchema">
+ <summary>Reads any inline schema and loads the data. If the <see cref="T:System.Data.DataSet"></see> 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"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.XmlWriteMode">
+ <summary>Specifies how to write XML data and a relational schema from a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.XmlWriteMode.DiffGram">
+ <summary>Writes the entire <see cref="T:System.Data.DataSet"></see> as a DiffGram, including original and current values. To generate a DiffGram containing only changed values, call <see cref="M:System.Data.DataSet.GetChanges"></see>, and then call <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)"></see> as a DiffGram on the returned <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlWriteMode.IgnoreSchema">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataSet"></see> as XML data, without an XSD schema. If no data is loaded into the <see cref="T:System.Data.DataSet"></see>, nothing is written.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.XmlWriteMode.WriteSchema">
+ <summary>Writes the current contents of the <see cref="T:System.Data.DataSet"></see> as XML data with the relational structure as inline XSD schema. If the <see cref="T:System.Data.DataSet"></see> has only a schema with no data, only the inline schema is written. If the <see cref="T:System.Data.DataSet"></see> does not have a current schema, nothing is written.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.DBNull">
+ <summary>Represents a nonexistent value. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.DBNull.ToString">
+ <summary>Returns an empty string (<see cref="F:System.String.Empty"></see>).</summary>
+ <returns>An empty string (<see cref="F:System.String.Empty"></see>).</returns>
+ </member>
+ <member name="M:System.DBNull.ToString(System.IFormatProvider)">
+ <summary>Returns an empty string using the specified <see cref="T:System.IFormatProvider"></see>.</summary>
+ <param name="provider">The <see cref="T:System.IFormatProvider"></see> to be used to format the return value. -or- null to obtain the format information from the current locale setting of the operating system.</param>
+ <returns>An empty string (<see cref="F:System.String.Empty"></see>).</returns>
+ </member>
+ <member name="F:System.DBNull.Value">
+ <summary>Represents the sole instance of the <see cref="T:System.DBNull"></see> class.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.GroupByBehavior">
+ <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>
+ </member>
+ <member name="F:System.Data.Common.GroupByBehavior.ExactMatch">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.GroupByBehavior.MustContainAll">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.GroupByBehavior.NotSupported">
+ <summary>The GROUP BY clause is not supported.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.GroupByBehavior.Unknown">
+ <summary>The support for the GROUP BY clause is unknown.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.GroupByBehavior.Unrelated">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.IDbColumnSchemaGenerator">
+
+ </member>
+ <member name="M:System.Data.Common.IDbColumnSchemaGenerator.GetColumnSchema">
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.IdentifierCase">
+ <summary>Specifies how identifiers are treated by the data source when searching the system catalog.</summary>
+ </member>
+ <member name="F:System.Data.Common.IdentifierCase.Insensitive">
+ <summary>The data source ignores identifier case when searching the system catalog. The identifiers &quot;ab&quot; and &quot;AB&quot; will match.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.IdentifierCase.Sensitive">
+ <summary>The data source distinguishes identifier case when searching the system catalog. The identifiers &quot;ab&quot; and &quot;AB&quot; will not match.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.IdentifierCase.Unknown">
+ <summary>The data source has ambiguous rules regarding identifier case and cannot discern this information.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.RowUpdatedEventArgs">
+ <summary>Provides data for the RowUpdated event of a .NET Framework data provider.</summary>
+ </member>
+ <member name="M:System.Data.Common.RowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs"></see> class.</summary>
+ <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</param>
+ <param name="statementType">The type of SQL statement executed.</param>
+ <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.Command">
+ <summary>Gets the <see cref="T:System.Data.IDbCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</summary>
+ <returns>The <see cref="T:System.Data.IDbCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</returns>
+ </member>
+ <member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[])">
+ <summary>Copies references to the modified rows into the provided array.</summary>
+ <param name="array">The array of <see cref="T:System.Data.DataRow"></see> to copy into.</param>
+ </member>
+ <member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[],System.Int32)">
+ <summary>Copies references to the modified rows into the provided array.</summary>
+ <param name="array">The array of <see cref="T:System.Data.DataRow"></see> to copy into.</param>
+ <param name="arrayIndex">The index in the array to start copying into.</param>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.Errors">
+ <summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> was executed.</summary>
+ <returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> was executed.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.RecordsAffected">
+ <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
+ <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>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.Row">
+ <summary>Gets the <see cref="T:System.Data.DataRow"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.RowCount">
+ <summary>Gets the number of rows processed in a batch of updated records.</summary>
+ <returns>int that specifies the number of row processed.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.StatementType">
+ <summary>Gets the type of SQL statement executed.</summary>
+ <returns>The type of SQL statement executed.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.Status">
+ <summary>Gets the <see cref="T:System.Data.UpdateStatus"></see> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> property.</summary>
+ <returns>One of the <see cref="T:System.Data.UpdateStatus"></see> values. The default is Continue.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatedEventArgs.TableMapping">
+ <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="T:System.Data.Common.RowUpdatingEventArgs">
+ <summary>Provides the data for the RowUpdating event of a .NET Framework data provider.</summary>
+ </member>
+ <member name="M:System.Data.Common.RowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs"></see> class.</summary>
+ <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ <param name="command">The <see cref="T:System.Data.IDbCommand"></see> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</param>
+ <param name="statementType">The type of SQL statement to execute.</param>
+ <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</param>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.BaseCommand">
+ <summary>Gets or sets the <see cref="T:System.Data.IDbCommand"></see> object for an instance of this class.</summary>
+ <returns>The <see cref="T:System.Data.IDbCommand"></see> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.Command">
+ <summary>Gets the <see cref="T:System.Data.IDbCommand"></see> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> operation.</summary>
+ <returns>The <see cref="T:System.Data.IDbCommand"></see> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.Errors">
+ <summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> executes.</summary>
+ <returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> executes.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.Row">
+ <summary>Gets the <see cref="T:System.Data.DataRow"></see> that will be sent to the server as part of an insert, update, or delete operation.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.StatementType">
+ <summary>Gets the type of SQL statement to execute.</summary>
+ <returns>The type of SQL statement to execute.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.Status">
+ <summary>Gets or sets the <see cref="T:System.Data.UpdateStatus"></see> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command"></see> property.</summary>
+ <returns>One of the <see cref="T:System.Data.UpdateStatus"></see> values. The default is Continue.</returns>
+ </member>
+ <member name="P:System.Data.Common.RowUpdatingEventArgs.TableMapping">
+ <summary>Gets the <see cref="T:System.Data.Common.DataTableMapping"></see> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
+ <returns>The <see cref="T:System.Data.Common.DataTableMapping"></see> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
+ </member>
+ <member name="T:System.Data.Common.SchemaTableColumn">
+ <summary>Describes the column metadata of the schema for a database table.</summary>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.AllowDBNull">
+ <summary>Specifies whether value DBNull is allowed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.BaseColumnName">
+ <summary>Specifies the name of the column in the schema table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.BaseSchemaName">
+ <summary>Specifies the name of the schema in the schema table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.BaseTableName">
+ <summary>Specifies the name of the table in the schema table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.ColumnName">
+ <summary>Specifies the name of the column in the schema table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.ColumnOrdinal">
+ <summary>Specifies the ordinal of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.ColumnSize">
+ <summary>Specifies the size of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.DataType">
+ <summary>Specifies the type of data in the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.IsAliased">
+ <summary>Specifies whether this column is aliased.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.IsExpression">
+ <summary>Specifies whether this column is an expression.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.IsKey">
+ <summary>Specifies whether this column is a key for the table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.IsLong">
+ <summary>Specifies whether this column contains long data.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.IsUnique">
+ <summary>Specifies whether a unique constraint applies to this column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.NonVersionedProviderType">
+ <summary>Specifies the non-versioned provider-specific data type of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.NumericPrecision">
+ <summary>Specifies the precision of the column data, if the data is numeric.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.NumericScale">
+ <summary>Specifies the scale of the column data, if the data is numeric.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableColumn.ProviderType">
+ <summary>Specifies the provider-specific data type of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.SchemaTableOptionalColumn">
+ <summary>Describes optional column metadata of the schema for a database table.</summary>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementSeed">
+ <summary>Specifies the value at which the series for new identity columns is assigned.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementStep">
+ <summary>Specifies the increment between values in the identity column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseCatalogName">
+ <summary>The name of the catalog associated with the results of the latest query.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseColumnNamespace">
+ <summary>The namespace of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseServerName">
+ <summary>The server name of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseTableNamespace">
+ <summary>The namespace for the table that contains the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.ColumnMapping">
+ <summary>Specifies the mapping for the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.DefaultValue">
+ <summary>The default value for the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.Expression">
+ <summary>The expression used to compute the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsAutoIncrement">
+ <summary>Specifies whether the column values in the column are automatically incremented.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsHidden">
+ <summary>Specifies whether this column is hidden.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsReadOnly">
+ <summary>Specifies whether this column is read-only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.IsRowVersion">
+ <summary>Specifies whether this column contains row version information.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SchemaTableOptionalColumn.ProviderSpecificDataType">
+ <summary>Specifies the provider-specific data type of the column.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Common.SupportedJoinOperators">
+ <summary>Specifies what types of Transact-SQL join statements are supported by the data source.</summary>
+ </member>
+ <member name="F:System.Data.Common.SupportedJoinOperators.FullOuter">
+ <summary>The data source supports full outer joins.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SupportedJoinOperators.Inner">
+ <summary>The data source supports inner joins.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SupportedJoinOperators.LeftOuter">
+ <summary>The data source supports left outer joins.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SupportedJoinOperators.None">
+ <summary>The data source does not support join queries.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Common.SupportedJoinOperators.RightOuter">
+ <summary>The data source supports right outer joins.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.ConflictOption">
+ <summary>Specifies how conflicting changes to the data source will be detected and resolved.</summary>
+ </member>
+ <member name="F:System.Data.ConflictOption.CompareAllSearchableValues">
+ <summary>Update and delete statements will include all searchable columns from the table in the WHERE clause. This is equivalent to specifying CompareAllValuesUpdate | CompareAllValuesDelete.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConflictOption.CompareRowVersion">
+ <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 CompareRowVersionUpdate | CompareRowVersionDelete.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConflictOption.OverwriteChanges">
+ <summary>All update and delete statements include only <see cref="P:System.Data.DataTable.PrimaryKey"></see> columns in the WHERE clause. If no <see cref="P:System.Data.DataTable.PrimaryKey"></see> is defined, all searchable columns are included in the WHERE clause. This is equivalent to OverwriteChangesUpdate | OverwriteChangesDelete.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.ConnectionState">
+ <summary>Describes the current state of the connection to a data source.</summary>
+ </member>
+ <member name="F:System.Data.ConnectionState.Broken">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConnectionState.Closed">
+ <summary>The connection is closed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConnectionState.Connecting">
+ <summary>The connection object is connecting to the data source.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConnectionState.Executing">
+ <summary>The connection object is executing a command. (This value is reserved for future versions of the product.)</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConnectionState.Fetching">
+ <summary>The connection object is retrieving data. (This value is reserved for future versions of the product.)</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.ConnectionState.Open">
+ <summary>The connection is open.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.Constraint">
+ <summary>Represents a constraint that can be enforced on one or more <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ </member>
+ <member name="M:System.Data.Constraint.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Constraint"></see> class.</summary>
+ </member>
+ <member name="P:System.Data.Constraint._DataSet">
+ <summary>Gets the <see cref="T:System.Data.DataSet"></see> to which this constraint belongs.</summary>
+ <returns>The <see cref="T:System.Data.DataSet"></see> to which the constraint belongs.</returns>
+ </member>
+ <member name="M:System.Data.Constraint.CheckStateForProperty">
+ <summary>Gets the <see cref="T:System.Data.DataSet"></see> to which this constraint belongs.</summary>
+ </member>
+ <member name="P:System.Data.Constraint.ConstraintName">
+ <summary>The name of a constraint in the <see cref="T:System.Data.ConstraintCollection"></see>.</summary>
+ <returns>The name of the <see cref="T:System.Data.Constraint"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.Constraint"></see> name is a null value or empty string.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.ConstraintCollection"></see> already contains a <see cref="T:System.Data.Constraint"></see> with the same name (The comparison is not case-sensitive.).</exception>
+ </member>
+ <member name="P:System.Data.Constraint.ExtendedProperties">
+ <summary>Gets the collection of user-defined constraint properties.</summary>
+ <returns>A <see cref="T:System.Data.PropertyCollection"></see> of custom information.</returns>
+ </member>
+ <member name="M:System.Data.Constraint.SetDataSet(System.Data.DataSet)">
+ <summary>Sets the constraint's <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> to which this constraint will belong.</param>
+ </member>
+ <member name="P:System.Data.Constraint.Table">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> to which the constraint applies.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> to which the constraint applies.</returns>
+ </member>
+ <member name="M:System.Data.Constraint.ToString">
+ <summary>Gets the <see cref="P:System.Data.Constraint.ConstraintName"></see>, if there is one, as a string.</summary>
+ <returns>The string value of the <see cref="P:System.Data.Constraint.ConstraintName"></see>.</returns>
+ </member>
+ <member name="T:System.Data.ConstraintCollection">
+ <summary>Represents a collection of constraints for a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Add(System.Data.Constraint)">
+ <summary>Adds the specified <see cref="T:System.Data.Constraint"></see> object to the collection.</summary>
+ <param name="constraint">The Constraint to add.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="constraint">constraint</paramref> argument is null.</exception>
+ <exception cref="T:System.ArgumentException">The constraint already belongs to this collection, or belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the same name. (The comparison is not case-sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Boolean)">
+ <summary>Constructs a new <see cref="T:System.Data.UniqueConstraint"></see> with the specified name, <see cref="T:System.Data.DataColumn"></see>, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
+ <param name="name">The name of the UniqueConstraint.</param>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to which the constraint applies.</param>
+ <param name="primaryKey">Specifies whether the column should be the primary key. If true, the column will be a primary key column.</param>
+ <returns>A new UniqueConstraint.</returns>
+ <exception cref="T:System.ArgumentException">The constraint already belongs to this collection. -Or- The constraint belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint"></see> with the specified name, parent column, and child column, and adds the constraint to the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint"></see>.</param>
+ <param name="primaryKeyColumn">The primary key, or parent, <see cref="T:System.Data.DataColumn"></see>.</param>
+ <param name="foreignKeyColumn">The foreign key, or child, <see cref="T:System.Data.DataColumn"></see>.</param>
+ <returns>A new ForeignKeyConstraint.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Boolean)">
+ <summary>Constructs a new <see cref="T:System.Data.UniqueConstraint"></see> with the specified name, array of <see cref="T:System.Data.DataColumn"></see> objects, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.UniqueConstraint"></see>.</param>
+ <param name="columns">An array of <see cref="T:System.Data.DataColumn"></see> objects to which the constraint applies.</param>
+ <param name="primaryKey">Specifies whether the column should be the primary key. If true, the column will be a primary key column.</param>
+ <returns>A new UniqueConstraint.</returns>
+ <exception cref="T:System.ArgumentException">The constraint already belongs to this collection. -Or- The constraint belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint"></see>, with the specified arrays of parent columns and child columns, and adds the constraint to the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint"></see>.</param>
+ <param name="primaryKeyColumns">An array of <see cref="T:System.Data.DataColumn"></see> objects that are the primary key, or parent, columns.</param>
+ <param name="foreignKeyColumns">An array of <see cref="T:System.Data.DataColumn"></see> objects that are the foreign key, or child, columns.</param>
+ <returns>A new ForeignKeyConstraint.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.ConstraintCollection"></see> array to the end of the collection.</summary>
+ <param name="constraints">An array of <see cref="T:System.Data.ConstraintCollection"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.CanRemove(System.Data.Constraint)">
+ <summary>Indicates whether a <see cref="T:System.Data.Constraint"></see> can be removed.</summary>
+ <param name="constraint">The <see cref="T:System.Data.Constraint"></see> to be tested for removal from the collection.</param>
+ <returns>true if the <see cref="T:System.Data.Constraint"></see> can be removed from collection; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Clear">
+ <summary>Clears the collection of any <see cref="T:System.Data.Constraint"></see> objects.</summary>
+ </member>
+ <member name="E:System.Data.ConstraintCollection.CollectionChanged">
+ <summary>Occurs whenever the <see cref="T:System.Data.ConstraintCollection"></see> is changed because of <see cref="T:System.Data.Constraint"></see> objects being added or removed.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Contains(System.String)">
+ <summary>Indicates whether the <see cref="T:System.Data.Constraint"></see> object specified by name exists in the collection.</summary>
+ <param name="name">The <see cref="P:System.Data.Constraint.ConstraintName"></see> of the constraint.</param>
+ <returns>true if the collection contains the specified constraint; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.CopyTo(System.Data.Constraint[],System.Int32)">
+ <summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array"></see> instance starting at the specified index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the values copied from the collection.</param>
+ <param name="index">The index of the array at which to start inserting.</param>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.IndexOf(System.Data.Constraint)">
+ <summary>Gets the index of the specified <see cref="T:System.Data.Constraint"></see>.</summary>
+ <param name="constraint">The <see cref="T:System.Data.Constraint"></see> to search for.</param>
+ <returns>The zero-based index of the <see cref="T:System.Data.Constraint"></see> if it is in the collection; otherwise, -1.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.IndexOf(System.String)">
+ <summary>Gets the index of the <see cref="T:System.Data.Constraint"></see> specified by name.</summary>
+ <param name="constraintName">The name of the <see cref="T:System.Data.Constraint"></see>.</param>
+ <returns>The index of the <see cref="T:System.Data.Constraint"></see> if it is in the collection; otherwise, -1.</returns>
+ </member>
+ <member name="P:System.Data.ConstraintCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Data.Constraint"></see> from the collection at the specified index.</summary>
+ <param name="index">The index of the constraint to return.</param>
+ <returns>The <see cref="T:System.Data.Constraint"></see> at the specified index.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
+ </member>
+ <member name="P:System.Data.ConstraintCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Data.Constraint"></see> from the collection with the specified name.</summary>
+ <param name="name">The <see cref="P:System.Data.Constraint.ConstraintName"></see> of the constraint to return.</param>
+ <returns>The <see cref="T:System.Data.Constraint"></see> with the specified name; otherwise a null value if the <see cref="T:System.Data.Constraint"></see> does not exist.</returns>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Remove(System.Data.Constraint)">
+ <summary>Removes the specified <see cref="T:System.Data.Constraint"></see> from the collection.</summary>
+ <param name="constraint">The <see cref="T:System.Data.Constraint"></see> to remove.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="constraint">constraint</paramref> argument is null.</exception>
+ <exception cref="T:System.ArgumentException">The constraint does not belong to the collection.</exception>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.Remove(System.String)">
+ <summary>Removes the <see cref="T:System.Data.Constraint"></see> object specified by name from the collection.</summary>
+ <param name="name">The name of the <see cref="T:System.Data.Constraint"></see> to remove.</param>
+ </member>
+ <member name="M:System.Data.ConstraintCollection.RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Data.Constraint"></see> object at the specified index from the collection.</summary>
+ <param name="index">The index of the <see cref="T:System.Data.Constraint"></see> to remove.</param>
+ <exception cref="T:System.IndexOutOfRangeException">The collection does not have a constraint at this index.</exception>
+ </member>
+ <member name="T:System.Data.ConstraintException">
+ <summary>Represents the exception that is thrown when attempting an action that violates a constraint.</summary>
+ </member>
+ <member name="M:System.Data.ConstraintException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException"></see> class. This is the default constructor.</summary>
+ </member>
+ <member name="M:System.Data.ConstraintException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.ConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException"></see> class using the specified serialization and stream context.</summary>
+ <param name="info">The data necessary to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.ConstraintException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException"></see> class using the specified string and inner exception.</summary>
+ <param name="message">The string to display when the exception is thrown.</param>
+ <param name="innerException">Gets the Exception instance that caused the current exception.</param>
+ </member>
+ <member name="T:System.Data.DataColumn">
+ <summary>Represents the schema of a column in a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataColumn.#ctor">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.DataColumn"></see> class as type string.</summary>
+ </member>
+ <member name="M:System.Data.DataColumn.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn"></see> class, as type string, using the specified column name.</summary>
+ <param name="columnName">A string that represents the name of the column to be created. If set to null or an empty string (&quot;&quot;), a default name will be specified when added to the columns collection.</param>
+ </member>
+ <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn"></see> class using the specified column name and data type.</summary>
+ <param name="columnName">A string that represents the name of the column to be created. If set to null or an empty string (&quot;&quot;), a default name will be specified when added to the columns collection.</param>
+ <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType"></see>.</param>
+ <exception cref="T:System.ArgumentNullException">No <paramref name="dataType">dataType</paramref> was specified.</exception>
+ </member>
+ <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn"></see> class using the specified name, data type, and expression.</summary>
+ <param name="columnName">A string that represents the name of the column to be created. If set to null or an empty string (&quot;&quot;), a default name will be specified when added to the columns collection.</param>
+ <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType"></see>.</param>
+ <param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression"></see> property.</param>
+ <exception cref="T:System.ArgumentNullException">No <paramref name="dataType">dataType</paramref> was specified.</exception>
+ </member>
+ <member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String,System.Data.MappingType)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn"></see> class using the specified name, data type, expression, and value that determines whether the column is an attribute.</summary>
+ <param name="columnName">A string that represents the name of the column to be created. If set to null or an empty string (&quot;&quot;), a default name will be specified when added to the columns collection.</param>
+ <param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType"></see>.</param>
+ <param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression"></see> property.</param>
+ <param name="type">One of the <see cref="T:System.Data.MappingType"></see> values.</param>
+ <exception cref="T:System.ArgumentNullException">No <paramref name="dataType">dataType</paramref> was specified.</exception>
+ </member>
+ <member name="P:System.Data.DataColumn.AllowDBNull">
+ <summary>Gets or sets a value that indicates whether null values are allowed in this column for rows that belong to the table.</summary>
+ <returns>true if null values values are allowed; otherwise, false. The default is true.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.AutoIncrement">
+ <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>
+ <returns>true if the value of the column increments automatically; otherwise, false. The default is false.</returns>
+ <exception cref="T:System.ArgumentException">The column is a computed column.</exception>
+ </member>
+ <member name="P:System.Data.DataColumn.AutoIncrementSeed">
+ <summary>Gets or sets the starting value for a column that has its <see cref="P:System.Data.DataColumn.AutoIncrement"></see> property set to true. The default is 0.</summary>
+ <returns>The starting value for the <see cref="P:System.Data.DataColumn.AutoIncrement"></see> feature.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.AutoIncrementStep">
+ <summary>Gets or sets the increment used by a column with its <see cref="P:System.Data.DataColumn.AutoIncrement"></see> property set to true.</summary>
+ <returns>The number by which the value of the column is automatically incremented. The default is 1.</returns>
+ <exception cref="T:System.ArgumentException">The value set is zero.</exception>
+ </member>
+ <member name="P:System.Data.DataColumn.Caption">
+ <summary>Gets or sets the caption for the column.</summary>
+ <returns>The caption of the column. If not set, returns the <see cref="P:System.Data.DataColumn.ColumnName"></see> value.</returns>
+ </member>
+ <member name="M:System.Data.DataColumn.CheckNotAllowNull">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="M:System.Data.DataColumn.CheckUnique">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="P:System.Data.DataColumn.ColumnMapping">
+ <summary>Gets or sets the <see cref="T:System.Data.MappingType"></see> of the column.</summary>
+ <returns>One of the <see cref="T:System.Data.MappingType"></see> values.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.ColumnName">
+ <summary>Gets or sets the name of the column in the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <returns>The name of the column.</returns>
+ <exception cref="T:System.ArgumentException">The property is set to null or an empty string and the column belongs to a collection.</exception>
+ <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>
+ </member>
+ <member name="P:System.Data.DataColumn.DataType">
+ <summary>Gets or sets the type of data stored in the column.</summary>
+ <returns>A <see cref="T:System.Type"></see> object that represents the column data type.</returns>
+ <exception cref="T:System.ArgumentException">The column already has data stored.</exception>
+ </member>
+ <member name="P:System.Data.DataColumn.DateTimeMode">
+ <summary>Gets or sets the DateTimeMode for the column.</summary>
+ <returns>The <see cref="T:System.Data.DataSetDateTime"></see> for the specified column.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.DefaultValue">
+ <summary>Gets or sets the default value for the column when you are creating new rows.</summary>
+ <returns>A value appropriate to the column's <see cref="P:System.Data.DataColumn.DataType"></see>.</returns>
+ <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>
+ </member>
+ <member name="P:System.Data.DataColumn.Expression">
+ <summary>Gets or sets the expression used to filter rows, calculate the values in a column, or create an aggregate column.</summary>
+ <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"></see> of the column.</returns>
+ <exception cref="T:System.ArgumentException">The <see cref="P:System.Data.DataColumn.AutoIncrement"></see> or <see cref="P:System.Data.DataColumn.Unique"></see> property is set to true.</exception>
+ <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>
+ <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>
+ <exception cref="T:System.ArgumentOutOfRangeException">When you use the SUBSTRING function, the start argument is out of range. -Or- When you use the SUBSTRING function, the length argument is out of range.</exception>
+ <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"></see>.</exception>
+ </member>
+ <member name="P:System.Data.DataColumn.ExtendedProperties">
+ <summary>Gets the collection of custom user information associated with a <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <returns>A <see cref="T:System.Data.PropertyCollection"></see> of custom information.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.MaxLength">
+ <summary>Gets or sets the maximum length of a text column.</summary>
+ <returns>The maximum length of the column in characters. If the column has no maximum length, the value is –1 (default).</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.Namespace">
+ <summary>Gets or sets the namespace of the <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <returns>The namespace of the <see cref="T:System.Data.DataColumn"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The namespace already has data.</exception>
+ </member>
+ <member name="M:System.Data.DataColumn.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="pcevent">Parameter reference.</param>
+ </member>
+ <member name="P:System.Data.DataColumn.Ordinal">
+ <summary>Gets the (zero-based) position of the column in the <see cref="T:System.Data.DataColumnCollection"></see> collection.</summary>
+ <returns>The position of the column. Gets -1 if the column is not a member of a collection.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.Prefix">
+ <summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>The XML prefix for the <see cref="T:System.Data.DataTable"></see> namespace.</returns>
+ </member>
+ <member name="M:System.Data.DataColumn.RaisePropertyChanging(System.String)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="name">Parameter reference.</param>
+ </member>
+ <member name="P:System.Data.DataColumn.ReadOnly">
+ <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>
+ <returns>true if the column is read only; otherwise, false. The default is false.</returns>
+ <exception cref="T:System.ArgumentException">The property is set to false on a computed column.</exception>
+ </member>
+ <member name="M:System.Data.DataColumn.SetOrdinal(System.Int32)">
+ <summary>Changes the ordinal or position of the <see cref="T:System.Data.DataColumn"></see> to the specified ordinal or position.</summary>
+ <param name="ordinal">The specified ordinal.</param>
+ </member>
+ <member name="P:System.Data.DataColumn.Table">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> to which the column belongs to.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> that the <see cref="T:System.Data.DataColumn"></see> belongs to.</returns>
+ </member>
+ <member name="M:System.Data.DataColumn.ToString">
+ <summary>Gets the <see cref="P:System.Data.DataColumn.Expression"></see> of the column, if one exists.</summary>
+ <returns>The <see cref="P:System.Data.DataColumn.Expression"></see> value, if the property is set; otherwise, the <see cref="P:System.Data.DataColumn.ColumnName"></see> property.</returns>
+ </member>
+ <member name="P:System.Data.DataColumn.Unique">
+ <summary>Gets or sets a value that indicates whether the values in each row of the column must be unique.</summary>
+ <returns>true if the value must be unique; otherwise, false. The default is false.</returns>
+ <exception cref="T:System.ArgumentException">The column is a calculated column.</exception>
+ </member>
+ <member name="T:System.Data.DataColumnChangeEventArgs">
+ <summary>Provides data for the <see cref="E:System.Data.DataTable.ColumnChanging"></see> event.</summary>
+ </member>
+ <member name="M:System.Data.DataColumnChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataColumn,System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataColumnChangeEventArgs"></see> class.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> of the column with the changing value.</param>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> with the changing value.</param>
+ <param name="value">The new value.</param>
+ </member>
+ <member name="P:System.Data.DataColumnChangeEventArgs.Column">
+ <summary>Gets the <see cref="T:System.Data.DataColumn"></see> with a changing value.</summary>
+ <returns>The <see cref="T:System.Data.DataColumn"></see> with a changing value.</returns>
+ </member>
+ <member name="P:System.Data.DataColumnChangeEventArgs.ProposedValue">
+ <summary>Gets or sets the proposed new value for the column.</summary>
+ <returns>The proposed value, of type <see cref="T:System.Object"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataColumnChangeEventArgs.Row">
+ <summary>Gets the <see cref="T:System.Data.DataRow"></see> of the column with a changing value.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> of the column with a changing value.</returns>
+ </member>
+ <member name="T:System.Data.DataColumnChangeEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.ColumnChanging"></see> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.DataColumnCollection">
+ <summary>Represents a collection of <see cref="T:System.Data.DataColumn"></see> objects for a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Add">
+ <summary>Creates and adds a <see cref="T:System.Data.DataColumn"></see> object to the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <returns>The newly created <see cref="T:System.Data.DataColumn"></see>.</returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Add(System.Data.DataColumn)">
+ <summary>Creates and adds the specified <see cref="T:System.Data.DataColumn"></see> object to the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to add.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="column">column</paramref> parameter is null.</exception>
+ <exception cref="T:System.ArgumentException">The column already belongs to this collection, or to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression"></see> property for more information about how to create expressions.</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Add(System.String)">
+ <summary>Creates and adds a <see cref="T:System.Data.DataColumn"></see> object that has the specified name to the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <param name="columnName">The name of the column.</param>
+ <returns>The newly created <see cref="T:System.Data.DataColumn"></see>.</returns>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type)">
+ <summary>Creates and adds a <see cref="T:System.Data.DataColumn"></see> object that has the specified name and type to the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <param name="columnName">The <see cref="P:System.Data.DataColumn.ColumnName"></see> to use when you create the column.</param>
+ <param name="type">The <see cref="P:System.Data.DataColumn.DataType"></see> of the new column.</param>
+ <returns>The newly created <see cref="T:System.Data.DataColumn"></see>.</returns>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression"></see> property for more information about how to create expressions.</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type,System.String)">
+ <summary>Creates and adds a <see cref="T:System.Data.DataColumn"></see> object that has the specified name, type, and expression to the <see cref="T:System.Data.DataColumnCollection"></see>.</summary>
+ <param name="columnName">The name to use when you create the column.</param>
+ <param name="type">The <see cref="P:System.Data.DataColumn.DataType"></see> of the new column.</param>
+ <param name="expression">The expression to assign to the <see cref="P:System.Data.DataColumn.Expression"></see> property.</param>
+ <returns>The newly created <see cref="T:System.Data.DataColumn"></see>.</returns>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression"></see> property for more information about how to create expressions.</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.AddRange(System.Data.DataColumn[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.DataColumn"></see> array to the end of the collection.</summary>
+ <param name="columns">The array of <see cref="T:System.Data.DataColumn"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.CanRemove(System.Data.DataColumn)">
+ <summary>Checks whether a specific column can be removed from the collection.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see> in the collection.</param>
+ <returns>true if the column can be removed. false if, The <paramref name="column">column</paramref> parameter is null. The column does not belong to this collection. The column is part of a relationship. Another column's expression depends on this column.</returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Clear">
+ <summary>Clears the collection of any columns.</summary>
+ </member>
+ <member name="E:System.Data.DataColumnCollection.CollectionChanged">
+ <summary>Occurs when the columns collection changes, either by adding or removing a column.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Contains(System.String)">
+ <summary>Checks whether the collection contains a column with the specified name.</summary>
+ <param name="name">The <see cref="P:System.Data.DataColumn.ColumnName"></see> of the column to look for.</param>
+ <returns>true if a column exists with this name; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.CopyTo(System.Data.DataColumn[],System.Int32)">
+ <summary>Copies the entire collection into an existing array, starting at a specified index within the array.</summary>
+ <param name="array">An array of <see cref="T:System.Data.DataColumn"></see> objects to copy the collection into.</param>
+ <param name="index">The index to start from.</param>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.IndexOf(System.Data.DataColumn)">
+ <summary>Gets the index of a column specified by name.</summary>
+ <param name="column">The name of the column to return.</param>
+ <returns>The index of the column specified by <paramref name="column">column</paramref> if it is found; otherwise, -1.</returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.IndexOf(System.String)">
+ <summary>Gets the index of the column with the specific name (the name is not case sensitive).</summary>
+ <param name="columnName">The name of the column to find.</param>
+ <returns>The zero-based index of the column with the specified name, or -1 if the column does not exist in the collection.</returns>
+ </member>
+ <member name="P:System.Data.DataColumnCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Data.DataColumn"></see> from the collection at the specified index.</summary>
+ <param name="index">The zero-based index of the column to return.</param>
+ <returns>The <see cref="T:System.Data.DataColumn"></see> at the specified index.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
+ </member>
+ <member name="P:System.Data.DataColumnCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Data.DataColumn"></see> from the collection with the specified name.</summary>
+ <param name="name">The <see cref="P:System.Data.DataColumn.ColumnName"></see> of the column to return.</param>
+ <returns>The <see cref="T:System.Data.DataColumn"></see> in the collection with the specified <see cref="P:System.Data.DataColumn.ColumnName"></see>; otherwise a null value if the <see cref="T:System.Data.DataColumn"></see> does not exist.</returns>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Remove(System.Data.DataColumn)">
+ <summary>Removes the specified <see cref="T:System.Data.DataColumn"></see> object from the collection.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to remove.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="column">column</paramref> parameter is null.</exception>
+ <exception cref="T:System.ArgumentException">The column does not belong to this collection. -Or- The column is part of a relationship. -Or- Another column's expression depends on this column.</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.Remove(System.String)">
+ <summary>Removes the <see cref="T:System.Data.DataColumn"></see> object that has the specified name from the collection.</summary>
+ <param name="name">The name of the column to remove.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a column with the specified name.</exception>
+ </member>
+ <member name="M:System.Data.DataColumnCollection.RemoveAt(System.Int32)">
+ <summary>Removes the column at the specified index from the collection.</summary>
+ <param name="index">The index of the column to remove.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a column at the specified index.</exception>
+ </member>
+ <member name="T:System.Data.DataException">
+ <summary>Represents the exception that is thrown when errors are generated using ADO.NET components.</summary>
+ </member>
+ <member name="M:System.Data.DataException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataException"></see> class. This is the default constructor.</summary>
+ </member>
+ <member name="M:System.Data.DataException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.DataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataException"></see> class with the specified serialization information and context.</summary>
+ <param name="info">The data necessary to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.DataException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataException"></see> class with the specified string and inner exception.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ <param name="innerException">A reference to an inner exception.</param>
+ </member>
+ <member name="T:System.Data.DataRelation">
+ <summary>Represents a parent/child relationship between two <see cref="T:System.Data.DataTable"></see> objects.</summary>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation"></see> class using the specified <see cref="T:System.Data.DataRelation"></see> name, and parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="relationName">The name of the <see cref="T:System.Data.DataRelation"></see>. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn"></see> in the relationship.</param>
+ <param name="childColumn">The child <see cref="T:System.Data.DataColumn"></see> in the relationship.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn"></see> objects contains null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types -Or- The tables do not belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation"></see> class using the specified <see cref="T:System.Data.DataRelation"></see> name and matched arrays of parent and child <see cref="T:System.Data.DataColumn"></see> objects.</summary>
+ <param name="relationName">The name of the relation. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn"></see> objects contains null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The <see cref="T:System.Data.DataColumn"></see> objects have different data types -Or- One or both of the arrays are not composed of distinct columns from the same table. -Or- The tables do not belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation"></see> class using the specified name, parent and child <see cref="T:System.Data.DataColumn"></see> objects, and a value that indicates whether to create constraints.</summary>
+ <param name="relationName">The name of the relation. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentColumn">The parent <see cref="T:System.Data.DataColumn"></see> in the relation.</param>
+ <param name="childColumn">The child <see cref="T:System.Data.DataColumn"></see> in the relation.</param>
+ <param name="createConstraints">A value that indicates whether constraints are created. true, if constraints are created. Otherwise, false.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn"></see> objects contains null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types -Or- The tables do not belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation"></see> class using the specified name, matched arrays of parent and child <see cref="T:System.Data.DataColumn"></see> objects, and value that indicates whether to create constraints.</summary>
+ <param name="relationName">The name of the relation. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <param name="childColumns">An array of child <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <param name="createConstraints">A value that indicates whether to create constraints. true, if constraints are created. Otherwise, false.</param>
+ <exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn"></see> objects is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The columns have different data types -Or- The tables do not belong to the same <see cref="T:System.Data.DataSet"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
+ <summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
+ <param name="relationName">The name of the relation. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentTableName">The name of the <see cref="T:System.Data.DataTable"></see> that is the parent table of the relation.</param>
+ <param name="childTableName">The name of the <see cref="T:System.Data.DataTable"></see> that is the child table of the relation.</param>
+ <param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn"></see> object names in the parent <see cref="T:System.Data.DataTable"></see> of the relation.</param>
+ <param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn"></see> object names in the child <see cref="T:System.Data.DataTable"></see> of the relation.</param>
+ <param name="nested">A value that indicates whether relationships are nested.</param>
+ </member>
+ <member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
+ <summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
+ <param name="relationName">The name of the <see cref="T:System.Data.DataRelation"></see>. If null or an empty string (&quot;&quot;), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection"></see>.</param>
+ <param name="parentTableName">The name of the <see cref="T:System.Data.DataTable"></see> that is the parent table of the relation.</param>
+ <param name="parentTableNamespace">The name of the parent table namespace.</param>
+ <param name="childTableName">The name of the <see cref="T:System.Data.DataTable"></see> that is the child table of the relation.</param>
+ <param name="childTableNamespace">The name of the child table namespace.</param>
+ <param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn"></see> object names in the parent <see cref="T:System.Data.DataTable"></see> of the relation.</param>
+ <param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn"></see> object names in the child <see cref="T:System.Data.DataTable"></see> of the relation.</param>
+ <param name="nested">A value that indicates whether relationships are nested.</param>
+ </member>
+ <member name="M:System.Data.DataRelation.CheckStateForProperty">
+ <summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <exception cref="T:System.Data.DataException">The parent and child tables belong to different <see cref="T:System.Data.DataSet"></see> objects. -Or- One or more pairs of parent and child <see cref="T:System.Data.DataColumn"></see> objects have mismatched data types. -Or- The parent and child <see cref="T:System.Data.DataColumn"></see> objects are identical.</exception>
+ </member>
+ <member name="P:System.Data.DataRelation.ChildColumns">
+ <summary>Gets the child <see cref="T:System.Data.DataColumn"></see> objects of this relation.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.ChildKeyConstraint">
+ <summary>Gets the <see cref="T:System.Data.ForeignKeyConstraint"></see> for the relation.</summary>
+ <returns>A ForeignKeyConstraint.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.ChildTable">
+ <summary>Gets the child table of this relation.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that is the child table of the relation.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.DataSet">
+ <summary>Gets the <see cref="T:System.Data.DataSet"></see> to which the <see cref="T:System.Data.DataRelation"></see> belongs.</summary>
+ <returns>A <see cref="T:System.Data.DataSet"></see> to which the <see cref="T:System.Data.DataRelation"></see> belongs.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.ExtendedProperties">
+ <summary>Gets the collection that stores customized properties.</summary>
+ <returns>A <see cref="T:System.Data.PropertyCollection"></see> that contains customized properties.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.Nested">
+ <summary>Gets or sets a value that indicates whether <see cref="T:System.Data.DataRelation"></see> objects are nested.</summary>
+ <returns>true, if <see cref="T:System.Data.DataRelation"></see> objects are nested; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRelation.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="pcevent">Parameter reference.</param>
+ </member>
+ <member name="P:System.Data.DataRelation.ParentColumns">
+ <summary>Gets an array of <see cref="T:System.Data.DataColumn"></see> objects that are the parent columns of this <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects that are the parent columns of this <see cref="T:System.Data.DataRelation"></see>.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.ParentKeyConstraint">
+ <summary>Gets the <see cref="T:System.Data.UniqueConstraint"></see> that guarantees that values in the parent column of a <see cref="T:System.Data.DataRelation"></see> are unique.</summary>
+ <returns>A <see cref="T:System.Data.UniqueConstraint"></see> that makes sure that values in a parent column are unique.</returns>
+ </member>
+ <member name="P:System.Data.DataRelation.ParentTable">
+ <summary>Gets the parent <see cref="T:System.Data.DataTable"></see> of this <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <returns>A <see cref="T:System.Data.DataTable"></see> that is the parent table of this relation.</returns>
+ </member>
+ <member name="M:System.Data.DataRelation.RaisePropertyChanging(System.String)">
+ <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <param name="name">Parameter reference.</param>
+ </member>
+ <member name="P:System.Data.DataRelation.RelationName">
+ <summary>Gets or sets the name used to retrieve a <see cref="T:System.Data.DataRelation"></see> from the <see cref="T:System.Data.DataRelationCollection"></see>.</summary>
+ <returns>The name of the a <see cref="T:System.Data.DataRelation"></see>.</returns>
+ <exception cref="T:System.ArgumentException">null or empty string (&quot;&quot;) was passed into a <see cref="T:System.Data.DataColumn"></see> that is a <see cref="T:System.Data.DataRelation"></see>.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.DataRelation"></see> belongs to a collection that already contains a <see cref="T:System.Data.DataRelation"></see> with the same name.</exception>
+ </member>
+ <member name="M:System.Data.DataRelation.ToString">
+ <summary>Gets the <see cref="P:System.Data.DataRelation.RelationName"></see>, if one exists.</summary>
+ <returns>The value of the <see cref="P:System.Data.DataRelation.RelationName"></see> property.</returns>
+ </member>
+ <member name="T:System.Data.DataRelationCollection">
+ <summary>Represents the collection of <see cref="T:System.Data.DataRelation"></see> objects for this <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRelationCollection"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataRelation)">
+ <summary>Adds a <see cref="T:System.Data.DataRelation"></see> to the <see cref="T:System.Data.DataRelationCollection"></see>.</summary>
+ <param name="relation">The DataRelation to add to the collection.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> parameter is a null value.</exception>
+ <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the specified name. (The comparison is not case sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> with a specified parent and child column, and adds it to the collection.</summary>
+ <param name="parentColumn">The parent column of the relation.</param>
+ <param name="childColumn">The child column of the relation.</param>
+ <returns>The created relation.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> with the specified parent and child columns, and adds it to the collection.</summary>
+ <param name="parentColumns">The parent columns of the relation.</param>
+ <param name="childColumns">The child columns of the relation.</param>
+ <returns>The created relation.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> argument is a null value.</exception>
+ <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> with the specified name, and parent and child columns, and adds it to the collection.</summary>
+ <param name="name">The name of the relation.</param>
+ <param name="parentColumn">The parent column of the relation.</param>
+ <param name="childColumn">The child column of the relation.</param>
+ <returns>The created relation.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> with the specified name and arrays of parent and child columns, and adds it to the collection.</summary>
+ <param name="name">The name of the DataRelation to create.</param>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <param name="childColumns">An array of child DataColumn objects.</param>
+ <returns>The created DataRelation.</returns>
+ <exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
+ <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> with the specified name, parent and child columns, with optional constraints according to the value of the <paramref name="createConstraints">createConstraints</paramref> parameter, and adds it to the collection.</summary>
+ <param name="name">The name of the relation.</param>
+ <param name="parentColumn">The parent column of the relation.</param>
+ <param name="childColumn">The child column of the relation.</param>
+ <param name="createConstraints">true to create constraints; otherwise false. (The default is true).</param>
+ <returns>The created relation.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
+ <summary>Creates a <see cref="T:System.Data.DataRelation"></see> 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>
+ <param name="name">The name of the DataRelation to create.</param>
+ <param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn"></see> objects.</param>
+ <param name="childColumns">An array of child DataColumn objects.</param>
+ <param name="createConstraints">true to create a constraint; otherwise false.</param>
+ <returns>The created relation.</returns>
+ <exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
+ <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.AddCore(System.Data.DataRelation)">
+ <summary>Performs verification on the table.</summary>
+ <param name="relation">The relation to check.</param>
+ <exception cref="T:System.ArgumentNullException">The relation is null.</exception>
+ <exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
+ <exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.AddRange(System.Data.DataRelation[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.DataRelation"></see> array to the end of the collection.</summary>
+ <param name="relations">The array of <see cref="T:System.Data.DataRelation"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.CanRemove(System.Data.DataRelation)">
+ <summary>Verifies whether the specified <see cref="T:System.Data.DataRelation"></see> can be removed from the collection.</summary>
+ <param name="relation">The relation to perform the check against.</param>
+ <returns>true if the <see cref="T:System.Data.DataRelation"></see> can be removed; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Clear">
+ <summary>Clears the collection of any relations.</summary>
+ </member>
+ <member name="E:System.Data.DataRelationCollection.CollectionChanged">
+ <summary>Occurs when the collection has changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Contains(System.String)">
+ <summary>Verifies whether a <see cref="T:System.Data.DataRelation"></see> with the specific name (case insensitive) exists in the collection.</summary>
+ <param name="name">The name of the relation to find.</param>
+ <returns>true, if a relation with the specified name exists; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.CopyTo(System.Data.DataRelation[],System.Int32)">
+ <summary>Copies the collection of <see cref="T:System.Data.DataRelation"></see> objects starting at the specified index.</summary>
+ <param name="array">The array of <see cref="T:System.Data.DataRelation"></see> objects to copy the collection to.</param>
+ <param name="index">The index to start from.</param>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.GetDataSet">
+ <summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ <returns>The referenced DataSet.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.IndexOf(System.Data.DataRelation)">
+ <summary>Gets the index of the specified <see cref="T:System.Data.DataRelation"></see> object.</summary>
+ <param name="relation">The relation to search for.</param>
+ <returns>The 0-based index of the relation, or -1 if the relation is not found in the collection.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.IndexOf(System.String)">
+ <summary>Gets the index of the <see cref="T:System.Data.DataRelation"></see> specified by name.</summary>
+ <param name="relationName">The name of the relation to find.</param>
+ <returns>The zero-based index of the relation with the specified name, or -1 if the relation does not exist in the collection.</returns>
+ </member>
+ <member name="P:System.Data.DataRelationCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Data.DataRelation"></see> object at the specified index.</summary>
+ <param name="index">The zero-based index to find.</param>
+ <returns>The <see cref="T:System.Data.DataRelation"></see>, or a null value if the specified <see cref="T:System.Data.DataRelation"></see> does not exist.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
+ </member>
+ <member name="P:System.Data.DataRelationCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Data.DataRelation"></see> object specified by name.</summary>
+ <param name="name">The name of the relation to find.</param>
+ <returns>The named <see cref="T:System.Data.DataRelation"></see>, or a null value if the specified <see cref="T:System.Data.DataRelation"></see> does not exist.</returns>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged"></see> event.</summary>
+ <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)">
+ <summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged"></see> event.</summary>
+ <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Remove(System.Data.DataRelation)">
+ <summary>Removes the specified relation from the collection.</summary>
+ <param name="relation">The relation to remove.</param>
+ <exception cref="T:System.ArgumentNullException">The relation is a null value.</exception>
+ <exception cref="T:System.ArgumentException">The relation does not belong to the collection.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.Remove(System.String)">
+ <summary>Removes the relation with the specified name from the collection.</summary>
+ <param name="name">The name of the relation to remove.</param>
+ <exception cref="T:System.IndexOutOfRangeException">The collection does not have a relation with the specified name.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.RemoveAt(System.Int32)">
+ <summary>Removes the relation at the specified index from the collection.</summary>
+ <param name="index">The index of the relation to remove.</param>
+ <exception cref="T:System.ArgumentException">The collection does not have a relation at the specified index.</exception>
+ </member>
+ <member name="M:System.Data.DataRelationCollection.RemoveCore(System.Data.DataRelation)">
+ <summary>Performs a verification on the specified <see cref="T:System.Data.DataRelation"></see> object.</summary>
+ <param name="relation">The DataRelation object to verify.</param>
+ <exception cref="T:System.ArgumentNullException">The collection does not have a relation at the specified index.</exception>
+ <exception cref="T:System.ArgumentException">The specified relation does not belong to this collection, or it belongs to another collection.</exception>
+ </member>
+ <member name="T:System.Data.DataRow">
+ <summary>Represents a row of data in a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRow.#ctor(System.Data.DataRowBuilder)">
+ <summary>Initializes a new instance of the DataRow. Constructs a row from the builder. Only for internal usage..</summary>
+ <param name="builder">builder</param>
+ </member>
+ <member name="M:System.Data.DataRow.AcceptChanges">
+ <summary>Commits all the changes made to this row since the last time <see cref="M:System.Data.DataRow.AcceptChanges"></see> was called.</summary>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.BeginEdit">
+ <summary>Starts an edit operation on a <see cref="T:System.Data.DataRow"></see> object.</summary>
+ <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging"></see> event.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">The method was called upon a deleted row.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.CancelEdit">
+ <summary>Cancels the current edit on the row.</summary>
+ <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging"></see> event.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.ClearErrors">
+ <summary>Clears the errors for the row. This includes the <see cref="P:System.Data.DataRow.RowError"></see> and errors set with <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRow.Delete">
+ <summary>Deletes the <see cref="T:System.Data.DataRow"></see>.</summary>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">The <see cref="T:System.Data.DataRow"></see> has already been deleted.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.EndEdit">
+ <summary>Ends the edit occurring on the row.</summary>
+ <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging"></see> event.</exception>
+ <exception cref="T:System.Data.ConstraintException">The edit broke a constraint.</exception>
+ <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>
+ <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"></see> is false.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation)">
+ <summary>Gets the child rows of this <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.ArgumentNullException">The relation is null.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetChildRows(System.String)">
+ <summary>Gets the child rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of the <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation,System.Data.DataRowVersion)">
+ <summary>Gets the child rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> is null.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetChildRows(System.String,System.Data.DataRowVersion)">
+ <summary>Gets the child rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of the <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> is null.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetColumnError(System.String)">
+ <summary>Gets the error description for a column, specified by name.</summary>
+ <param name="columnName">The name of the column.</param>
+ <returns>The text of the error description.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.GetColumnError(System.Data.DataColumn)">
+ <summary>Gets the error description of the specified <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see>.</param>
+ <returns>The text of the error description.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.GetColumnError(System.Int32)">
+ <summary>Gets the error description for the column specified by index.</summary>
+ <param name="columnIndex">The zero-based index of the column.</param>
+ <returns>The text of the error description.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex">columnIndex</paramref> argument is out of range.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetColumnsInError">
+ <summary>Gets an array of columns that have errors.</summary>
+ <returns>An array of <see cref="T:System.Data.DataColumn"></see> objects that contain errors.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation)">
+ <summary>Gets the parent row of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <returns>The parent <see cref="T:System.Data.DataRow"></see> of the current row.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> does not belong to the <see cref="T:System.Data.DataTable"></see>. The row is null.</exception>
+ <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">This row does not belong to the child table of the <see cref="T:System.Data.DataRelation"></see> object.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRow(System.String)">
+ <summary>Gets the parent row of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</param>
+ <returns>The parent <see cref="T:System.Data.DataRow"></see> of the current row.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation,System.Data.DataRowVersion)">
+ <summary>Gets the parent row of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values specifying the version of the data to get.</param>
+ <returns>The parent <see cref="T:System.Data.DataRow"></see> of the current row.</returns>
+ <exception cref="T:System.ArgumentNullException">The row is null. The <paramref name="relation">relation</paramref> does not belong to this table's parent relations.</exception>
+ <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRow(System.String,System.Data.DataRowVersion)">
+ <summary>Gets the parent row of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values.</param>
+ <returns>The parent <see cref="T:System.Data.DataRow"></see> of the current row.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> is null.</exception>
+ <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation,System.Data.DataRowVersion)">
+ <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values specifying the version of the data to get.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation"></see> does not belong to this row's <see cref="T:System.Data.DataSet"></see>.</exception>
+ <exception cref="T:System.ArgumentNullException">The row is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable"></see>.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation)">
+ <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relation">The <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation"></see> does not belong to this row's <see cref="T:System.Data.DataSet"></see>.</exception>
+ <exception cref="T:System.ArgumentNullException">The row is null.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRows(System.String)">
+ <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.GetParentRows(System.String,System.Data.DataRowVersion)">
+ <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow"></see> using the specified <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>, and <see cref="T:System.Data.DataRowVersion"></see>.</summary>
+ <param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName"></see> of a <see cref="T:System.Data.DataRelation"></see>.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values specifying the version of the data to get. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An array of <see cref="T:System.Data.DataRow"></see> objects or an array of length zero.</returns>
+ <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="relation">relation</paramref> is null.</exception>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion"></see>.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.HasErrors">
+ <summary>Gets a value that indicates whether there are errors in a row.</summary>
+ <returns>true if the row contains an error; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)">
+ <summary>Gets a value that indicates whether a specified version exists.</summary>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values that specifies the row version.</param>
+ <returns>true if the version exists; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn)">
+ <summary>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn"></see> contains a null value.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see>.</param>
+ <returns>true if the column contains a null value; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.IsNull(System.Int32)">
+ <summary>Gets a value that indicates whether the column at the specified index contains a null value.</summary>
+ <param name="columnIndex">The zero-based index of the column.</param>
+ <returns>true if the column contains a null value; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.IsNull(System.String)">
+ <summary>Gets a value that indicates whether the named column contains a null value.</summary>
+ <param name="columnName">The name of the column.</param>
+ <returns>true if the column contains a null value; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn,System.Data.DataRowVersion)">
+ <summary>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn"></see> and <see cref="T:System.Data.DataRowVersion"></see> contains a null value.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see>.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values that specifies the row version. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>true if the column contains a null value; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.Data.DataColumn)">
+ <summary>Gets or sets the data stored in the specified <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see> that contains the data.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.ArgumentException">The column does not belong to this table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="column">column</paramref> is null.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
+ <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.Int32)">
+ <summary>Gets or sets the data stored in the column specified by index.</summary>
+ <param name="columnIndex">The zero-based index of the column.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
+ <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex">columnIndex</paramref> argument is out of range.</exception>
+ <exception cref="T:System.InvalidCastException">Occurs when you set the value and the new value's <see cref="T:System.Type"></see> does not match <see cref="P:System.Data.DataColumn.DataType"></see>.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.String)">
+ <summary>Gets or sets the data stored in the column specified by name.</summary>
+ <param name="columnName">The name of the column.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName">columnName</paramref> cannot be found.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
+ <exception cref="T:System.InvalidCastException">Occurs when you set a value and its <see cref="T:System.Type"></see> does not match <see cref="P:System.Data.DataColumn.DataType"></see>.</exception>
+ <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"></see> is set to false.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.Data.DataColumn,System.Data.DataRowVersion)">
+ <summary>Gets the specified version of data stored in the specified <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see> that contains information about the column.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values that specifies the row version that you want. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.ArgumentException">The column does not belong to the table.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="column">column</paramref> argument contains null.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.Int32,System.Data.DataRowVersion)">
+ <summary>Gets the data stored in the column, specified by index and version of the data to retrieve.</summary>
+ <param name="columnIndex">The zero-based index of the column.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values that specifies the row version that you want. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex">columnIndex</paramref> argument is out of range.</exception>
+ <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Item(System.String,System.Data.DataRowVersion)">
+ <summary>Gets the specified version of data stored in the named column.</summary>
+ <param name="columnName">The name of the column.</param>
+ <param name="version">One of the <see cref="T:System.Data.DataRowVersion"></see> values that specifies the row version that you want. Possible values are Default, Original, Current, and Proposed.</param>
+ <returns>An <see cref="T:System.Object"></see> that contains the data.</returns>
+ <exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName">columnName</paramref> cannot be found.</exception>
+ <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
+ <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">The row was deleted.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.ItemArray">
+ <summary>Gets or sets all the values for this row through an array.</summary>
+ <returns>An array of type <see cref="T:System.Object"></see>.</returns>
+ <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
+ <exception cref="T:System.InvalidCastException">A value in the array does not match its <see cref="P:System.Data.DataColumn.DataType"></see> in its respective <see cref="T:System.Data.DataColumn"></see>.</exception>
+ <exception cref="T:System.Data.ConstraintException">An edit broke a constraint.</exception>
+ <exception cref="T:System.Data.ReadOnlyException">An edit tried to change the value of a read-only column.</exception>
+ <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"></see> of the <see cref="T:System.Data.DataColumn"></see> object is false.</exception>
+ <exception cref="T:System.Data.DeletedRowInaccessibleException">The row has been deleted.</exception>
+ </member>
+ <member name="M:System.Data.DataRow.RejectChanges">
+ <summary>Rejects all changes made to the row since <see cref="M:System.Data.DataRow.AcceptChanges"></see> was last called.</summary>
+ <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.RowError">
+ <summary>Gets or sets the custom error description for a row.</summary>
+ <returns>The text describing an error.</returns>
+ </member>
+ <member name="P:System.Data.DataRow.RowState">
+ <summary>Gets the current state of the row with regard to its relationship to the <see cref="T:System.Data.DataRowCollection"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataRowState"></see> values.</returns>
+ </member>
+ <member name="M:System.Data.DataRow.SetAdded">
+ <summary>Changes the <see cref="System.Data.DataRow.Rowstate"></see> of a <see cref="T:System.Data.DataRow"></see> to Added.</summary>
+ </member>
+ <member name="M:System.Data.DataRow.SetColumnError(System.Data.DataColumn,System.String)">
+ <summary>Sets the error description for a column specified as a <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="column">The <see cref="T:System.Data.DataColumn"></see> to set the error description for.</param>
+ <param name="error">The error description.</param>
+ </member>
+ <member name="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)">
+ <summary>Sets the error description for a column specified by index.</summary>
+ <param name="columnIndex">The zero-based index of the column.</param>
+ <param name="error">The error description.</param>
+ <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex">columnIndex</paramref> argument is out of range</exception>
+ </member>
+ <member name="M:System.Data.DataRow.SetColumnError(System.String,System.String)">
+ <summary>Sets the error description for a column specified by name.</summary>
+ <param name="columnName">The name of the column.</param>
+ <param name="error">The error description.</param>
+ </member>
+ <member name="M:System.Data.DataRow.SetModified">
+ <summary>Changes the <see cref="System.Data.DataRow.Rowstate"></see> of a <see cref="T:System.Data.DataRow"></see> to Modified.</summary>
+ </member>
+ <member name="M:System.Data.DataRow.SetNull(System.Data.DataColumn)">
+ <summary>Sets the value of the specified <see cref="T:System.Data.DataColumn"></see> to a null value.</summary>
+ <param name="column">A <see cref="T:System.Data.DataColumn"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow)">
+ <summary>Sets the parent row of a <see cref="T:System.Data.DataRow"></see> with specified new parent <see cref="T:System.Data.DataRow"></see>.</summary>
+ <param name="parentRow">The new parent <see cref="T:System.Data.DataRow"></see>.</param>
+ </member>
+ <member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow,System.Data.DataRelation)">
+ <summary>Sets the parent row of a <see cref="T:System.Data.DataRow"></see> with specified new parent <see cref="T:System.Data.DataRow"></see> and <see cref="T:System.Data.DataRelation"></see>.</summary>
+ <param name="parentRow">The new parent <see cref="T:System.Data.DataRow"></see>.</param>
+ <param name="relation">The relation <see cref="T:System.Data.DataRelation"></see> to use.</param>
+ <exception cref="T:System.Data.RowNotInTableException">One of the rows does not belong to a table</exception>
+ <exception cref="T:System.ArgumentNullException">One of the rows is null.</exception>
+ <exception cref="T:System.ArgumentException">The relation does not belong to the <see cref="T:System.Data.DataRelationCollection"></see> of the <see cref="T:System.Data.DataSet"></see> object.</exception>
+ <exception cref="T:System.Data.InvalidConstraintException">The relation's child <see cref="T:System.Data.DataTable"></see> is not the table this row belongs to.</exception>
+ </member>
+ <member name="P:System.Data.DataRow.Table">
+ <summary>Gets the <see cref="T:System.Data.DataTable"></see> for which this row has a schema.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> to which this row belongs.</returns>
+ </member>
+ <member name="T:System.Data.DataRowAction">
+ <summary>Describes an action performed on a <see cref="T:System.Data.DataRow"></see>.</summary>
+ </member>
+ <member name="F:System.Data.DataRowAction.Add">
+ <summary>The row has been added to the table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.Change">
+ <summary>The row has changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.ChangeCurrentAndOriginal">
+ <summary>The original and the current versions of the row have been changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.ChangeOriginal">
+ <summary>The original version of the row has been changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.Commit">
+ <summary>The changes to the row have been committed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.Delete">
+ <summary>The row was deleted from the table.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.Nothing">
+ <summary>The row has not changed.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.DataRowAction.Rollback">
+ <summary>The most recent change to the row has been rolled back.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.DataRowBuilder">
+ <summary>The DataRowBuilder type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="T:System.Data.DataRowChangeEventArgs">
+ <summary>Provides data for the <see cref="E:System.Data.DataTable.RowChanged"></see>, <see cref="E:System.Data.DataTable.RowChanging"></see>, <see cref="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)"></see>, and <see cref="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)"></see> events.</summary>
+ </member>
+ <member name="M:System.Data.DataRowChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataRowAction)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.DataRowChangeEventArgs"></see> class.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> upon which an action is occuring.</param>
+ <param name="action">One of the <see cref="T:System.Data.DataRowAction"></see> values.</param>
+ </member>
+ <member name="P:System.Data.DataRowChangeEventArgs.Action">
+ <summary>Gets the action that has occurred on a <see cref="T:System.Data.DataRow"></see>.</summary>
+ <returns>One of the <see cref="T:System.Data.DataRowAction"></see> values.</returns>
+ </member>
+ <member name="P:System.Data.DataRowChangeEventArgs.Row">
+ <summary>Gets the row upon which an action has occurred.</summary>
+ <returns>The <see cref="T:System.Data.DataRow"></see> upon which an action has occurred.</returns>
+ </member>
+ <member name="T:System.Data.DataRowChangeEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.RowChanging"></see>, <see cref="E:System.Data.DataTable.RowChanged"></see>, <see cref="E:System.Data.DataTable.RowDeleting"></see>, and <see cref="E:System.Data.DataTable.RowDeleted"></see> events of a <see cref="T:System.Data.DataTable"></see>.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs"></see> that contains the event data.</param>
+ </member>
+ <member name="T:System.Data.DataRowCollection">
+ <summary>Represents a collection of rows for a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Add(System.Data.DataRow)">
+ <summary>Adds the specified <see cref="T:System.Data.DataRow"></see> to the <see cref="T:System.Data.DataRowCollection"></see> object.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> to add.</param>
+ <exception cref="T:System.ArgumentNullException">The row is null.</exception>
+ <exception cref="T:System.ArgumentException">The row either belongs to another table or already belongs to this table.</exception>
+ <exception cref="T:System.Data.ConstraintException">The addition invalidates a constraint.</exception>
+ <exception cref="T:System.Data.NoNullAllowedException">The addition tries to put a null in a <see cref="T:System.Data.DataColumn"></see> where <see cref="P:System.Data.DataColumn.AllowDBNull"></see> is false.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Add(System.Object[])">
+ <summary>Creates a row using specified values and adds it to the <see cref="T:System.Data.DataRowCollection"></see>.</summary>
+ <param name="values">The array of values that are used to create the new row.</param>
+ <returns>None.</returns>
+ <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
+ <exception cref="T:System.InvalidCastException">A value does not match its respective column type.</exception>
+ <exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
+ <exception cref="T:System.Data.NoNullAllowedException">Trying to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull"></see> is false.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Clear">
+ <summary>Clears the collection of all rows.</summary>
+ <exception cref="T:System.Data.InvalidConstraintException">A <see cref="T:System.Data.ForeignKeyConstraint"></see> is enforced on the <see cref="T:System.Data.DataRowCollection"></see>.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Contains(System.Object)">
+ <summary>Gets a value that indicates whether the primary key of any row in the collection contains the specified value.</summary>
+ <param name="key">The value of the primary key to test for.</param>
+ <returns>true if the collection contains a <see cref="T:System.Data.DataRow"></see> with the specified primary key value; otherwise, false.</returns>
+ <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Contains(System.Object[])">
+ <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>
+ <param name="keys">An array of primary key values to test for.</param>
+ <returns>true if the <see cref="T:System.Data.DataRowCollection"></see> contains a <see cref="T:System.Data.DataRow"></see> with the specified key values; otherwise, false.</returns>
+ <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.CopyTo(System.Array,System.Int32)">
+ <summary>Copies all the <see cref="T:System.Data.DataRow"></see> objects from the collection into the given array, starting at the given destination array index.</summary>
+ <param name="ar">The one-dimensional array that is the destination of the elements copied from the DataRowCollection. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in the array at which copying begins.</param>
+ </member>
+ <member name="M:System.Data.DataRowCollection.CopyTo(System.Data.DataRow[],System.Int32)">
+ <summary>Copies all the <see cref="T:System.Data.DataRow"></see> objects from the collection into the given array, starting at the given destination array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the DataRowCollection. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in the array at which copying begins.</param>
+ </member>
+ <member name="P:System.Data.DataRowCollection.Count">
+ <summary>Gets the total number of <see cref="T:System.Data.DataRow"></see> objects in this collection.</summary>
+ <returns>The total number of <see cref="T:System.Data.DataRow"></see> objects in this collection.</returns>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Find(System.Object)">
+ <summary>Gets the row specified by the primary key value.</summary>
+ <param name="key">The primary key value of the <see cref="T:System.Data.DataRow"></see> to find.</param>
+ <returns>A <see cref="T:System.Data.DataRow"></see> 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"></see>.</returns>
+ <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Find(System.Object[])">
+ <summary>Gets the row that contains the specified primary key values.</summary>
+ <param name="keys">An array of primary key values to find. The type of the array is Object.</param>
+ <returns>A <see cref="T:System.Data.DataRow"></see> 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"></see>.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">No row corresponds to that index value.</exception>
+ <exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.GetEnumerator">
+ <summary>Gets an <see cref="T:System.Collections.IEnumerator"></see> for this collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> for this collection.</returns>
+ </member>
+ <member name="M:System.Data.DataRowCollection.IndexOf(System.Data.DataRow)">
+ <summary>Gets the index of the specified <see cref="T:System.Data.DataRow"></see> object.</summary>
+ <param name="row">The DataRow to search for.</param>
+ <returns>The zero-based index of the row, or -1 if the row is not found in the collection.</returns>
+ </member>
+ <member name="M:System.Data.DataRowCollection.InsertAt(System.Data.DataRow,System.Int32)">
+ <summary>Inserts a new row into the collection at the specified location.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> to add.</param>
+ <param name="pos">The (zero-based) location in the collection where you want to add the DataRow.</param>
+ </member>
+ <member name="P:System.Data.DataRowCollection.Item(System.Int32)">
+ <summary>Gets the row at the specified index.</summary>
+ <param name="index">The zero-based index of the row to return.</param>
+ <returns>The specified <see cref="T:System.Data.DataRow"></see>.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
+ </member>
+ <member name="M:System.Data.DataRowCollection.Remove(System.Data.DataRow)">
+ <summary>Removes the specified <see cref="T:System.Data.DataRow"></see> from the collection.</summary>
+ <param name="row">The <see cref="T:System.Data.DataRow"></see> to remove.</param>
+ </member>
+ <member name="M:System.Data.DataRowCollection.RemoveAt(System.Int32)">
+ <summary>Removes the row at the specified index from the collection.</summary>
+ <param name="index">The index of the row to remove.</param>
+ </member>
+ <member name="T:System.Data.Common.DataAdapter">
+ <summary>Represents a set of SQL commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet"></see> and update the data source.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.#ctor">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.#ctor(System.Data.Common.DataAdapter)">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter"></see> class from an existing object of the same type.</summary>
+ <param name="from">A <see cref="T:System.Data.Common.DataAdapter"></see> object used to create the new <see cref="T:System.Data.Common.DataAdapter"></see>.</param>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill">
+ <summary>Gets or sets a value indicating whether <see cref="M:System.Data.DataRow.AcceptChanges"></see> is called on a <see cref="T:System.Data.DataRow"></see> after it is added to the <see cref="T:System.Data.DataTable"></see> during any of the Fill operations.</summary>
+ <returns>true if <see cref="M:System.Data.DataRow.AcceptChanges"></see> is called on the <see cref="T:System.Data.DataRow"></see>; otherwise false. The default is true.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringUpdate">
+ <summary>Gets or sets whether <see cref="M:System.Data.DataRow.AcceptChanges"></see> is called during a <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)"></see>.</summary>
+ <returns>true if <see cref="M:System.Data.DataRow.AcceptChanges"></see> is called during an <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)"></see>; otherwise false. The default is true.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.CloneInternals">
+ <summary>Creates a copy of this instance of <see cref="T:System.Data.Common.DataAdapter"></see>.</summary>
+ <returns>The cloned instance of <see cref="T:System.Data.Common.DataAdapter"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.ContinueUpdateOnError">
+ <summary>Gets or sets a value that specifies whether to generate an exception when an error is encountered during a row update.</summary>
+ <returns>true to continue the update without generating an exception; otherwise false. The default is false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.CreateTableMappings">
+ <summary>Creates a new <see cref="T:System.Data.Common.DataTableMappingCollection"></see>.</summary>
+ <returns>A new table mapping collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DataAdapter"></see> and optionally releases the managed resources.</summary>
+ <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)">
+ <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet"></see> to match those in the data source.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records and, if necessary, schema.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable,System.Data.IDataReader)">
+ <summary>Adds or refreshes rows in the <see cref="T:System.Data.DataTable"></see> to match those in the data source using the <see cref="T:System.Data.DataTable"></see> name and the specified <see cref="T:System.Data.IDataReader"></see>.</summary>
+ <param name="dataTable">A <see cref="T:System.Data.DataTable"></see> to fill with records.</param>
+ <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader"></see>.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable[],System.Data.IDataReader,System.Int32,System.Int32)">
+ <summary>Adds or refreshes rows in a specified range in the collection of <see cref="T:System.Data.DataTable"></see> objects to match those in the data source.</summary>
+ <param name="dataTables">A collection of <see cref="T:System.Data.DataTable"></see> objects to fill with records.</param>
+ <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader"></see>.</param>
+ <param name="startRecord">The zero-based index of the starting record.</param>
+ <param name="maxRecords">An integer indicating the maximum number of records.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet,System.String,System.Data.IDataReader,System.Int32,System.Int32)">
+ <summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet"></see> to match those in the data source using the <see cref="T:System.Data.DataSet"></see> and <see cref="T:System.Data.DataTable"></see> names.</summary>
+ <param name="dataSet">A <see cref="T:System.Data.DataSet"></see> to fill with records.</param>
+ <param name="srcTable">A string indicating the name of the source table.</param>
+ <param name="dataReader">An instance of <see cref="T:System.Data.IDataReader"></see>.</param>
+ <param name="startRecord">The zero-based index of the starting record.</param>
+ <param name="maxRecords">An integer indicating the maximum number of records.</param>
+ <returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet"></see>. This does not include rows affected by statements that do not return rows.</returns>
+ </member>
+ <member name="E:System.Data.Common.DataAdapter.FillError">
+ <summary>Returned when an error occurs during a fill operation.</summary>
+ <returns></returns>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.FillLoadOption">
+ <summary>Gets or sets the <see cref="T:System.Data.LoadOption"></see> that determines how the adapter fills the <see cref="T:System.Data.DataTable"></see> from the <see cref="T:System.Data.Common.DbDataReader"></see>.</summary>
+ <returns>A <see cref="T:System.Data.LoadOption"></see> value.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> to the specified <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataTable"></see> to be filled from the <see cref="T:System.Data.IDataReader"></see>.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <param name="srcTable">The name of the source table to use for table mapping.</param>
+ <param name="dataReader">The <see cref="T:System.Data.IDataReader"></see> to be used as the data source when filling the <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>A reference to a collection of <see cref="T:System.Data.DataTable"></see> objects that were added to the <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> to the specified <see cref="T:System.Data.DataSet"></see> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType"></see>.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> to be filled with the schema from the data source.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> object that contains schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader)">
+ <summary>Adds a <see cref="T:System.Data.DataTable"></see> to the specified <see cref="T:System.Data.DataSet"></see>.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> to be filled from the <see cref="T:System.Data.IDataReader"></see>.</param>
+ <param name="schemaType">One of the <see cref="T:System.Data.SchemaType"></see> values.</param>
+ <param name="dataReader">The <see cref="T:System.Data.IDataReader"></see> to be used as the data source when filling the <see cref="T:System.Data.DataTable"></see>.</param>
+ <returns>A <see cref="T:System.Data.DataTable"></see> object that contains schema information returned from the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.GetFillParameters">
+ <summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
+ <returns>An array of <see cref="T:System.Data.IDataParameter"></see> objects that contains the parameters set by the user.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.HasTableMappings">
+ <summary>Indicates whether a <see cref="T:System.Data.Common.DataTableMappingCollection"></see> has been created.</summary>
+ <returns>true if a <see cref="T:System.Data.Common.DataTableMappingCollection"></see> has been created; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.MissingMappingAction">
+ <summary>Determines the action to take when incoming data does not have a matching table or column.</summary>
+ <returns>One of the <see cref="T:System.Data.MissingMappingAction"></see> values. The default is Passthrough.</returns>
+ <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction"></see> values.</exception>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.MissingSchemaAction">
+ <summary>Determines the action to take when existing <see cref="T:System.Data.DataSet"></see> schema does not match incoming data.</summary>
+ <returns>One of the <see cref="T:System.Data.MissingSchemaAction"></see> values. The default is Add.</returns>
+ <exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.OnFillError(System.Data.FillErrorEventArgs)">
+ <summary>Invoked when an error occurs during a Fill.</summary>
+ <param name="value">A <see cref="T:System.Data.FillErrorEventArgs"></see> object.</param>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.ResetFillLoadOption">
+ <summary>Resets <see cref="P:System.Data.Common.DataAdapter.FillLoadOption"></see> to its default state and causes <see cref="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)"></see> to honor <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill"></see>.</summary>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.ReturnProviderSpecificTypes">
+ <summary>Gets or sets whether the Fill method should return provider-specific values or common CLS-compliant values.</summary>
+ <returns>true if the Fill method should return provider-specific values; otherwise false to return common CLS-compliant values.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.ShouldSerializeAcceptChangesDuringFill">
+ <summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill"></see> property should be persisted.</summary>
+ <returns>true if the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill"></see> property is persisted; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.ShouldSerializeFillLoadOption">
+ <summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption"></see> property should be persisted.</summary>
+ <returns>true if the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption"></see> property is persisted; otherwise false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.ShouldSerializeTableMappings">
+ <summary>Determines whether one or more <see cref="T:System.Data.Common.DataTableMapping"></see> objects exist and they should be persisted.</summary>
+ <returns>true if one or more <see cref="T:System.Data.Common.DataTableMapping"></see> objects exist; otherwise false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.TableMappings">
+ <summary>Gets a collection that provides the master mapping between a source table and a <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet"></see>. The default value is an empty collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)">
+ <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"></see> from a <see cref="T:System.Data.DataTable"></see> named &quot;Table.&quot;</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> used to update the data source.</param>
+ <returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
+ <exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
+ </member>
+ <member name="P:System.Data.Common.DataAdapter.System#Data#IDataAdapter#TableMappings">
+ <summary>Indicates how a source table is mapped to a dataset table.</summary>
+ <returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet"></see>. The default value is an empty collection.</returns>
+ </member>
+ <member name="T:System.Data.Common.DataColumnMapping">
+ <summary>Contains a generic column mapping for an object that inherits from <see cref="T:System.Data.Common.DataAdapter"></see>. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping"></see> class with the specified source column name and <see cref="T:System.Data.DataSet"></see> column name to map to.</summary>
+ <param name="sourceColumn">The case-sensitive column name from a data source.</param>
+ <param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet"></see> to map to.</param>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMapping.DataSetColumn">
+ <summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet"></see> to map to.</summary>
+ <returns>The name of the column within the <see cref="T:System.Data.DataSet"></see> to map to. The name is not case sensitive.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
+ <summary>Gets a <see cref="T:System.Data.DataColumn"></see> from the given <see cref="T:System.Data.DataTable"></see> using the <see cref="T:System.Data.MissingSchemaAction"></see> and the <see cref="P:System.Data.Common.DataColumnMapping.DataSetColumn"></see> property.</summary>
+ <param name="dataTable">The <see cref="T:System.Data.DataTable"></see> to get the column from.</param>
+ <param name="dataType">The <see cref="T:System.Type"></see> of the data column.</param>
+ <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ <returns>A data column.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.String,System.String,System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
+ <summary>A static version of <see cref="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)"></see> that can be called without instantiating a <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</summary>
+ <param name="sourceColumn">The case-sensitive column name from a data source.</param>
+ <param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet"></see> to map to.</param>
+ <param name="dataTable">An instance of <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="dataType">The data type for the column being mapped.</param>
+ <param name="schemaAction">Determines the action to take when existing <see cref="T:System.Data.DataSet"></see> schema does not match incoming data.</param>
+ <returns>A <see cref="T:System.Data.DataColumn"></see> object.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMapping.SourceColumn">
+ <summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
+ <returns>The case-sensitive name of the column in the data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.ToString">
+ <summary>Converts the current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn"></see> name to a string.</summary>
+ <returns>The current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn"></see> name as a string.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMapping.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current instance.</summary>
+ <returns>A copy of the current object.</returns>
+ </member>
+ <member name="T:System.Data.Common.DataColumnMappingCollection">
+ <summary>Contains a collection of <see cref="T:System.Data.Common.DataColumnMapping"></see> objects.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.#ctor">
+ <summary>Creates an empty <see cref="T:System.Data.Common.DataColumnMappingCollection"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.Object)">
+ <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping"></see> object to the collection.</summary>
+ <param name="value">A DataColumnMapping object to add to the collection.</param>
+ <returns>The index of the DataColumnMapping object that was added to the collection.</returns>
+ <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.String,System.String)">
+ <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping"></see> object to the collection when given a source column name and a <see cref="T:System.Data.DataSet"></see> column name.</summary>
+ <param name="sourceColumn">The case-sensitive name of the source column to map to.</param>
+ <param name="dataSetColumn">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet"></see> column to map to.</param>
+ <returns>The DataColumnMapping object that was added to the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Array)">
+ <summary>Copies the elements of the specified <see cref="T:System.Array"></see> to the end of the collection.</summary>
+ <param name="values">The <see cref="T:System.Array"></see> to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Data.Common.DataColumnMapping[])">
+ <summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> array to the end of the collection.</summary>
+ <param name="values">The array of <see cref="T:System.Data.Common.DataColumnMapping"></see> objects to add to the collection.</param>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Clear">
+ <summary>Removes all <see cref="T:System.Data.Common.DataColumnMapping"></see> objects from the collection.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.Object)">
+ <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the given <see cref="T:System.Object"></see> exists in the collection.</summary>
+ <param name="value">An <see cref="T:System.Object"></see> that is the <see cref="T:System.Data.Common.DataColumnMapping"></see>.</param>
+ <returns>true if the collection contains the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> object; otherwise, false.</returns>
+ <exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the given source column name exists in the collection.</summary>
+ <param name="value">The case-sensitive source column name of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</param>
+ <returns>true if collection contains a <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> to the specified array.</summary>
+ <param name="array">An <see cref="T:System.Array"></see> to which to copy <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> elements.</param>
+ <param name="index">The starting index of the array.</param>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Data.Common.DataColumnMapping[],System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> to the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> array.</summary>
+ <param name="array">A <see cref="T:System.Data.Common.DataColumnMapping"></see> array to which to copy the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> elements.</param>
+ <param name="index">The zero-based index in the array at which copying begins.</param>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.Count">
+ <summary>Gets the number of <see cref="T:System.Data.Common.DataColumnMapping"></see> objects in the collection.</summary>
+ <returns>The number of items in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.GetByDataSetColumn(System.String)">
+ <summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified <see cref="T:System.Data.DataSet"></see> column name.</summary>
+ <param name="value">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet"></see> column to find.</param>
+ <returns>The <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified <see cref="T:System.Data.DataSet"></see> column name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection,System.String,System.Data.MissingMappingAction)">
+ <summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping"></see> for the specified <see cref="T:System.Data.Common.DataColumnMappingCollection"></see>, source column name, and <see cref="T:System.Data.MissingMappingAction"></see>.</summary>
+ <param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection"></see>.</param>
+ <param name="sourceColumn">The case-sensitive source column name to find.</param>
+ <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction"></see> values.</param>
+ <returns>A <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction">mappingAction</paramref> parameter was set to Error, and no mapping was specified.</exception>
+ </member>
+ <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)">
+ <summary>A static method that returns a <see cref="T:System.Data.DataColumn"></see> object without instantiating a <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> object.</summary>
+ <param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection"></see>.</param>
+ <param name="sourceColumn">The case-sensitive column name from a data source.</param>
+ <param name="dataType">The data type for the column being mapped.</param>
+ <param name="dataTable">An instance of <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction"></see> values.</param>
+ <param name="schemaAction">Determines the action to take when the existing <see cref="T:System.Data.DataSet"></see> schema does not match incoming data.</param>
+ <returns>A <see cref="T:System.Data.DataColumn"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.GetEnumerator">
+ <summary>Gets an enumerator that can iterate through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.String)">
+ <summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping"></see> with the specified source column name.</summary>
+ <param name="sourceColumn">The case-sensitive name of the source column.</param>
+ <returns>The zero-based location of the <see cref="T:System.Data.Common.DataColumnMapping"></see> with the specified case-sensitive source column name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.Object)">
+ <summary>Gets the location of the specified <see cref="T:System.Object"></see> that is a <see cref="T:System.Data.Common.DataColumnMapping"></see> within the collection.</summary>
+ <param name="value">An <see cref="T:System.Object"></see> that is the <see cref="T:System.Data.Common.DataColumnMapping"></see> to find.</param>
+ <returns>The zero-based location of the specified <see cref="T:System.Object"></see> that is a <see cref="T:System.Data.Common.DataColumnMapping"></see> within the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.IndexOfDataSetColumn(System.String)">
+ <summary>Gets the location of the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> with the given <see cref="T:System.Data.DataSet"></see> column name.</summary>
+ <param name="dataSetColumn">The name, which is not case-sensitive, of the data set column to find.</param>
+ <returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> with the given DataSet column name, or -1 if the DataColumnMapping object does not exist in the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Data.Common.DataColumnMapping)">
+ <summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping"></see> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object to insert.</param>
+ <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</param>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Object)">
+ <summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping"></see> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object to insert.</param>
+ <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</param>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.Int32)">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping"></see> object at the specified index.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object to find.</param>
+ <returns>The <see cref="T:System.Data.Common.DataColumnMapping"></see> object at the specified index.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.String)">
+ <summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name.</summary>
+ <param name="sourceColumn">The case-sensitive name of the source column.</param>
+ <returns>The <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Data.Common.DataColumnMapping)">
+ <summary>Removes the specified <see cref="T:System.Data.Common.DataColumnMapping"></see> from the collection.</summary>
+ <param name="value">The <see cref="T:System.Data.Common.DataColumnMapping"></see> to remove.</param>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Object)">
+ <summary>Removes the <see cref="T:System.Object"></see> that is a <see cref="T:System.Data.Common.DataColumnMapping"></see> from the collection.</summary>
+ <param name="value">The <see cref="T:System.Object"></see> that is the <see cref="T:System.Data.Common.DataColumnMapping"></see> to remove.</param>
+ <exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataColumnMapping"></see> object.</exception>
+ <exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.Int32)">
+ <summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified index from the collection.</summary>
+ <param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping"></see> object to remove.</param>
+ <exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified index.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.String)">
+ <summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name from the collection.</summary>
+ <param name="sourceColumn">The case-sensitive source column name.</param>
+ <exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping"></see> object with the specified source column name.</exception>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsFixedSize">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsReadOnly">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> is read-only; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Add(System.String,System.String)">
+ <summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping"></see> object to the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> by using the source column and <see cref="T:System.Data.DataSet"></see> column names.</summary>
+ <param name="sourceColumnName">The case-sensitive name of the source column.</param>
+ <param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet"></see> column.</param>
+ <returns>The ColumnMapping object that was added to the collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#GetByDataSetColumn(System.String)">
+ <summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping"></see> object that has the specified <see cref="T:System.Data.DataSet"></see> column name.</summary>
+ <param name="dataSetColumnName">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet"></see> column to find.</param>
+ <returns>The <see cref="T:System.Data.Common.DataColumnMapping"></see> object that has the specified <see cref="T:System.Data.DataSet"></see> column name.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Item(System.String)">
+ <summary>Gets or sets the <see cref="T:System.Data.IColumnMapping"></see> object with the specified SourceColumn name.</summary>
+ <param name="index">Index of the element.</param>
+ <returns>The IColumnMapping object with the specified SourceColumn name.</returns>
+ </member>
+ <member name="T:System.Data.Common.DataTableMapping">
+ <summary>Contains a description of a mapped relationship between a source table and a <see cref="T:System.Data.DataTable"></see>. This class is used by a <see cref="T:System.Data.Common.DataAdapter"></see> when populating a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping"></see> class with a source when given a source table name and a <see cref="T:System.Data.DataTable"></see> name.</summary>
+ <param name="sourceTable">The case-sensitive source table name from a data source.</param>
+ <param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet"></see> to map to.</param>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String,System.Data.Common.DataColumnMapping[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping"></see> class when given a source table name, a <see cref="T:System.Data.DataTable"></see> name, and an array of <see cref="T:System.Data.Common.DataColumnMapping"></see> objects.</summary>
+ <param name="sourceTable">The case-sensitive source table name from a data source.</param>
+ <param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet"></see> to map to.</param>
+ <param name="columnMappings">An array of <see cref="T:System.Data.Common.DataColumnMapping"></see> objects.</param>
+ </member>
+ <member name="P:System.Data.Common.DataTableMapping.ColumnMappings">
+ <summary>Gets the <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> for the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A data column mapping collection.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMapping.DataSetTable">
+ <summary>Gets or sets the table name from a <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns>The table name from a <see cref="T:System.Data.DataSet"></see>.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.GetColumnMappingBySchemaAction(System.String,System.Data.MissingMappingAction)">
+ <summary>Gets a <see cref="T:System.Data.DataColumn"></see> from the specified <see cref="T:System.Data.DataTable"></see> using the specified <see cref="T:System.Data.MissingMappingAction"></see> value and the name of the <see cref="T:System.Data.DataColumn"></see>.</summary>
+ <param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn"></see>.</param>
+ <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction"></see> values.</param>
+ <returns>A data column.</returns>
+ <exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction">mappingAction</paramref> parameter was set to Error, and no mapping was specified.</exception>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.GetDataColumn(System.String,System.Type,System.Data.DataTable,System.Data.MissingMappingAction,System.Data.MissingSchemaAction)">
+ <summary>Returns a <see cref="T:System.Data.DataColumn"></see> object for a given column name.</summary>
+ <param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn"></see>.</param>
+ <param name="dataType">The data type for sourceColumn.</param>
+ <param name="dataTable">The table name from a <see cref="T:System.Data.DataSet"></see> to map to.</param>
+ <param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction"></see> values.</param>
+ <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ <returns>A <see cref="T:System.Data.DataColumn"></see> object.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.GetDataTableBySchemaAction(System.Data.DataSet,System.Data.MissingSchemaAction)">
+ <summary>Gets the current <see cref="T:System.Data.DataTable"></see> for the specified <see cref="T:System.Data.DataSet"></see> using the specified <see cref="T:System.Data.MissingSchemaAction"></see> value.</summary>
+ <param name="dataSet">The <see cref="T:System.Data.DataSet"></see> from which to get the <see cref="T:System.Data.DataTable"></see>.</param>
+ <param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction"></see> values.</param>
+ <returns>A data table.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMapping.SourceTable">
+ <summary>Gets or sets the case-sensitive source table name from a data source.</summary>
+ <returns>The case-sensitive source table name from a data source.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.ToString">
+ <summary>Converts the current <see cref="P:System.Data.Common.DataTableMapping.SourceTable"></see> name to a string.</summary>
+ <returns>The current <see cref="P:System.Data.Common.DataTableMapping.SourceTable"></see> name, as a string.</returns>
+ </member>
+ <member name="P:System.Data.Common.DataTableMapping.System#Data#ITableMapping#ColumnMappings">
+ <summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection"></see> for the <see cref="T:System.Data.DataTable"></see>.</summary>
+ <returns>A data column mapping collection.</returns>
+ </member>
+ <member name="M:System.Data.Common.DataTableMapping.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current instance.</summary>
+ <returns>A new object that is a copy of the current instance.</returns>
+ </member>
+ <member name="T:System.Data.LoadOption">
+ <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"></see> or <see cref="Overload:System.Data.DataSet.Load"></see> method.</summary>
+ </member>
+ <member name="F:System.Data.LoadOption.OverwriteChanges">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.LoadOption.PreserveChanges">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.LoadOption.Upsert">
+ <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>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.MappingType">
+ <summary>Specifies how a <see cref="T:System.Data.DataColumn"></see> is mapped.</summary>
+ </member>
+ <member name="F:System.Data.MappingType.Attribute">
+ <summary>The column is mapped to an XML attribute.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MappingType.Element">
+ <summary>The column is mapped to an XML element.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MappingType.Hidden">
+ <summary>The column is mapped to an internal structure.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.MappingType.SimpleContent">
+ <summary>The column is mapped to an <see cref="T:System.Xml.XmlText"></see> node.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.MergeFailedEventArgs">
+ <summary>Occurs when a target and source DataRow have the same primary key value, and the <see cref="P:System.Data.DataSet.EnforceConstraints"></see> property is set to true.</summary>
+ </member>
+ <member name="M:System.Data.MergeFailedEventArgs.#ctor(System.Data.DataTable,System.String)">
+ <summary>Initializes a new instance of a <see cref="T:System.Data.MergeFailedEventArgs"></see> class with the <see cref="T:System.Data.DataTable"></see> and a description of the merge conflict.</summary>
+ <param name="table">The <see cref="T:System.Data.DataTable"></see> object.</param>
+ <param name="conflict">A description of the merge conflict.</param>
+ </member>
+ <member name="P:System.Data.MergeFailedEventArgs.Conflict">
+ <summary>Returns a description of the merge conflict.</summary>
+ <returns>A description of the merge conflict.</returns>
+ </member>
+ <member name="P:System.Data.MergeFailedEventArgs.Table">
+ <summary>Returns the <see cref="T:System.Data.DataTable"></see> object.</summary>
+ <returns>The <see cref="T:System.Data.DataTable"></see> object.</returns>
+ </member>
+ <member name="T:System.Data.MergeFailedEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Data.DataSet.MergeFailed"></see> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">The data for the event.</param>
+ </member>
+ <member name="T:System.Data.RowNotInTableException">
+ <summary>Represents the exception that is thrown when you try to perform an operation on a <see cref="T:System.Data.DataRow"></see> that is not in a <see cref="T:System.Data.DataTable"></see>.</summary>
+ </member>
+ <member name="M:System.Data.RowNotInTableException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException"></see> class.</summary>
+ </member>
+ <member name="M:System.Data.RowNotInTableException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException"></see> class with the specified string.</summary>
+ <param name="s">The string to display when the exception is thrown.</param>
+ </member>
+ <member name="M:System.Data.RowNotInTableException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException"></see> class with serialization information.</summary>
+ <param name="info">The data that is required to serialize or deserialize an object.</param>
+ <param name="context">Description of the source and destination of the specified serialized stream.</param>
+ </member>
+ <member name="M:System.Data.RowNotInTableException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
+ </member>
+ <member name="T:System.Data.Rule">
+ <summary>Indicates the action that occurs when a <see cref="T:System.Data.ForeignKeyConstraint"></see> is enforced.</summary>
+ </member>
+ <member name="F:System.Data.Rule.Cascade">
+ <summary>Delete or update related rows. This is the default.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Rule.None">
+ <summary>No action taken on related rows.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Rule.SetDefault">
+ <summary>Set values in related rows to the value contained in the <see cref="P:System.Data.DataColumn.DefaultValue"></see> property.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.Rule.SetNull">
+ <summary>Set values in related rows to DBNull.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.SchemaSerializationMode">
+ <summary>Indicates the schema serialization mode for a typed <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.SchemaSerializationMode.ExcludeSchema">
+ <summary>Skips schema serialization for a typed <see cref="T:System.Data.DataSet"></see>.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SchemaSerializationMode.IncludeSchema">
+ <summary>Includes schema serialization for a typed <see cref="T:System.Data.DataSet"></see>. The default.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.SchemaType">
+ <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)"></see> operation.</summary>
+ </member>
+ <member name="F:System.Data.SchemaType.Mapped">
+ <summary>Apply any existing table mappings to the incoming schema. Configure the <see cref="T:System.Data.DataSet"></see> with the transformed schema.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SchemaType.Source">
+ <summary>Ignore any table mappings on the DataAdapter. Configure the <see cref="T:System.Data.DataSet"></see> using the incoming schema without applying any transformations.</summary>
+ <returns></returns>
+ </member>
+ <member name="T:System.Data.SerializationFormat">
+ <summary>Determines the serialization format for a <see cref="T:System.Data.DataSet"></see>.</summary>
+ </member>
+ <member name="F:System.Data.SerializationFormat.Binary">
+ <summary>Serialize as binary content. Available in ADO.NET 2.0 only.</summary>
+ <returns></returns>
+ </member>
+ <member name="F:System.Data.SerializationFormat.Xml">
+ <summary>Serialize as XML content. The default.</summary>
+ <returns></returns>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file