netstandard2.0/smo/System.Data.SqlClient.xml

<?xml version="1.0" encoding="utf-8"?><doc>
  <assembly>
    <name>System.Data.SqlClient</name>
  </assembly>
  <members>
    <member name="T:System.Data.SqlClient.ApplicationIntent">
      <summary>Specifies a value for <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.ApplicationIntent"></see>. Possible values are ReadWrite and ReadOnly.</summary>
    </member>
    <member name="F:System.Data.SqlClient.ApplicationIntent.ReadOnly">
      <summary>The application workload type when connecting to a server is read only.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.ApplicationIntent.ReadWrite">
      <summary>The application workload type when connecting to a server is read write.</summary>
      <returns></returns>
    </member>
    <member name="T:System.Data.SqlClient.SortOrder">
      <summary>Specifies how rows of data are sorted.</summary>
    </member>
    <member name="F:System.Data.SqlClient.SortOrder.Ascending">
      <summary>Rows are sorted in ascending order.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SortOrder.Descending">
      <summary>Rows are sorted in descending order.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SortOrder.Unspecified">
      <summary>The default. No sort order is specified.</summary>
      <returns></returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlBulkCopy">
      <summary>Lets you efficiently bulk load a SQL Server table with data from another source.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> class using the specified open instance of <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
      <param name="connection">The already open <see cref="T:System.Data.SqlClient.SqlConnection"></see> instance that will be used to perform the bulk copy operation. If your connection string does not use Integrated Security = true, you can use <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.String)">
      <summary>Initializes and opens a new instance of <see cref="T:System.Data.SqlClient.SqlConnection"></see> based on the supplied <paramref name="connectionString">connectionString</paramref>. The constructor uses the <see cref="T:System.Data.SqlClient.SqlConnection"></see> to initialize a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> class.</summary>
      <param name="connectionString">The string defining the connection that will be opened for use by the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> instance. If your connection string does not use Integrated Security = true, you can use <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection)"></see> or <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlBulkCopyOptions,System.Data.SqlClient.SqlTransaction)"></see> and <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.String,System.Data.SqlClient.SqlBulkCopyOptions)">
      <summary>Initializes and opens a new instance of <see cref="T:System.Data.SqlClient.SqlConnection"></see> based on the supplied <paramref name="connectionString">connectionString</paramref>. The constructor uses that <see cref="T:System.Data.SqlClient.SqlConnection"></see> to initialize a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> class. The <see cref="T:System.Data.SqlClient.SqlConnection"></see> instance behaves according to options supplied in the <paramref name="copyOptions">copyOptions</paramref> parameter.</summary>
      <param name="connectionString">The string defining the connection that will be opened for use by the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> instance. If your connection string does not use Integrated Security = true, you can use <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection)"></see> or <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlBulkCopyOptions,System.Data.SqlClient.SqlTransaction)"></see> and <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
      <param name="copyOptions">A combination of values from the <see cref="T:System.Data.SqlClient.SqlBulkCopyOptions"></see> enumeration that determines which data source rows are copied to the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlBulkCopyOptions,System.Data.SqlClient.SqlTransaction)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> class using the supplied existing open instance of <see cref="T:System.Data.SqlClient.SqlConnection"></see>. The <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> instance behaves according to options supplied in the <paramref name="copyOptions">copyOptions</paramref> parameter. If a non-null <see cref="T:System.Data.SqlClient.SqlTransaction"></see> is supplied, the copy operations will be performed within that transaction.</summary>
      <param name="connection">The already open <see cref="T:System.Data.SqlClient.SqlConnection"></see> instance that will be used to perform the bulk copy. If your connection string does not use Integrated Security = true, you can use <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
      <param name="copyOptions">A combination of values from the <see cref="T:System.Data.SqlClient.SqlBulkCopyOptions"></see> enumeration that determines which data source rows are copied to the destination table.</param>
      <param name="externalTransaction">An existing <see cref="T:System.Data.SqlClient.SqlTransaction"></see> instance under which the bulk copy will occur.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.BatchSize">
      <summary>Number of rows in each batch. At the end of each batch, the rows in the batch are sent to the server.</summary>
      <returns>The integer value of the <see cref="System.Data.SqlClient.SqlBulkCopy.BatchSize"></see> property, or zero if no value has been set.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.BulkCopyTimeout">
      <summary>Number of seconds for the operation to complete before it times out.</summary>
      <returns>The integer value of the <see cref="System.Data.SqlClient.SqlBulkCopy.BulkCopyTimeout"></see> property. The default is 30 seconds. A value of 0 indicates no limit; the bulk copy will wait indefinitely.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.Close">
      <summary>Closes the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> instance.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.ColumnMappings">
      <summary>Returns a collection of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> items. Column mappings define the relationships between columns in the data source and columns in the destination.</summary>
      <returns>A collection of column mappings. By default, it is an empty collection.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName">
      <summary>Name of the destination table on the server.</summary>
      <returns>The string value of the <see cref="System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property, or null if none as been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.EnableStreaming">
      <summary>Enables or disables a <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object to stream data from an <see cref="T:System.Data.IDataReader"></see> object</summary>
      <returns>true if a <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object can stream data from an <see cref="System.Data.IDataReader"></see> object; otherwise, false. The default is false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopy.NotifyAfter">
      <summary>Defines the number of rows to be processed before generating a notification event.</summary>
      <returns>The integer value of the <see cref="System.Data.SqlClient.SqlBulkCopy.NotifyAfter"></see> property, or zero if the property has not been set.</returns>
    </member>
    <member name="E:System.Data.SqlClient.SqlBulkCopy.SqlRowsCopied">
      <summary>Occurs every time that the number of rows specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.NotifyAfter"></see> property have been processed.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)">
      <summary>Copies only rows that match the supplied row state in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
      <param name="rowState">A value from the <see cref="T:System.Data.DataRowState"></see> enumeration. Only rows matching the row state are copied to the destination.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)">
      <summary>Copies all rows in the supplied <see cref="T:System.Data.IDataReader"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="reader">A <see cref="T:System.Data.IDataReader"></see> whose rows will be copied to the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)">
      <summary>Copies all rows in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.Common.DbDataReader)">
      <summary>Copies all rows from the supplied <see cref="T:System.Data.Common.DbDataReader"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="reader">A <see cref="T:System.Data.Common.DbDataReader"></see> whose rows will be copied to the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])">
      <summary>Copies all rows from the supplied <see cref="T:System.Data.DataRow"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="rows">An array of <see cref="T:System.Data.DataRow"></see> objects that will be copied to the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader,System.Threading.CancellationToken)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)"></see>, which copies all rows in the supplied <see cref="T:System.Data.IDataReader"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="reader">A <see cref="T:System.Data.IDataReader"></see> whose rows will be copied to the destination table.</param>
      <param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None"></see> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see>.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 The <see cref="System.Data.IDataReader"></see> was closed before the completed <see cref="System.Threading.Tasks.Task"></see> returned.
 The <see cref="System.Data.IDataReader"></see>&amp;#39;s associated connection was closed before the completed <see cref="System.Threading.Tasks.Task"></see> returned.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.Common.DbDataReader)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.Common.DbDataReader)"></see>, which copies all rows from the supplied <see cref="T:System.Data.Common.DbDataReader"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="reader">A <see cref="T:System.Data.Common.DbDataReader"></see> whose rows will be copied to the destination table.</param>
      <returns>A task representing the asynchronous operation.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])"></see>, which copies all rows from the supplied <see cref="T:System.Data.DataRow"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="rows">An array of <see cref="T:System.Data.DataRow"></see> objects that will be copied to the destination table.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)"></see>, which copies all rows in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)"></see>, which copies all rows in the supplied <see cref="T:System.Data.IDataReader"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="reader">A <see cref="T:System.Data.IDataReader"></see> whose rows will be copied to the destination table.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 The <see cref="System.Data.IDataReader"></see> was closed before the completed <see cref="System.Threading.Tasks.Task"></see> returned.
 The <see cref="System.Data.IDataReader"></see>&amp;#39;s associated connection was closed before the completed <see cref="System.Threading.Tasks.Task"></see> returned.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.Common.DbDataReader,System.Threading.CancellationToken)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.Common.DbDataReader)"></see>, which copies all rows from the supplied <see cref="T:System.Data.Common.DbDataReader"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="reader">A <see cref="T:System.Data.Common.DbDataReader"></see> whose rows will be copied to the destination table.</param>
      <param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None"></see> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.Common.DbDataReader)"></see>.</param>
      <returns>Returns <see cref="System.Threading.Tasks.Task"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[],System.Threading.CancellationToken)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])"></see>, which copies all rows from the supplied <see cref="T:System.Data.DataRow"></see> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="rows">An array of <see cref="T:System.Data.DataRow"></see> objects that will be copied to the destination table.</param>
      <param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None"></see> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see>.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)"></see>, which copies only rows that match the supplied row state in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
      <param name="rowState">A value from the <see cref="T:System.Data.DataRowState"></see> enumeration. Only rows matching the row state are copied to the destination.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Threading.CancellationToken)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)"></see>, which copies all rows in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
      <param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None"></see> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see>.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState,System.Threading.CancellationToken)">
      <summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)"></see>, which copies only rows that match the supplied row state in the supplied <see cref="T:System.Data.DataTable"></see> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName"></see> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> object.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="table">A <see cref="T:System.Data.DataTable"></see> whose rows will be copied to the destination table.</param>
      <param name="rowState">A value from the <see cref="T:System.Data.DataRowState"></see> enumeration. Only rows matching the row state are copied to the destination.</param>
      <param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None"></see> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)"></see>.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> multiple times for the same instance before task completion.
 Calling <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> and <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)"></see> for the same instance before task completion.
 The connection drops or is closed during <see cref="System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)"></see> execution.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlBulkCopy"></see> object was closed during the method execution.
 Returned in the task object, there was a connection pool timeout.
 Returned in the task object, the <see cref="System.Data.SqlClient.SqlConnection"></see> object is closed before method execution.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Returned in the task object, any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopy.System#IDisposable#Dispose">
      <summary>Releases all resources used by the current instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> class.</summary>
    </member>
    <member name="T:System.Data.SqlClient.SqlBulkCopyColumnMapping">
      <summary>Defines the mapping between a column in a <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see> instance&amp;#39;s data source and a column in the instance&amp;#39;s destination table.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMapping.#ctor">
      <summary>Default constructor that initializes a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMapping.#ctor(System.Int32,System.Int32)">
      <summary>Creates a new column mapping, using column ordinals to refer to source and destination columns.</summary>
      <param name="sourceColumnOrdinal">The ordinal position of the source column within the data source.</param>
      <param name="destinationOrdinal">The ordinal position of the destination column within the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMapping.#ctor(System.Int32,System.String)">
      <summary>Creates a new column mapping, using a column ordinal to refer to the source column and a column name for the target column.</summary>
      <param name="sourceColumnOrdinal">The ordinal position of the source column within the data source.</param>
      <param name="destinationColumn">The name of the destination column within the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMapping.#ctor(System.String,System.Int32)">
      <summary>Creates a new column mapping, using a column name to refer to the source column and a column ordinal for the target column.</summary>
      <param name="sourceColumn">The name of the source column within the data source.</param>
      <param name="destinationOrdinal">The ordinal position of the destination column within the destination table.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMapping.#ctor(System.String,System.String)">
      <summary>Creates a new column mapping, using column names to refer to source and destination columns.</summary>
      <param name="sourceColumn">The name of the source column within the data source.</param>
      <param name="destinationColumn">The name of the destination column within the destination table.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationColumn">
      <summary>Name of the column being mapped in the destination database table.</summary>
      <returns>The string value of the <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationColumn"></see> property.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationOrdinal">
      <summary>Ordinal value of the destination column within the destination table.</summary>
      <returns>The integer value of the <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationOrdinal"></see> property, or -1 if the property has not been set.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceColumn">
      <summary>Name of the column being mapped in the data source.</summary>
      <returns>The string value of the <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceColumn"></see> property.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceOrdinal">
      <summary>The ordinal position of the source column within the data source.</summary>
      <returns>The integer value of the <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceOrdinal"></see> property.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection">
      <summary>Collection of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> objects that inherits from <see cref="T:System.Collections.CollectionBase"></see>.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Add(System.Data.SqlClient.SqlBulkCopyColumnMapping)">
      <summary>Adds the specified mapping to the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection"></see>.</summary>
      <param name="bulkCopyColumnMapping">The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object that describes the mapping to be added to the collection.</param>
      <returns>A <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Add(System.Int32,System.Int32)">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> and adds it to the collection, using ordinals to specify both source and destination columns.</summary>
      <param name="sourceColumnIndex">The ordinal position of the source column within the data source.</param>
      <param name="destinationColumnIndex">The ordinal position of the destination column within the destination table.</param>
      <returns>A column mapping.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Add(System.Int32,System.String)">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> and adds it to the collection, using an ordinal for the source column and a string for the destination column.</summary>
      <param name="sourceColumnIndex">The ordinal position of the source column within the data source.</param>
      <param name="destinationColumn">The name of the destination column within the destination table.</param>
      <returns>A column mapping.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Add(System.String,System.Int32)">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> and adds it to the collection, using a column name to describe the source column and an ordinal to specify the destination column.</summary>
      <param name="sourceColumn">The name of the source column within the data source.</param>
      <param name="destinationColumnIndex">The ordinal position of the destination column within the destination table.</param>
      <returns>A column mapping.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Add(System.String,System.String)">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> and adds it to the collection, using column names to specify both source and destination columns.</summary>
      <param name="sourceColumn">The name of the source column within the data source.</param>
      <param name="destinationColumn">The name of the destination column within the destination table.</param>
      <returns>A column mapping.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Clear">
      <summary>Clears the contents of the collection.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Contains(System.Data.SqlClient.SqlBulkCopyColumnMapping)">
      <summary>Gets a value indicating whether a specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object exists in the collection.</summary>
      <param name="value">A valid <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object.</param>
      <returns>true if the specified mapping exists in the collection; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.CopyTo(System.Data.SqlClient.SqlBulkCopyColumnMapping[],System.Int32)">
      <summary>Copies the elements of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection"></see> to an array of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> items, starting at a particular index.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> array that is the destination of the elements copied from <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection"></see>. The array 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.SqlClient.SqlBulkCopyColumnMappingCollection.Count">
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.GetEnumerator">
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.IndexOf(System.Data.SqlClient.SqlBulkCopyColumnMapping)">
      <summary>Gets the index of the specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object.</summary>
      <param name="value">The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object for which to search.</param>
      <returns>The zero-based index of the column mapping, or -1 if the column mapping is not found in the collection.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Insert(System.Int32,System.Data.SqlClient.SqlBulkCopyColumnMapping)">
      <summary>Insert a new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> at the index specified.</summary>
      <param name="index">Integer value of the location within the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection"></see> at which to insert the new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see>.</param>
      <param name="value"><see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object to be inserted in the collection.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> to find.</param>
      <returns>A <see cref="System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.Remove(System.Data.SqlClient.SqlBulkCopyColumnMapping)">
      <summary>Removes the specified <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> element from the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection"></see>.</summary>
      <param name="value"><see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object to be removed from the collection.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.RemoveAt(System.Int32)">
      <summary>Removes the mapping at the specified index from the collection.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping"></see> object to be removed from the collection.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <param name="array"></param>
      <param name="index"></param>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#ICollection#IsSynchronized">
      <returns></returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#ICollection#SyncRoot">
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#Add(System.Object)">
      <param name="value"></param>
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#Contains(System.Object)">
      <param name="value"></param>
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#IndexOf(System.Object)">
      <param name="value"></param>
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <param name="index"></param>
      <param name="value"></param>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#IsFixedSize">
      <returns></returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#IsReadOnly">
      <returns></returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#Item(System.Int32)">
      <param name="index"></param>
      <returns></returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection.System#Collections#IList#Remove(System.Object)">
      <param name="value"></param>
    </member>
    <member name="T:System.Data.SqlClient.SqlBulkCopyOptions">
      <summary>Bitwise flag that specifies one or more options to use with an instance of <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see>.</summary>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.CheckConstraints">
      <summary>Check constraints while data is being inserted. By default, constraints are not checked.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.Default">
      <summary>Use the default values for all options.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.FireTriggers">
      <summary>When specified, cause the server to fire the insert triggers for the rows being inserted into the database.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.KeepIdentity">
      <summary>Preserve source identity values. When not specified, identity values are assigned by the destination.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.KeepNulls">
      <summary>Preserve null values in the destination table regardless of the settings for default values. When not specified, null values are replaced by default values where applicable.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.TableLock">
      <summary>Obtain a bulk update lock for the duration of the bulk copy operation. When not specified, row locks are used.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlBulkCopyOptions.UseInternalTransaction">
      <summary>When specified, each batch of the bulk-copy operation will occur within a transaction. If you indicate this option and also provide a <see cref="T:System.Data.SqlClient.SqlTransaction"></see> object to the constructor, an <see cref="T:System.ArgumentException"></see> occurs.</summary>
      <returns></returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlClientFactory">
      <summary>Represents a set of methods for creating instances of the <see cref="N:System.Data.SqlClient"></see> provider&amp;#39;s implementation of the data source classes.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlClientFactory.CreateCommand">
      <summary>Returns a strongly typed <see cref="T:System.Data.Common.DbCommand"></see> instance.</summary>
      <returns>A new strongly typed instance of <see cref="System.Data.Common.DbCommand"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlClientFactory.CreateConnection">
      <summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnection"></see> instance.</summary>
      <returns>A new strongly typed instance of <see cref="System.Data.Common.DbConnection"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlClientFactory.CreateConnectionStringBuilder">
      <summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnectionStringBuilder"></see> instance.</summary>
      <returns>A new strongly typed instance of <see cref="System.Data.Common.DbConnectionStringBuilder"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlClientFactory.CreateDataAdapter">
      <summary>Returns a strongly typed <see cref="T:System.Data.Common.DbDataAdapter"></see> instance.</summary>
      <returns>A new strongly typed instance of <see cref="System.Data.Common.DbDataAdapter"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlClientFactory.CreateParameter">
      <summary>Returns a strongly typed <see cref="T:System.Data.Common.DbParameter"></see> instance.</summary>
      <returns>A new strongly typed instance of <see cref="System.Data.Common.DbParameter"></see>.</returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientFactory.Instance">
      <summary>Gets an instance of the <see cref="T:System.Data.SqlClient.SqlClientFactory"></see>. This can be used to retrieve strongly typed data objects.</summary>
      <returns></returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlClientMetaDataCollectionNames">
      <summary>Provides a list of constants for use with the GetSchema method to retrieve metadata collections.</summary>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Columns">
      <summary>A constant for use with the GetSchema method that represents the Columns collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Databases">
      <summary>A constant for use with the GetSchema method that represents the Databases collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ForeignKeys">
      <summary>A constant for use with the GetSchema method that represents the ForeignKeys collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.IndexColumns">
      <summary>A constant for use with the GetSchema method that represents the IndexColumns collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Indexes">
      <summary>A constant for use with the GetSchema method that represents the Indexes collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Parameters">
      <summary>A constant for use with the GetSchema method that represents the Parameters collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ProcedureColumns">
      <summary>A constant for use with the GetSchema method that represents the ProcedureColumns collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Procedures">
      <summary>A constant for use with the GetSchema method that represents the Procedures collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Tables">
      <summary>A constant for use with the GetSchema method that represents the Tables collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.UserDefinedTypes">
      <summary>A constant for use with the GetSchema method that represents the UserDefinedTypes collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Users">
      <summary>A constant for use with the GetSchema method that represents the Users collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ViewColumns">
      <summary>A constant for use with the GetSchema method that represents the ViewColumns collection.</summary>
      <returns></returns>
    </member>
    <member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Views">
      <summary>A constant for use with the GetSchema method that represents the Views collection.</summary>
      <returns></returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlCommand">
      <summary>Represents a Transact-SQL statement or stored procedure to execute against a SQL Server database. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query.</summary>
      <param name="cmdText">The text of the query.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query and a <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
      <param name="cmdText">The text of the query.</param>
      <param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection to an instance of SQL Server.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlTransaction)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query, a <see cref="T:System.Data.SqlClient.SqlConnection"></see>, and the <see cref="T:System.Data.SqlClient.SqlTransaction"></see>.</summary>
      <param name="cmdText">The text of the query.</param>
      <param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection to an instance of SQL Server.</param>
      <param name="transaction">The <see cref="T:System.Data.SqlClient.SqlTransaction"></see> in which the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executes.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.Cancel">
      <summary>Tries to cancel the execution of a <see cref="T:System.Data.SqlClient.SqlCommand"></see>.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.Clone">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlCommand"></see> object that is a copy of the current instance.</summary>
      <returns>A new <see cref="System.Data.SqlClient.SqlCommand"></see> object that is a copy of this instance.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.CommandText">
      <summary>Gets or sets the Transact-SQL statement, table name or stored procedure to execute at the data source.</summary>
      <returns>The Transact-SQL statement or stored procedure to execute. The default is an empty string.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.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 is 30 seconds.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.CommandType">
      <summary>Gets or sets a value indicating how the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> property is to be interpreted.</summary>
      <returns>One of the <see cref="System.Data.CommandType"></see> values. The default is Text.</returns>
      <exception cref="T:System.ArgumentException">The value was not a valid <see cref="System.Data.CommandType"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.Connection">
      <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlConnection"></see> used by this instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see>.</summary>
      <returns>The connection to a data source. The default value is null.</returns>
      <exception cref="T:System.InvalidOperationException">The <see cref="System.Data.SqlClient.SqlCommand.Connection"></see> property was changed while the command was enlisted in a transaction..</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.CreateParameter">
      <summary>Creates a new instance of a <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.DesignTimeVisible">
      <summary>Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control.</summary>
      <returns>A value indicating whether the command object should be visible in a control. The default is true.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery">
      <summary>Executes a Transact-SQL statement against the connection and returns the number of rows affected.</summary>
      <returns>The number of rows affected.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery"></see>, which executes a Transact-SQL statement against the connection and returns the number of rows affected. The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReader">
      <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlDataReader"></see> object.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.InvalidOperationException">The current state of the connection is closed. <see cref="System.Data.SqlClient.SqlCommand.ExecuteReader"></see> requires an open <see cref="System.Data.SqlClient.SqlConnection"></see>.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReader(System.Data.CommandBehavior)">
      <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see>, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></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>A <see cref="System.Data.SqlClient.SqlDataReader"></see> object.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReader"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>. Exceptions will be reported via the returned Task object.</summary>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.ArgumentException">An invalid <see cref="System.Data.CommandBehavior"></see> value.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteReaderAsync"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReader(System.Data.CommandBehavior)"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see>, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>. Exceptions will be reported via the returned Task object.</summary>
      <param name="behavior">Options for statement execution and data retrieval. When is set to Default, <see cref="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)"></see> reads the entire row before returning a complete Task.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.ArgumentException">An invalid <see cref="System.Data.CommandBehavior"></see> value.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReader"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.ArgumentException">An invalid <see cref="System.Data.CommandBehavior"></see> value.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReader(System.Data.CommandBehavior)"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see>, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="behavior">Options for statement execution and data retrieval. When is set to Default, <see cref="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)"></see> reads the entire row before returning a complete Task.</param>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.ArgumentException">An invalid <see cref="System.Data.CommandBehavior"></see> value.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteScalar">
      <summary>Executes the query, and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.</summary>
      <returns>The first column of the first row in the result set, or a null reference (Nothing in Visual Basic) if the result set is empty. Returns a maximum of 2033 characters.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteScalar"></see>, which executes the query asynchronously and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReader">
      <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds an <see cref="T:System.Xml.XmlReader"></see> object.</summary>
      <returns>An <see cref="System.Xml.XmlReader"></see> object.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReaderAsync">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReader"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds an <see cref="T:System.Xml.XmlReader"></see> object.
 Exceptions will be reported via the returned Task object.</summary>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReaderAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReader"></see>, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds an <see cref="T:System.Xml.XmlReader"></see> object.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidCastException">A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Binary or VarBinary was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.Stream"></see>. For more information about streaming, see SqlClient Streaming Support.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.IO.TextReader"></see>.
 A <see cref="System.Data.SqlClient.SqlParameter.SqlDbType"></see> other than Xml was used when <see cref="System.Data.SqlClient.SqlParameter.Value"></see> was set to <see cref="System.Xml.XmlReader"></see>.</exception>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 The <see cref="System.Data.SqlClient.SqlConnection"></see> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.
 A timeout occurred during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.IO.IOException">An error occurred in a <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
      <exception cref="T:System.ObjectDisposedException">The <see cref="System.IO.Stream"></see>, <see cref="System.Xml.XmlReader"></see> or <see cref="System.IO.TextReader"></see> object was closed during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.Parameters">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <returns>The parameters of the Transact-SQL statement or stored procedure. The default is an empty collection.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.Prepare">
      <summary>Creates a prepared version of the command on an instance of SQL Server.</summary>
    </member>
    <member name="E:System.Data.SqlClient.SqlCommand.StatementCompleted">
      <summary>Occurs when the execution of a Transact-SQL statement completes.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.Transaction">
      <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlTransaction"></see> within which the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executes.</summary>
      <returns>The <see cref="System.Data.SqlClient.SqlTransaction"></see>. The default value is null.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlCommand.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 the <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
      <returns>One of the <see cref="System.Data.UpdateRowSource"></see> values.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlCommand.System#ICloneable#Clone">
      <summary>Creates a new <see cref="T:System.Data.SqlClient.SqlCommand"></see> object that is a copy of the current instance.</summary>
      <returns>A new <see cref="System.Data.SqlClient.SqlCommand"></see> object that is a copy of this instance.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlConnection">
      <summary>Represents a connection to a SQL Server database. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnection"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnection"></see> class when given a string that contains the connection string.</summary>
      <param name="connectionString">The connection used to open the SQL Server database.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction">
      <summary>Starts a database transaction.</summary>
      <returns>An object representing the new transaction.</returns>
      <exception cref="T:System.Data.SqlClient.SqlException">Parallel transactions are not allowed when using Multiple Active Result Sets (MARS).</exception>
      <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.Data.IsolationLevel)">
      <summary>Starts a database transaction with the specified isolation level.</summary>
      <param name="iso">The isolation level under which the transaction should run.</param>
      <returns>An object representing the new transaction.</returns>
      <exception cref="T:System.Data.SqlClient.SqlException">Parallel transactions are not allowed when using Multiple Active Result Sets (MARS).</exception>
      <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.String)">
      <summary>Starts a database transaction with the specified transaction name.</summary>
      <param name="transactionName">The name of the transaction.</param>
      <returns>An object representing the new transaction.</returns>
      <exception cref="T:System.Data.SqlClient.SqlException">Parallel transactions are not allowed when using Multiple Active Result Sets (MARS).</exception>
      <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.Data.IsolationLevel,System.String)">
      <summary>Starts a database transaction with the specified isolation level and transaction name.</summary>
      <param name="iso">The isolation level under which the transaction should run.</param>
      <param name="transactionName">The name of the transaction.</param>
      <returns>An object representing the new transaction.</returns>
      <exception cref="T:System.Data.SqlClient.SqlException">Parallel transactions are not allowed when using Multiple Active Result Sets (MARS).</exception>
      <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.ChangeDatabase(System.String)">
      <summary>Changes the current database for an open <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
      <param name="database">The name of the database to use instead of the current database.</param>
      <exception cref="T:System.ArgumentException">The database name is not valid.</exception>
      <exception cref="T:System.InvalidOperationException">The connection is not open.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Cannot change the database.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.ClearAllPools">
      <summary>Empties the connection pool.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.ClearPool(System.Data.SqlClient.SqlConnection)">
      <summary>Empties the connection pool associated with the specified connection.</summary>
      <param name="connection">The <see cref="T:System.Data.SqlClient.SqlConnection"></see> to be cleared from the pool.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.ClientConnectionId">
      <summary>The connection ID of the most recent connection attempt, regardless of whether the attempt succeeded or failed.</summary>
      <returns>The connection ID of the most recent connection attempt.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.Close">
      <summary>Closes the connection to the database. This is the preferred method of closing any open connection.</summary>
      <exception cref="T:System.Data.SqlClient.SqlException">The connection-level error that occurred while opening the connection.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.ConnectionString">
      <summary>Gets or sets the string used to open a SQL Server database.</summary>
      <returns>The connection string that includes the source database name, and other parameters needed to establish the initial connection. The default value is an empty string.</returns>
      <exception cref="T:System.ArgumentException">An invalid connection string argument has been supplied, or a required connection string argument has not been supplied.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.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>
      <exception cref="T:System.ArgumentException">The value set is less than 0.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.CreateCommand">
      <summary>Creates and returns a <see cref="T:System.Data.SqlClient.SqlCommand"></see> object associated with the <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlCommand"></see> object.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.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 after a connection is opened. The default value is an empty string.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.DataSource">
      <summary>Gets the name of the instance of SQL Server to which to connect.</summary>
      <returns>The name of the instance of SQL Server to which to connect. The default value is an empty string.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors">
      <summary>Gets or sets the <see cref="P:System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors"></see> property.</summary>
      <returns>true if the <see cref="System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors"></see> property has been set; otherwise false.</returns>
    </member>
    <member name="E:System.Data.SqlClient.SqlConnection.InfoMessage">
      <summary>Occurs when SQL Server returns a warning or informational message.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.Open">
      <summary>Opens a database connection with the property settings specified by the <see cref="P:System.Data.SqlClient.SqlConnection.ConnectionString"></see>.</summary>
      <exception cref="T:System.InvalidOperationException">Cannot open a connection without specifying a data source or server.
 or
 The connection is already open.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">A connection-level error occurred while opening the connection. If the <see cref="System.Data.SqlClient.SqlException.Number"></see> property contains the value 18487 or 18488, this indicates that the specified password has expired or must be reset. See the <see cref="System.Data.SqlClient.SqlConnection.ChangePassword(System.String,System.String)"></see> method for more information.
 The &amp;lt;system.data.localdb&amp;gt; tag in the app.config file has invalid or unknown elements.</exception>
      <exception cref="T:System.Configuration.ConfigurationErrorsException">There are two entries with the same name in the &amp;lt;localdbinstances&amp;gt; section.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.OpenAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlConnection.Open"></see>, which opens a database connection with the property settings specified by the <see cref="P:System.Data.SqlClient.SqlConnection.ConnectionString"></see>. The cancellation token can be used to request that the operation be abandoned before the connection timeout elapses. Exceptions will be propagated via the returned Task. If the connection timeout time elapses without successfully connecting, the returned Task will be marked as faulted with an Exception. The implementation returns a Task without blocking the calling thread for both pooled and non-pooled connections.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlConnection.OpenAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 Context Connection=true is specified in the connection string.
 A connection was not available from the connection pool before the connection time out elapsed.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">Any error returned by SQL Server that occurred while opening the connection.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.PacketSize">
      <summary>Gets the size (in bytes) of network packets used to communicate with an instance of SQL Server.</summary>
      <returns>The size (in bytes) of network packets. The default value is 8000.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.ResetStatistics">
      <summary>If statistics gathering is enabled, all values are reset to zero.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.RetrieveStatistics">
      <summary>Returns a name value pair collection of statistics at the point in time the method is called.</summary>
      <returns>Returns a reference of type <see cref="System.Collections.IDictionary"></see> of <see cref="System.Collections.DictionaryEntry"></see> items.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.ServerVersion">
      <summary>Gets a string that contains the version of the instance of SQL Server to which the client is connected.</summary>
      <returns>The version of the instance of SQL Server.</returns>
      <exception cref="T:System.InvalidOperationException">The connection is closed.
 <see cref="System.Data.SqlClient.SqlConnection.ServerVersion"></see> was called while the returned Task was not completed and the connection was not opened after a call to <see cref="System.Data.SqlClient.SqlConnection.OpenAsync(System.Threading.CancellationToken)"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.State">
      <summary>Indicates the state of the <see cref="T:System.Data.SqlClient.SqlConnection"></see> during the most recent network operation performed on the connection.</summary>
      <returns>An <see cref="System.Data.ConnectionState"></see> enumeration.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.StatisticsEnabled">
      <summary>When set to true, enables statistics gathering for the current connection.</summary>
      <returns>Returns true if statistics gathering is enabled; otherwise false. false is the default.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnection.WorkstationId">
      <summary>Gets a string that identifies the database client.</summary>
      <returns>A string that identifies the database client. If not specified, the name of the client computer. If neither is specified, the value is an empty string.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnection.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.SqlClient.SqlConnectionStringBuilder">
      <summary>Provides a simple way to create and manage the contents of connection strings used by the <see cref="T:System.Data.SqlClient.SqlConnection"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see> class. The provided connection string provides the data for the instance&amp;#39;s internal connection information.</summary>
      <param name="connectionString">The basis for the object&amp;#39;s internal connection information. Parsed into name/value pairs. Invalid key names raise <see cref="T:System.Collections.Generic.KeyNotFoundException"></see>.</param>
      <exception cref="T:System.Collections.Generic.KeyNotFoundException">Invalid key name within the connection string.</exception>
      <exception cref="T:System.FormatException">Invalid value within the connection string (specifically, when a Boolean or numeric value was expected but not supplied).</exception>
      <exception cref="T:System.ArgumentException">The supplied <paramref name="connectionString">connectionString</paramref> is not valid.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ApplicationIntent">
      <summary>Declares the application workload type when connecting to a database in an SQL Server Availability Group. You can set the value of this property with <see cref="T:System.Data.SqlClient.ApplicationIntent"></see>. For more information about SqlClient support for Always On Availability Groups, see SqlClient Support for High Availability, Disaster Recovery.</summary>
      <returns>Returns the current value of the property (a value of type <see cref="System.Data.SqlClient.ApplicationIntent"></see>).</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ApplicationName">
      <summary>Gets or sets the name of the application associated with the connection string.</summary>
      <returns>The name of the application, or &amp;quot;.NET SqlClient Data Provider&amp;quot; if no name has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.AttachDBFilename">
      <summary>Gets or sets a string that contains the name of the primary data file. This includes the full path name of an attachable database.</summary>
      <returns>The value of the AttachDBFilename property, or String.Empty if no value has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.Clear">
      <summary>Clears the contents of the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see> instance.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectRetryCount">
      <summary>[Supported in the .NET Framework 4.5.1 and later versions]
 The number of reconnections attempted after identifying that there was an idle connection failure. This must be an integer between 0 and 255. Default is 1. Set to 0 to disable reconnecting on idle connection failures. An <see cref="T:System.ArgumentException"></see> will be thrown if set to a value outside of the allowed range.</summary>
      <returns>The number of reconnections attempted after identifying that there was an idle connection failure.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectRetryInterval">
      <summary>[Supported in the .NET Framework 4.5.1 and later versions]
 Amount of time (in seconds) between each reconnection attempt after identifying that there was an idle connection failure. This must be an integer between 1 and 60. The default is 10 seconds. An <see cref="T:System.ArgumentException"></see> will be thrown if set to a value outside of the allowed range.</summary>
      <returns>Amount of time (in seconds) between each reconnection attempt after identifying that there was an idle connection failure.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectTimeout">
      <summary>Gets or sets the length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.ConnectTimeout"></see> property, or 15 seconds if no value has been supplied.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.ContainsKey(System.String)">
      <summary>Determines whether the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see> contains a specific key.</summary>
      <param name="keyword">The key to locate in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</param>
      <returns>true if the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder"></see> contains an element that has the specified key; otherwise, false.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is null (Nothing in Visual Basic)</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.CurrentLanguage">
      <summary>Gets or sets the SQL Server Language record name.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.CurrentLanguage"></see> property, or String.Empty if no value has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.DataSource">
      <summary>Gets or sets the name or network address of the instance of SQL Server to connect to.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.DataSource"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Encrypt">
      <summary>Gets or sets a Boolean value that indicates whether SQL Server uses SSL encryption for all data sent between the client and server if the server has a certificate installed.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.Encrypt"></see> property, or false if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.FailoverPartner">
      <summary>Gets or sets the name or address of the partner server to connect to if the primary server is down.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.FailoverPartner"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.InitialCatalog">
      <summary>Gets or sets the name of the database associated with the connection.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.InitialCatalog"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.IntegratedSecurity">
      <summary>Gets or sets a Boolean value that indicates whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true).</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.IntegratedSecurity"></see> property, or false if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Item(System.String)">
      <summary>Gets or sets the value associated with the specified key. In C#, this property is the indexer.</summary>
      <param name="keyword">The key of the item to get or set.</param>
      <returns>The value associated with the specified key.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="keyword">keyword</paramref> is a null reference (Nothing in Visual Basic).</exception>
      <exception cref="T:System.Collections.Generic.KeyNotFoundException">Tried to add a key that does not exist within the available keys.</exception>
      <exception cref="T:System.FormatException">Invalid value within the connection string (specifically, a Boolean or numeric value was expected but not supplied).</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Keys">
      <summary>Gets an <see cref="T:System.Collections.ICollection"></see> that contains the keys in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</summary>
      <returns>An <see cref="System.Collections.ICollection"></see> that contains the keys in the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.LoadBalanceTimeout">
      <summary>Gets or sets the minimum time, in seconds, for the connection to live in the connection pool before being destroyed.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.LoadBalanceTimeout"></see> property, or 0 if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.MaxPoolSize">
      <summary>Gets or sets the maximum number of connections allowed in the connection pool for this specific connection string.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.MaxPoolSize"></see> property, or 100 if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.MinPoolSize">
      <summary>Gets or sets the minimum number of connections allowed in the connection pool for this specific connection string.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.MinPoolSize"></see> property, or 0 if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.MultipleActiveResultSets">
      <summary>When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection.
 For more information, see Multiple Active Result Sets (MARS).</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.MultipleActiveResultSets"></see> property, or false if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.MultiSubnetFailover">
      <summary>If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server. For more information about SqlClient support for Always On Availability Groups, see SqlClient Support for High Availability, Disaster Recovery.</summary>
      <returns>Returns <see cref="System.Boolean"></see> indicating the current value of the property.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.PacketSize">
      <summary>Gets or sets the size in bytes of the network packets used to communicate with an instance of SQL Server.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.PacketSize"></see> property, or 8000 if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Password">
      <summary>Gets or sets the password for the SQL Server account.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.Password"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">The password was incorrectly set to null. See code sample below.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.PersistSecurityInfo">
      <summary>Gets or sets a Boolean value that indicates if security-sensitive information, such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.PersistSecurityInfo"></see> property, or false if none has been supplied.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Pooling">
      <summary>Gets or sets a Boolean value that indicates whether the connection will be pooled or explicitly opened every time that the connection is requested.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.Pooling"></see> property, or true if none has been supplied.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.Remove(System.String)">
      <summary>Removes the entry with the specified key from the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></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.SqlClient.SqlConnectionStringBuilder"></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>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Replication">
      <summary>Gets or sets a Boolean value that indicates whether replication is supported using the connection.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.Replication"></see> property, or false if none has been supplied.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.ShouldSerialize(System.String)">
      <summary>Indicates whether the specified key exists in this <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see> instance.</summary>
      <param name="keyword">The key to locate in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</param>
      <returns>true if the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder"></see> contains an entry with the specified key; otherwise, false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.TrustServerCertificate">
      <summary>Gets or sets a value that indicates whether the channel will be encrypted while bypassing walking the certificate chain to validate trust.</summary>
      <returns>A Boolean. Recognized values are true, false, yes, and no.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
      <summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</summary>
      <param name="keyword">The key of the item to retrieve.</param>
      <param name="value">The value corresponding to keyword.</param>
      <returns>true if <paramref name="keyword">keyword</paramref> was found within the connection string; otherwise, false.</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.SqlClient.SqlConnectionStringBuilder.TypeSystemVersion">
      <summary>Gets or sets a string value that indicates the type system the application expects.</summary>
      <returns>The following table shows the possible values for the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.TypeSystemVersion"></see> property:
  Value
 
  Description
 
  [!INCLUDE[ssNoVersion](~/includes/ssnoversion-md.md)] 2005
 
  Uses the [!INCLUDE[ssNoVersion](~/includes/ssnoversion-md.md)] 2005 type system. No conversions are made for the current version of ADO.NET.
 
  SQL Server 2008
 
  Uses the SQL Server 2008 type system.
 
  Latest
 
  Use the latest version than this client-server pair can handle. This will automatically move forward as the client and server components are upgraded.
 
 </returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.UserID">
      <summary>Gets or sets the user ID to be used when connecting to SQL Server.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.UserID"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.UserInstance">
      <summary>Gets or sets a value that indicates whether to redirect the connection from the default SQL Server Express instance to a runtime-initiated instance running under the account of the caller.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.UserInstance"></see> property, or False if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Values">
      <summary>Gets an <see cref="T:System.Collections.ICollection"></see> that contains the values in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</summary>
      <returns>An <see cref="System.Collections.ICollection"></see> that contains the values in the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.WorkstationID">
      <summary>Gets or sets the name of the workstation connecting to SQL Server.</summary>
      <returns>The value of the <see cref="System.Data.SqlClient.SqlConnectionStringBuilder.WorkstationID"></see> property, or String.Empty if none has been supplied.</returns>
      <exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="System.DBNull.Value"></see>.</exception>
    </member>
    <member name="T:System.Data.SqlClient.SqlDataAdapter">
      <summary>Represents a set of data commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet"></see> and update a SQL Server database. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.Data.SqlClient.SqlCommand)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with the specified <see cref="T:System.Data.SqlClient.SqlCommand"></see> as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property.</summary>
      <param name="selectCommand">A <see cref="T:System.Data.SqlClient.SqlCommand"></see> that is a Transact-SQL SELECT statement or stored procedure and is set as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.Data.SqlClient.SqlConnection)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> and a <see cref="T:System.Data.SqlClient.SqlConnection"></see> object.</summary>
      <param name="selectCommandText">A <see cref="T:System.String"></see> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</param>
      <param name="selectConnection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection. If your connection string does not use Integrated Security = true, you can use <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> and a connection string.</summary>
      <param name="selectCommandText">A <see cref="T:System.String"></see> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</param>
      <param name="selectConnectionString">The connection string. If your connection string does not use Integrated Security = true, you can use <see cref="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.Data.SqlClient.SqlConnection)"></see> and <see cref="T:System.Data.SqlClient.SqlCredential"></see> to pass the user ID and password more securely than by specifying the user ID and password as text in the connection string.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.DeleteCommand">
      <summary>Gets or sets a Transact-SQL statement or stored procedure to delete records from the data set.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlCommand"></see> used during <see cref="System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the database that correspond to deleted rows in the <see cref="System.Data.DataSet"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.InsertCommand">
      <summary>Gets or sets a Transact-SQL statement or stored procedure to insert new records into the data source.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlCommand"></see> used during <see cref="System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to insert records into the database that correspond to new rows in the <see cref="System.Data.DataSet"></see>.</returns>
    </member>
    <member name="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated">
      <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> after a command is executed against the data source. The attempt to update is made, so the event fires.</summary>
    </member>
    <member name="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating">
      <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> before a command is executed against the data source. The attempt to update is made, so the event fires.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand">
      <summary>Gets or sets a Transact-SQL statement or stored procedure used to select records in the data source.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlCommand"></see> used during <see cref="System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)"></see> to select records from the database for placement in the <see cref="System.Data.DataSet"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.UpdateBatchSize">
      <summary>Gets or sets the number of rows that are processed in each round-trip to the server.</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.
 
  &amp;gt;1
 
  Changes are sent using batches of <see cref="System.Data.SqlClient.SqlDataAdapter.UpdateBatchSize"></see> operations at a time.
 
    
 
 When setting this to a value other than 1, all the commands associated with the <see cref="System.Data.SqlClient.SqlDataAdapter"></see> have to have their UpdatedRowSource property set to None or OutputParameters. An exception is thrown otherwise.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.UpdateCommand">
      <summary>Gets or sets a Transact-SQL statement or stored procedure used to update records in the data source.</summary>
      <returns>A <see cref="System.Data.SqlClient.SqlCommand"></see> used during <see cref="System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to update records in the database that correspond to modified rows in the <see cref="System.Data.DataSet"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
      <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.DeleteCommand"></see>.</summary>
      <returns>An <see cref="System.Data.IDbCommand"></see> that is used during <see cref="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.SqlClient.SqlDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
      <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.InsertCommand"></see>.</summary>
      <returns>An <see cref="System.Data.IDbCommand"></see> that is used during <see cref="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.SqlClient.SqlDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
      <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.SelectCommand"></see>.</summary>
      <returns>An <see cref="System.Data.IDbCommand"></see> that is used during <see cref="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.SqlClient.SqlDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
      <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.UpdateCommand"></see>.</summary>
      <returns>An <see cref="System.Data.IdbCommand"></see> that is used during <see cref="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.SqlClient.SqlDataAdapter.System#ICloneable#Clone">
      <summary>For a description of this member, see <see cref="M:System.ICloneable.Clone"></see>.</summary>
      <returns>A new object that is a copy of the current instance.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlDataReader">
      <summary>Provides a way of reading a forward-only stream of rows from a SQL Server database. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.Connection">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlConnection"></see> associated with the <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.</summary>
      <returns>The <see cref="System.Data.SqlClient.SqlConnection"></see> associated with the <see cref="System.Data.SqlClient.SqlDataReader"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.Depth">
      <summary>Gets a value that indicates the depth of nesting for the current row.</summary>
      <returns>The depth of nesting for the current row.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.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 row. The default is -1.</returns>
      <exception cref="T:System.NotSupportedException">There is no current connection to an instance of SQL Server.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.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.InvalidCastException">The specified cast is not valid.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetByte(System.Int32)">
      <summary>Gets the value of the specified column as a byte.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the specified column as a byte.</returns>
      <exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.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 an array starting at the given buffer offset.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <param name="dataIndex">The index within the field from which to begin 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 where the write operation is to start.</param>
      <param name="length">The maximum length to copy into the buffer.</param>
      <returns>The actual number of bytes read.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetChar(System.Int32)">
      <summary>Gets the value of the specified column as a single character.</summary>
      <param name="i">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.SqlClient.SqlDataReader.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="dataIndex">The index within the field from which to begin 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 where the write operation is to start.</param>
      <param name="length">The maximum length to copy into the buffer.</param>
      <returns>The actual number of characters read.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetDataTypeName(System.Int32)">
      <summary>Gets a string representing the data type of the specified column.</summary>
      <param name="i">The zero-based ordinal position of the column to find.</param>
      <returns>The string representing the data type of the specified column.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetDateTime(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetDateTimeOffset(System.Int32)">
      <summary>Retrieves the value of the specified column as a <see cref="T:System.DateTimeOffset"></see> object.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetDecimal(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Decimal"></see> object.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetDouble(System.Int32)">
      <summary>Gets the value of the specified column as a double-precision floating point number.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetEnumerator">
      <summary>Returns an <see cref="T:System.Collections.IEnumerator"></see> that iterates through the <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.</summary>
      <returns>An <see cref="System.Collections.IEnumerator"></see> for the <see cref="System.Data.SqlClient.SqlDataReader"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetFieldType(System.Int32)">
      <summary>Gets the <see cref="T:System.Type"></see> that is the data type of the object.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The <see cref="System.Type"></see> that is the data type of the object. If the type does not exist on the client, in the case of a User-Defined Type (UDT) returned from the database, GetFieldType returns null.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetFieldValue``1(System.Int32)">
      <summary>Synchronously gets the value of the specified column as a type. <see cref="M:System.Data.SqlClient.SqlDataReader.GetFieldValueAsync``1(System.Int32,System.Threading.CancellationToken)"></see> is the asynchronous version of this method.</summary>
      <param name="i">The column to be retrieved.</param>
      <typeparam name="T">The type of the value to be returned.</typeparam>
      <returns>The returned type object.</returns>
      <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
 The <see cref="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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.Data.SqlTypes.SqlNullValueException">The value of the column was null (<see cref="System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)"></see> == true), retrieving a non-SQL type.</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.SqlClient.SqlDataReader.GetFieldValueAsync``1(System.Int32,System.Threading.CancellationToken)">
      <summary>Asynchronously gets the value of the specified column as a type. <see cref="M:System.Data.SqlClient.SqlDataReader.GetFieldValue``1(System.Int32)"></see> is the synchronous version of this method.</summary>
      <param name="i">The 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.SqlClient.SqlDataReader.IsDBNull(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 returned type object.</returns>
      <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
 The <see cref="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The value of the column was null (<see cref="System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)"></see> == true), retrieving a non-SQL type.</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.SqlClient.SqlDataReader.GetFloat(System.Int32)">
      <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetGuid(System.Int32)">
      <summary>Gets the value of the specified column as a globally unique identifier (GUID).</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetInt16(System.Int32)">
      <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetInt32(System.Int32)">
      <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetInt64(System.Int32)">
      <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetName(System.Int32)">
      <summary>Gets the name of the specified column.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The name of the specified column.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.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.SqlClient.SqlDataReader.GetProviderSpecificFieldType(System.Int32)">
      <summary>Gets an Object that is a representation of the underlying provider-specific field type.</summary>
      <param name="i">An <see cref="T:System.Int32"></see> representing the column ordinal.</param>
      <returns>Gets an <see cref="System.Object"></see> that is a representation of the underlying provider-specific field type.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetProviderSpecificValue(System.Int32)">
      <summary>Gets an Object that is a representation of the underlying provider specific value.</summary>
      <param name="i">An <see cref="T:System.Int32"></see> representing the column ordinal.</param>
      <returns>An <see cref="System.Object"></see> that is a representation of the underlying provider specific value.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetProviderSpecificValues(System.Object[])">
      <summary>Gets an array of objects that are a representation of the underlying provider specific values.</summary>
      <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the column values.</param>
      <returns>The array of objects that are a representation of the underlying provider specific values.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlBinary(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlBinary"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlBoolean(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlByte(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlByte"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlBytes(System.Int32)">
      <summary>Gets the value of the specified column as <see cref="T:System.Data.SqlTypes.SqlBytes"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlBytes"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlChars(System.Int32)">
      <summary>Gets the value of the specified column as <see cref="T:System.Data.SqlTypes.SqlChars"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlChars"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDateTime(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlDateTime"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDecimal(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlDecimal"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDouble(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlDouble"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlGuid(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlGuid"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt16(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlInt16"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt32(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlInt32"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt64(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlInt64"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlMoney(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlMoney"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlSingle(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlSingle"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlString(System.Int32)">
      <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlTypes.SqlString"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlValue(System.Int32)">
      <summary>Returns the data value in the specified column as a SQL Server type.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>The value of the column expressed as a <see cref="System.Data.SqlDbType"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlValues(System.Object[])">
      <summary>Fills an array of <see cref="T:System.Object"></see> that contains the values for all the columns in the record, expressed as SQL Server types.</summary>
      <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the values. The column values are expressed as SQL Server types.</param>
      <returns>An integer indicating the number of columns copied.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlXml(System.Int32)">
      <summary>Gets the value of the specified column as an XML value.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlXml"></see> value that contains the XML stored within the corresponding field.</returns>
      <exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="System.Data.DataTableReader.FieldCount"></see> - 1</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to read or access columns in a closed <see cref="System.Data.SqlClient.SqlDataReader"></see>.</exception>
      <exception cref="T:System.InvalidCastException">The retrieved data is not compatible with the <see cref="System.Data.SqlTypes.SqlXml"></see> type.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetStream(System.Int32)">
      <summary>Retrieves binary, image, varbinary, UDT, and variant data types as a <see cref="T:System.IO.Stream"></see>.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>A stream object.</returns>
      <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
 The <see cref="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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.SqlClient.SqlDataReader.GetString(System.Int32)">
      <summary>Gets the value of the specified column as a string.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetTextReader(System.Int32)">
      <summary>Retrieves Char, NChar, NText, NVarChar, text, varChar, and Variant data types as a <see cref="T:System.IO.TextReader"></see>.</summary>
      <param name="i">The column to be retrieved.</param>
      <returns>The returned object.</returns>
      <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
 The <see cref="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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.SqlClient.SqlDataReader.GetTimeSpan(System.Int32)">
      <summary>Retrieves the value of the specified column as a <see cref="T:System.TimeSpan"></see> object.</summary>
      <param name="i">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.SqlClient.SqlDataReader.GetValue(System.Int32)">
      <summary>Gets the value of the specified column in its native format.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>This method returns <see cref="System.DBNull"></see> for null database columns.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.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="System.Object"></see> in the array.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.GetXmlReader(System.Int32)">
      <summary>Retrieves data of type XML as an <see cref="T:System.Xml.XmlReader"></see>.</summary>
      <param name="i">The value of the specified column.</param>
      <returns>The returned object.</returns>
      <exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
 The <see cref="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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>
      <exception cref="T:System.InvalidCastException">The returned type was not xml.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.HasRows">
      <summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> contains one or more rows.</summary>
      <returns>true if the <see cref="System.Data.SqlClient.SqlDataReader"></see> contains one or more rows; otherwise false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.IsClosed">
      <summary>Retrieves a Boolean value that indicates whether the specified <see cref="T:System.Data.SqlClient.SqlDataReader"></see> instance has been closed.</summary>
      <returns>true if the specified <see cref="System.Data.SqlClient.SqlDataReader"></see> instance is closed; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)">
      <summary>Gets a value that indicates whether the column contains non-existent or missing values.</summary>
      <param name="i">The zero-based column ordinal.</param>
      <returns>true if the specified column value is equivalent to <see cref="System.DBNull"></see>; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.IsDBNullAsync(System.Int32,System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)"></see>, which gets a value that indicates whether the column contains non-existent or missing values.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="i">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.SqlClient.SqlDataReader.IsDBNull(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="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="System.Data.SqlClient.SqlDataReader.Read"></see> hasn&amp;#39;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.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.Item(System.String)">
      <summary>Gets the value of the specified column in its native format given the column name.</summary>
      <param name="name">The column name.</param>
      <returns>The value of the specified column in its native format.</returns>
      <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.Item(System.Int32)">
      <summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
      <param name="i">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 through <see cref="System.Data.IDataRecord.FieldCount"></see>.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.NextResult">
      <summary>Advances the data reader to the next result, when reading the results of batch Transact-SQL statements.</summary>
      <returns>true if there are more result sets; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.NextResultAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlDataReader.NextResult"></see>, which advances the data reader to the next result, when reading the results of batch Transact-SQL statements.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlDataReader.NextResultAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.Read">
      <summary>Advances the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> to the next record.</summary>
      <returns>true if there are more rows; otherwise false.</returns>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)">
      <summary>An asynchronous version of <see cref="M:System.Data.SqlClient.SqlDataReader.Read"></see>, which advances the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> to the next record.
 The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.</summary>
      <param name="cancellationToken">The cancellation instruction.</param>
      <returns>A task representing the asynchronous operation.</returns>
      <exception cref="T:System.InvalidOperationException">Calling <see cref="System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)"></see> more than once for the same instance before task completion.
 Context Connection=true is specified in the connection string.</exception>
      <exception cref="T:System.Data.SqlClient.SqlException">SQL Server returned an error while executing the command text.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlDataReader.RecordsAffected">
      <summary>Gets the number of rows changed, inserted, or deleted by execution of the Transact-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.SqlClient.SqlDataReader.VisibleFieldCount">
      <summary>Gets the number of fields in the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> that are not hidden.</summary>
      <returns>The number of fields that are not hidden.</returns>
    </member>
    <member name="T:System.Data.OperationAbortedException">
      <summary>This exception is thrown when an ongoing operation is aborted by the user.</summary>
    </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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than object.
 
  Zero
 
  This instance is the same as object.
 
  Greater than zero
 
  This instance is greater than object
 
 -or-
 
 object is a null reference (Nothing).
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than object.
 
  Zero
 
  This instance is the same as object.
 
  Greater than zero
 
  This instance is greater than object
 
 -or-
 
 object is a null reference (Nothing)
 
 </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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Data.SqlTypes.SqlGuid">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlBinary"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
      <param name="x">A SqlBinary object.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlGuid"></see> whose <see cref="System.Data.SqlTypes.SqlGuid.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlBinary.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBinary"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Guid">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlGuid"></see> parameter to <see cref="T:System.Guid"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure.</param>
      <returns>A new <see cref="System.Guid"></see> equal to the <see cref="System.Data.SqlTypes.SqlGuid.Value"></see> of the <see cref="System.Data.SqlTypes.SqlGuid"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlGuid.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlGuid">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlGuid"></see> whose <see cref="System.Data.SqlTypes.SqlGuid.Value"></see> equals the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlGuid.op_Implicit(System.Guid)~System.Data.SqlTypes.SqlGuid">
      <summary>Converts the supplied <see cref="T:System.Guid"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
      <param name="x">A <see cref="T:System.Guid"></see>.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlGuid"></see> whose <see cref="System.Data.SqlTypes.SqlGuid.Value"></see> is equal to the <see cref="System.Guid"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlGuid"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlGuid"></see> equivalent to the value that is contained in the specified <see cref="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="System.Data.SqlTypes.SqlGuid.Value"></see> of this <see cref="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="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="System.Data.SqlTypes.SqlString"></see> structure that contains the string representation of the <see cref="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="System.String"></see> that contains the string representation of the <see cref="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="System.Guid"></see> structure.</returns>
    </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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property contains the sum of the two <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 object is a null reference (Nothing in Visual Basic)
 
 </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="System.Data.SqlTypes.SqlInt16"></see> whose <see cref="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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 Handling Null Values.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property contains the complement of the specified <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property contains the sum of the two <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt16"></see> whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> object to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> object parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the integer part of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> of the supplied <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Int16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to a short integer.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
      <returns>A short integer whose value is the Value of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt16.op_Implicit(System.Int16)~System.Data.SqlTypes.SqlInt16">
      <summary>Converts the supplied short integer to <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="x">A short integer value.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlInt16"></see> structure with the same value as the specified short integer.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt16"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property contains the complement of the specified <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="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="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="System.Data.SqlTypes.SqlInt16"></see> structure whose <see cref="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of this <see cref="System.Data.SqlTypes.SqlInt16"></see> structure. If the value of the <see cref="System.Data.SqlTypes.SqlInt16"></see> is less than 0 or greater than 255, an <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlDouble"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlSingle"></see> structure whose Value equals the value of this <see cref="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="System.Data.SqlTypes.SqlString"></see> representing the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of this instance of <see cref="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="System.String"></see> object representing the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of this instance of <see cref="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="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="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="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property contains the sum of the specified <see cref="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="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="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic).
 
 </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="System.Data.SqlTypes.SqlInt32"></see> whose <see cref="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the one&amp;#39;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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property contains the sum of the specified <see cref="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="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="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="System.Data.SqlTypes.SqlInt32"></see> whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> object to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the integer part of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property of the SqlInt64 parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Int32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to an integer.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
      <returns>The converted integer value.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Int32)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied integer to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">An integer value.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose Value property is equal to the integer parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> property to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt32.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlInt32">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt32"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt32"></see> structure that contains the results of the one&amp;#39;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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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="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="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="System.Data.SqlTypes.SqlInt32"></see> structure whose <see cref="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="System.Data.SqlTypes.SqlInt32"></see> structure. If the value of the SqlInt32 is less than 0 or greater than 255, an <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlDouble"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlSingle"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlString"></see> structure equal to the value of this <see cref="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="System.String"></see> structure equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure.</returns>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property contains <see cref="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="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="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the sum of the two <see cref="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="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="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic).
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic).
 
 </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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the product of the two <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the ones complement of the <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the sum of the two <see cref="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="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="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString"></see> object to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property contains the integer part of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Int64">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to long.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
      <returns>A new long value equal to the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property equals the integer part of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the integer part of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property equals the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the long parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">A long integer value.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> equals the value of the long parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlInt64.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlInt64">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlInt64"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the product of the two <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the ones complement of the <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> is equal to the negated <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="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="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="System.Data.SqlTypes.SqlInt64"></see> structure whose <see cref="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlDouble"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt16"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlMoney"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlSingle"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlString"></see> representing the value of this <see cref="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="System.String"></see> representing the value of this <see cref="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="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="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="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="System.Data.SqlTypes.SqlMoney"></see> stucture whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> contains the sum of the two <see cref="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlMoney"></see> stucture whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> contains the sum of the two <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlMoney">
      <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlMoney">
      <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Decimal">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Decimal"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
      <returns>A new <see cref="System.Decimal"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlMoney">
      <summary>This operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlMoney">
      <summary>This operator converts the <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString"></see> object to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Explicit(System.Double)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlMoney">
      <summary>Converts the <see cref="T:System.Decimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Decimal"></see> value to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> equals the value of the <see cref="System.Decimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlMoney">
      <summary>This implicit operator converts the supplied <see cref="T:System.Int64"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="x">The <see cref="T:System.Int64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property is equal to the value of the <see cref="System.Int64"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlMoney"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="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="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="System.Data.SqlTypes.SqlMoney"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlMoney"></see> equivalent to the value that is contained in the specified <see cref="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="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="System.Decimal"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property of this <see cref="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="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="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="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="System.Data.SqlTypes.SqlBoolean"></see> structure. If the value of the <see cref="System.Data.SqlTypes.SqlMoney"></see> structure is zero, the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value will be <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. Otherwise, <see cref="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="System.Data.SqlTypes.SqlByte"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlDouble"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt16"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt32"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlSingle"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlString"></see> structure whose value is a string representing the value of this <see cref="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="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="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="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="System.Data.SqlTypes.SqlSingle"></see> structure that contains the sum of the two specified <see cref="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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlSingle"></see> structure that contains the sum of the two specified <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlSingle">
      <summary>This implicit operator converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Single">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to float.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> value to be converted to float.</param>
      <returns>A float that contains the value of the <see cref="System.Data.SqlTypes.SqlSingle"></see> structure.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString"></see> object to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Single)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the specified floating point value to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The float value to be converted to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlSingle"></see> structure that contains the value of the specified float.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlSingle">
      <summary>This implicit operator converts the <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlSingle.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlSingle">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure whose <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlSingle"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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="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="System.Data.SqlTypes.SqlSingle"></see> equivalent to the value that is contained in the specified <see cref="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="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="System.Data.SqlTypes.SqlSingle"></see> structure. If the <see cref="System.Data.SqlTypes.SqlSingle"></see> structure&amp;#39;s Value is true, the <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;s Value will be 1. Otherwise, the <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;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="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="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="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="System.Data.SqlTypes.SqlInt32"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlMoney"></see> equal to the value of this <see cref="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="System.Data.SqlTypes.SqlString"></see> representing the value of this <see cref="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="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="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="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&amp;#39;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="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="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="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic).
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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="System.Data.SqlTypes.SqlString"></see> that contains the newly concatenated value representing the contents of the two <see cref="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="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="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="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="System.Data.SqlTypes.SqlString"></see> in Unicode format.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlString.Value"></see> is <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlString"></see> that contains the newly concatenated value representing the contents of the two <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlString)~System.String">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString"></see> to a <see cref="T:System.String"></see></summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString"></see> to be converted.</param>
      <returns>A String, whose contents are the same as the <see cref="System.Data.SqlTypes.SqlString.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> object that contains the string representation of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> object that contains the string representation of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The SqlInt32 structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> object that contains the string representation of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The SqlDecimal structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the SqlDecimal parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlDateTime)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the <see cref="System.Data.SqlTypes.SqlDateTime"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> object that contains the string representation of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlString"></see> that contains the string representation of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Data.SqlTypes.SqlString">
      <summary>Converts the specified <see cref="T:System.Data.SqlTypes.SqlGuid"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlString"></see> whose value is the string representation of the specified <see cref="System.Data.SqlTypes.SqlGuid"></see>.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlString.op_Implicit(System.String)~System.Data.SqlTypes.SqlString">
      <summary>Converts the <see cref="T:System.String"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="x">The <see cref="T:System.String"></see> to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlString"></see> that contains the value of the specified String.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlString"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlString"></see> should be compared to other <see cref="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="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="System.Data.SqlTypes.SqlByte.Value"></see> equals the number represented by this <see cref="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="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="System.Data.SqlTypes.SqlDecimal"></see> that contains the value of this <see cref="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="System.Data.SqlTypes.SqlDouble"></see> that is equal to the numeric value of this <see cref="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="System.Data.SqlTypes.SqlGuid"></see> structure whose <see cref="System.Data.SqlTypes.SqlGuid.Value"></see> is the Guid represented by this <see cref="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="System.Data.SqlTypes.SqlInt16"></see> that is equal to the numeric value of this <see cref="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="System.Data.SqlTypes.SqlInt32"></see> that is equal to the numeric value of this <see cref="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="System.Data.SqlTypes.SqlInt64"></see> that is equal to the numeric value of this <see cref="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="System.Data.SqlTypes.SqlMoney"></see> that is equal to the numeric value of this <see cref="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="System.Data.SqlTypes.SqlSingle"></see> that is equal to the numeric value of this <see cref="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="System.String"></see> with the same value as this <see cref="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="System.Data.SqlTypes.SqlString.Null"></see>.</exception>
    </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.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&amp;#39;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="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="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="System.Data.SqlTypes.SqlXml"></see>.</exception>
    </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="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="T:System.Data.SqlClient.SqlError">
      <summary>Collects information relevant to a warning or error returned by SQL Server.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Class">
      <summary>Gets the severity level of the error returned from SQL Server.</summary>
      <returns>A value from 1 to 25 that indicates the severity level of the error. The default is 0.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.LineNumber">
      <summary>Gets the line number within the Transact-SQL command batch or stored procedure that contains the error.</summary>
      <returns>The line number within the Transact-SQL command batch or stored procedure that contains the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Message">
      <summary>Gets the text describing the error.</summary>
      <returns>The text describing the error.
 For more information on errors generated by SQL Server, see SQL Server Books Online.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Number">
      <summary>Gets a number that identifies the type of error.</summary>
      <returns>The number that identifies the type of error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Procedure">
      <summary>Gets the name of the stored procedure or remote procedure call (RPC) that generated the error.</summary>
      <returns>The name of the stored procedure or RPC.
 For more information on errors generated by SQL Server, see SQL Server Books Online.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Server">
      <summary>Gets the name of the instance of SQL Server that generated the error.</summary>
      <returns>The name of the instance of SQL Server.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.Source">
      <summary>Gets the name of the provider that generated the error.</summary>
      <returns>The name of the provider that generated the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlError.State">
      <summary>Some error messages can be raised at multiple points in the code for the Database Engine. For example, an 1105 error can be raised for several different conditions. Each specific condition that raises an error assigns a unique state code.</summary>
      <returns>The state code.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlError.ToString">
      <summary>Gets the complete text of the error message.</summary>
      <returns>The complete text of the error.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlErrorCollection">
      <summary>Collects all errors generated by the .NET Framework Data Provider for SQL Server. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlErrorCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see> collection into an <see cref="T:System.Array"></see>, starting at the specified index.</summary>
      <param name="array">The <see cref="T:System.Array"></see> to copy elements into.</param>
      <param name="index">The index from which to start copying into the array parameter.</param>
      <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and the number of elements in the <see cref="System.Data.SqlClient.SqlErrorCollection"></see> collection is greater than the <see cref="System.Array.Length"></see> of the <see cref="System.Array"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> is null.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> is not valid for <paramref name="array">array</paramref>.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlErrorCollection.CopyTo(System.Data.SqlClient.SqlError[],System.Int32)">
      <summary>Copies the elements of the <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see> collection into a <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see>, starting at the specified index.</summary>
      <param name="array">The <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see> to copy the elements into.</param>
      <param name="index">The index from which to start copying into the array parameter.</param>
      <exception cref="T:System.ArgumentException">The sum of <paramref name="index">index</paramref> and the number of elements in the <see cref="System.Data.SqlClient.SqlErrorCollection"></see> collection is greater than the length of the <see cref="System.Data.SqlClient.SqlErrorCollection"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="array">array</paramref> is null.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index">index</paramref> is not valid for <paramref name="array">array</paramref>.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlErrorCollection.Count">
      <summary>Gets the number of errors in the collection.</summary>
      <returns>The total number of errors in the collection.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlErrorCollection.GetEnumerator">
      <summary>Returns an enumerator that iterates through the <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see>.</summary>
      <returns>An <see cref="System.Collections.IEnumerator"></see> for the <see cref="System.Data.SqlClient.SqlErrorCollection"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlErrorCollection.Item(System.Int32)">
      <summary>Gets the error at the specified index.</summary>
      <param name="index">The zero-based index of the error to retrieve.</param>
      <returns>A <see cref="System.Data.SqlClient.SqlError"></see> that contains the error at the specified index.</returns>
      <exception cref="T:System.IndexOutOfRangeException">Index parameter is outside array bounds.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlErrorCollection.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="System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlErrorCollection.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="System.Collections.ICollection"></see>.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlException">
      <summary>The exception that is thrown when SQL Server returns a warning or error. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Class">
      <summary>Gets the severity level of the error returned from the .NET Framework Data Provider for SQL Server.</summary>
      <returns>A value from 1 to 25 that indicates the severity level of the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.ClientConnectionId">
      <summary>Represents the client connection ID. For more information, see Data Tracing in ADO.NET.</summary>
      <returns>Returns the client connection ID.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Errors">
      <summary>Gets a collection of one or more <see cref="T:System.Data.SqlClient.SqlError"></see> objects that give detailed information about exceptions generated by the .NET Framework Data Provider for SQL Server.</summary>
      <returns>The collected instances of the <see cref="System.Data.SqlClient.SqlError"></see> class.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with information about the exception.</summary>
      <param name="si">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>
      <exception cref="T:System.ArgumentNullException">The <paramref name="si">si</paramref> parameter is a null reference (Nothing in Visual Basic).</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.LineNumber">
      <summary>Gets the line number within the Transact-SQL command batch or stored procedure that generated the error.</summary>
      <returns>The line number within the Transact-SQL command batch or stored procedure that generated the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Number">
      <summary>Gets a number that identifies the type of error.</summary>
      <returns>The number that identifies the type of error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Procedure">
      <summary>Gets the name of the stored procedure or remote procedure call (RPC) that generated the error.</summary>
      <returns>The name of the stored procedure or RPC.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Server">
      <summary>Gets the name of the computer that is running an instance of SQL Server that generated the error.</summary>
      <returns>The name of the computer running an instance of SQL Server.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.Source">
      <summary>Gets the name of the provider that generated the error.</summary>
      <returns>The name of the provider that generated the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlException.State">
      <summary>Gets a numeric error code from SQL Server that represents an error, warning or &amp;quot;no data found&amp;quot; message. For more information about how to decode these values, see SQL Server Books Online.</summary>
      <returns>The number representing the error code.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlException.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Data.SqlClient.SqlException"></see> object, and includes the client connection ID (for more information, see <see cref="P:System.Data.SqlClient.SqlException.ClientConnectionId"></see>).</summary>
      <returns>A string that represents the current <see cref="System.Data.SqlClient.SqlException"></see> object.<see cref="System.String"></see>.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlInfoMessageEventArgs">
      <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Errors">
      <summary>Gets the collection of warnings sent from the server.</summary>
      <returns>The collection of warnings sent from the server.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Message">
      <summary>Gets the full text of the error sent from the database.</summary>
      <returns>The full text of the error.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Source">
      <summary>Gets the name of the object that generated the error.</summary>
      <returns>The name of the object that generated the error.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlInfoMessageEventArgs.ToString">
      <summary>Retrieves a string representation of the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</summary>
      <returns>A string representing the <see cref="System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlInfoMessageEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event of a <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Data.SqlClient.SqlInfoMessageEventArgs"></see> object that contains the event data.</param>
    </member>
    <member name="T:System.Data.SqlClient.SqlParameter">
      <summary>Represents a parameter to a <see cref="T:System.Data.SqlClient.SqlCommand"></see> and optionally its mapping to <see cref="T:System.Data.DataSet"></see> columns. This class cannot be inherited. For more information on parameters, see Configuring Parameters and Parameter Data Types.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name and the data type.</summary>
      <param name="parameterName">The name of the parameter to map.</param>
      <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values.</param>
      <exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType">dbType</paramref> parameter is an invalid back-end data type.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name and a value of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
      <param name="parameterName">The name of the parameter to map.</param>
      <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType"></see>, and the size.</summary>
      <param name="parameterName">The name of the parameter to map.</param>
      <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values.</param>
      <param name="size">The length of the parameter.</param>
      <exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType">dbType</paramref> parameter is an invalid back-end data type.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType"></see>, the size, and the source column name.</summary>
      <param name="parameterName">The name of the parameter to map.</param>
      <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values.</param>
      <param name="size">The length of the parameter.</param>
      <param name="sourceColumn">The name of the source column (<see cref="P:System.Data.SqlClient.SqlParameter.SourceColumn"></see>) if this <see cref="T:System.Data.SqlClient.SqlParameter"></see> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update"></see>.</param>
      <exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType">dbType</paramref> parameter is an invalid back-end data type.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object,System.String,System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the type of the parameter, the length of the parameter the direction, the precision, the scale, the name of the source column, one of the <see cref="T:System.Data.DataRowVersion"></see> values, a Boolean for source column mapping, the value of the SqlParameter, the name of the database where the schema collection for this XML instance is located, the owning relational schema where the schema collection for this XML instance is located, and the name of the schema collection for this parameter.</summary>
      <param name="parameterName">The name of the parameter to map.</param>
      <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values.</param>
      <param name="size">The length of the parameter.</param>
      <param name="direction">One of the <see cref="T:System.Data.ParameterDirection"></see> values.</param>
      <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved.</param>
      <param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved.</param>
      <param name="sourceColumn">The name of the source column (<see cref="P:System.Data.SqlClient.SqlParameter.SourceColumn"></see>) if this <see cref="T:System.Data.SqlClient.SqlParameter"></see> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update"></see>.</param>
      <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion"></see> values.</param>
      <param name="sourceColumnNullMapping">true if the source column is nullable; false if it is not.</param>
      <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</param>
      <param name="xmlSchemaCollectionDatabase">The name of the database where the schema collection for this XML instance is located.</param>
      <param name="xmlSchemaCollectionOwningSchema">The owning relational schema where the schema collection for this XML instance is located.</param>
      <param name="xmlSchemaCollectionName">The name of the schema collection for this parameter.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.CompareInfo">
      <summary>Gets or sets the <see cref="T:System.Globalization.CompareInfo"></see> object that defines how string comparisons should be performed for this parameter.</summary>
      <returns>A <see cref="System.Globalization.CompareInfo"></see> object that defines string comparison for this parameter.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.DbType">
      <summary>Gets or sets the <see cref="T:System.Data.SqlDbType"></see> of the parameter.</summary>
      <returns>One of the <see cref="System.Data.SqlDbType"></see> values. The default is NVarChar.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.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="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="System.Data.ParameterDirection"></see> values.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.IsNullable">
      <summary>Gets or sets a value that indicates whether the parameter accepts null values. <see cref="P:System.Data.SqlClient.SqlParameter.IsNullable"></see> is not used to validate the parameter’s value and will not prevent sending or receiving a null value when executing a command.</summary>
      <returns>true if null values are accepted; otherwise false. The default is false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.LocaleId">
      <summary>Gets or sets the locale identifier that determines conventions and language for a particular region.</summary>
      <returns>Returns the locale identifier associated with the parameter.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.Offset">
      <summary>Gets or sets the offset to the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> property.</summary>
      <returns>The offset to the <see cref="System.Data.SqlClient.SqlParameter.Value"></see>. The default is 0.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.ParameterName">
      <summary>Gets or sets the name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
      <returns>The name of the <see cref="System.Data.SqlClient.SqlParameter"></see>. The default is an empty string.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.Precision">
      <summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> property.</summary>
      <returns>The maximum number of digits used to represent the <see cref="System.Data.SqlClient.SqlParameter.Value"></see> property. The default value is 0. This indicates that the data provider sets the precision for <see cref="System.Data.SqlClient.SqlParameter.Value"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.ResetDbType">
      <summary>Resets the type associated with this <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.ResetSqlDbType">
      <summary>Resets the type associated with this <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.Scale">
      <summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved.</summary>
      <returns>The number of decimal places to which <see cref="System.Data.SqlClient.SqlParameter.Value"></see> is resolved. The default is 0.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.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.SqlClient.SqlParameter.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.SqlClient.SqlParameter.Value"></see></summary>
      <returns>The name of the source column mapped to the <see cref="System.Data.DataSet"></see>. The default is an empty string.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.SourceColumnNullMapping">
      <summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.SqlClient.SqlCommandBuilder"></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.SqlClient.SqlParameter.SourceVersion">
      <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion"></see> to use when you load <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see></summary>
      <returns>One of the <see cref="System.Data.DataRowVersion"></see> values. The default is Current.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.SqlDbType">
      <summary>Gets or sets the <see cref="T:System.Data.SqlDbType"></see> of the parameter.</summary>
      <returns>One of the <see cref="System.Data.SqlDbType"></see> values. The default is NVarChar.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.SqlValue">
      <summary>Gets or sets the value of the parameter as an SQL type.</summary>
      <returns>An <see cref="System.Object"></see> that is the value of the parameter, using SQL types. The default value is null.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.ToString">
      <summary>Gets a string that contains the <see cref="P:System.Data.SqlClient.SqlParameter.ParameterName"></see>.</summary>
      <returns>A string that contains the <see cref="System.Data.SqlClient.SqlParameter.ParameterName"></see>.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.TypeName">
      <summary>Gets or sets the type name for a table-valued parameter.</summary>
      <returns>The type name of the specified table-valued parameter.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.Value">
      <summary>Gets or sets the value of the parameter.</summary>
      <returns>An <see cref="System.Object"></see> that is the value of the parameter. The default value is null.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.XmlSchemaCollectionDatabase">
      <summary>Gets the name of the database where the schema collection for this XML instance is located.</summary>
      <returns>The name of the database where the schema collection for this XML instance is located.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.XmlSchemaCollectionName">
      <summary>Gets the name of the schema collection for this XML instance.</summary>
      <returns>The name of the schema collection for this XML instance.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameter.XmlSchemaCollectionOwningSchema">
      <summary>The owning relational schema where the schema collection for this XML instance is located.</summary>
      <returns>The owning relational schema for this XML instance.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameter.System#ICloneable#Clone">
      <summary>For a description of this member, see <see cref="M:System.ICloneable.Clone"></see>.</summary>
      <returns>A new <see cref="System.Object"></see> that is a copy of this instance.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlParameterCollection">
      <summary>Represents a collection of parameters associated with a <see cref="T:System.Data.SqlClient.SqlCommand"></see> and their respective mappings to columns in a <see cref="T:System.Data.DataSet"></see>. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.Data.SqlClient.SqlParameter)">
      <summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> to add to the collection.</param>
      <returns>A new <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
      <exception cref="T:System.ArgumentException">The <see cref="System.Data.SqlClient.SqlParameter"></see> specified in the <paramref name="value">value</paramref> parameter is already added to this or another <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</exception>
      <exception cref="T:System.InvalidCastException">The parameter passed was not a <see cref="System.Data.SqlClient.SqlParameter"></see>.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value">value</paramref> parameter is null.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.Object)">
      <summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="value">An <see cref="T:System.Object"></see>.</param>
      <returns>The index of the new <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType)">
      <summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter"></see> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> given the parameter name and the data type.</summary>
      <param name="parameterName">The name of the parameter.</param>
      <param name="sqlDbType">One of the <see cref="T:System.Data.SqlDbType"></see> values.</param>
      <returns>A new <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32)">
      <summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter"></see> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>, given the specified parameter name, <see cref="T:System.Data.SqlDbType"></see> and size.</summary>
      <param name="parameterName">The name of the parameter.</param>
      <param name="sqlDbType">The <see cref="T:System.Data.SqlDbType"></see> of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to add to the collection.</param>
      <param name="size">The size as an <see cref="T:System.Int32"></see>.</param>
      <returns>A new <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Array)">
      <summary>Adds an array of values to the end of the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="values">The <see cref="T:System.Array"></see> values to add.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.AddRange(System.Data.SqlClient.SqlParameter[])">
      <summary>Adds an array of <see cref="T:System.Data.SqlClient.SqlParameter"></see> values to the end of the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="values">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> values to add.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.AddWithValue(System.String,System.Object)">
      <summary>Adds a value to the end of the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="parameterName">The name of the parameter.</param>
      <param name="value">The value to be added. Use <see cref="F:System.DBNull.Value"></see> instead of null, to indicate a null value.</param>
      <returns>A <see cref="System.Data.SqlClient.SqlParameter"></see> object.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Clear">
      <summary>Removes all the <see cref="T:System.Data.SqlClient.SqlParameter"></see> objects from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.Data.SqlClient.SqlParameter)">
      <summary>Determines whether the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> value.</param>
      <returns>true if the <see cref="System.Data.SqlClient.SqlParameterCollection"></see> contains the value; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.Object)">
      <summary>Determines whether the specified <see cref="T:System.Object"></see> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="value">The <see cref="T:System.Object"></see> value.</param>
      <returns>true if the <see cref="System.Data.SqlClient.SqlParameterCollection"></see> contains the value; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.String)">
      <summary>Determines whether the specified parameter name is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <param name="value">The <see cref="T:System.String"></see> value.</param>
      <returns>true if the <see cref="System.Data.SqlClient.SqlParameterCollection"></see> contains the value; otherwise false.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies all the elements of the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> to the specified one-dimensional <see cref="T:System.Array"></see> starting at the specified destination <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 the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
      <param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array"></see> at which copying starts.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.CopyTo(System.Data.SqlClient.SqlParameter[],System.Int32)">
      <summary>Copies all the elements of the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> to the specified <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> starting at the specified destination index.</summary>
      <param name="array">The <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> that is the destination of the elements copied from the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
      <param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at which copying starts.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameterCollection.Count">
      <summary>Returns an Integer that contains the number of elements in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. Read-only.</summary>
      <returns>The number of elements in the <see cref="System.Data.SqlClient.SqlParameterCollection"></see> as an Integer.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.GetEnumerator">
      <summary>Returns an enumerator that iterates through the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <returns>An <see cref="System.Collections.IEnumerator"></see> for the <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.Data.SqlClient.SqlParameter)">
      <summary>Gets the location of the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> within the collection.</summary>
      <param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> to find.</param>
      <returns>The zero-based location of the specified <see cref="System.Data.SqlClient.SqlParameter"></see> that is a <see cref="System.Data.SqlClient.SqlParameter"></see> within the collection. Returns -1 when the object does not exist in the <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.Object)">
      <summary>Gets the location of the specified <see cref="T:System.Object"></see> within the collection.</summary>
      <param name="value">The <see cref="T:System.Object"></see> to find.</param>
      <returns>The zero-based location of the specified <see cref="System.Object"></see> that is a <see cref="System.Data.SqlClient.SqlParameter"></see> within the collection. Returns -1 when the object does not exist in the <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.String)">
      <summary>Gets the location of the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified name.</summary>
      <param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to find.</param>
      <returns>The zero-based location of the specified <see cref="System.Data.SqlClient.SqlParameter"></see> with the specified case-sensitive name. Returns -1 when the object does not exist in the <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Insert(System.Int32,System.Data.SqlClient.SqlParameter)">
      <summary>Inserts a <see cref="T:System.Data.SqlClient.SqlParameter"></see> object into the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified index.</summary>
      <param name="index">The zero-based index at which value should be inserted.</param>
      <param name="value">A <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to be inserted in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Insert(System.Int32,System.Object)">
      <summary>Inserts an <see cref="T:System.Object"></see> into the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified index.</summary>
      <param name="index">The zero-based index at which value should be inserted.</param>
      <param name="value">An <see cref="T:System.Object"></see> to be inserted in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.String)">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified name.</summary>
      <param name="parameterName">The name of the parameter to retrieve.</param>
      <returns>The <see cref="System.Data.SqlClient.SqlParameter"></see> with the specified name.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The specified <paramref name="parameterName">parameterName</paramref> is not valid.</exception>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter"></see> at the specified index.</summary>
      <param name="index">The zero-based index of the parameter to retrieve.</param>
      <returns>The <see cref="System.Data.SqlClient.SqlParameter"></see> at the specified index.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Remove(System.Data.SqlClient.SqlParameter)">
      <summary>Removes the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the collection.</summary>
      <param name="value">A <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to remove from the collection.</param>
      <exception cref="T:System.InvalidCastException">The parameter is not a <see cref="System.Data.SqlClient.SqlParameter"></see>.</exception>
      <exception cref="T:System.SystemException">The parameter does not exist in the collection.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.Remove(System.Object)">
      <summary>Removes the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the collection.</summary>
      <param name="value">The object to remove from the collection.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.RemoveAt(System.Int32)">
      <summary>Removes the <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to remove.</param>
    </member>
    <member name="M:System.Data.SqlClient.SqlParameterCollection.RemoveAt(System.String)">
      <summary>Removes the <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified parameter name.</summary>
      <param name="parameterName">The name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to remove.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlParameterCollection.SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowsCopiedEventArgs">
      <summary>Represents the set of arguments passed to the <see cref="T:System.Data.SqlClient.SqlRowsCopiedEventHandler"></see>.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlRowsCopiedEventArgs.#ctor(System.Int64)">
      <summary>Creates a new instance of the <see cref="T:System.Data.SqlClient.SqlRowsCopiedEventArgs"></see> object.</summary>
      <param name="rowsCopied">An <see cref="T:System.Int64"></see> that indicates the number of rows copied during the current bulk copy operation.</param>
    </member>
    <member name="P:System.Data.SqlClient.SqlRowsCopiedEventArgs.Abort">
      <summary>Gets or sets a value that indicates whether the bulk copy operation should be aborted.</summary>
      <returns>true if the bulk copy operation should be aborted; otherwise false.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlRowsCopiedEventArgs.RowsCopied">
      <summary>Gets a value that returns the number of rows copied during the current bulk copy operation.</summary>
      <returns>int that returns the number of rows copied.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowsCopiedEventHandler">
      <summary>Represents the method that handles the <see cref="E:System.Data.SqlClient.SqlBulkCopy.SqlRowsCopied"></see> event of a <see cref="T:System.Data.SqlClient.SqlBulkCopy"></see>.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Data.SqlClient.SqlRowsCopiedEventArgs"></see> object that contains the event data.</param>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowUpdatedEventArgs">
      <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated"></see> event.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlRowUpdatedEventArgs.#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.SqlClient.SqlRowUpdatedEventArgs"></see> class.</summary>
      <param name="row">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">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query 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.SqlClient.SqlRowUpdatedEventArgs.Command">
      <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</summary>
      <returns>The <see cref="System.Data.SqlClient.SqlCommand"></see> executed when <see cref="System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowUpdatedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated"></see> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">The <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs"></see> that contains the event data.</param>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowUpdatingEventArgs">
      <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating"></see> event.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlRowUpdatingEventArgs.#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.SqlClient.SqlRowUpdatingEventArgs"></see> class.</summary>
      <param name="row">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 during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</param>
      <param name="statementType">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query 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.SqlClient.SqlRowUpdatingEventArgs.Command">
      <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand"></see> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
      <returns>The <see cref="System.Data.SqlClient.SqlCommand"></see> to execute when performing the <see cref="System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
    </member>
    <member name="T:System.Data.SqlClient.SqlRowUpdatingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating"></see> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">The <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs"></see> that contains the event data.</param>
    </member>
    <member name="T:System.Data.SqlClient.SqlTransaction">
      <summary>Represents a Transact-SQL transaction to be made in a SQL Server database. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Data.SqlClient.SqlTransaction.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.SqlClient.SqlTransaction.Connection">
      <summary>Gets the <see cref="T:System.Data.SqlClient.SqlConnection"></see> object associated with the transaction, or null if the transaction is no longer valid.</summary>
      <returns>The <see cref="System.Data.SqlClient.SqlConnection"></see> object associated with the transaction.</returns>
    </member>
    <member name="P:System.Data.SqlClient.SqlTransaction.IsolationLevel">
      <summary>Specifies the <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</summary>
      <returns>The <see cref="System.Data.IsolationLevel"></see> for this transaction. The default is ReadCommitted.</returns>
    </member>
    <member name="M:System.Data.SqlClient.SqlTransaction.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="M:System.Data.SqlClient.SqlTransaction.Rollback(System.String)">
      <summary>Rolls back a transaction from a pending state, and specifies the transaction or savepoint name.</summary>
      <param name="transactionName">The name of the transaction to roll back, or the savepoint to which to roll back.</param>
      <exception cref="T:System.ArgumentException">No transaction name was specified.</exception>
      <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
 -or-
 The connection is broken.</exception>
    </member>
    <member name="M:System.Data.SqlClient.SqlTransaction.Save(System.String)">
      <summary>Creates a savepoint in the transaction that can be used to roll back a part of the transaction, and specifies the savepoint name.</summary>
      <param name="savePointName">The name of the savepoint.</param>
      <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.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.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="System.Data.SqlTypes.SqlBoolean"></see>
    true if the value of this object is null. Otherwise, false.</returns>
    </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="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>A signed number that indicates the relative values of this <see cref="System.Data.SqlTypes.SqlBinary"></see> structure and the object.
  Return value
 
  Condition
 
  Less than zero
 
  The value of this <see cref="System.Data.SqlTypes.SqlBinary"></see> object is less than the object.
 
  Zero
 
  This <see cref="System.Data.SqlTypes.SqlBinary"></see> object is the same as object.
 
  Greater than zero
 
  This <see cref="System.Data.SqlTypes.SqlBinary"></see> object is greater than object.
 
 -or-
 
 The object is a null reference.
 
 </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>A signed number that indicates the relative values of this <see cref="System.Data.SqlTypes.SqlBinary"></see> structure and the object.
  Return value
 
  Condition
 
  Less than zero
 
  The value of this <see cref="System.Data.SqlTypes.SqlBinary"></see> object is less than the object.
 
  Zero
 
  This <see cref="System.Data.SqlTypes.SqlBinary"></see> object is the same as object.
 
  Greater than zero
 
  This <see cref="System.Data.SqlTypes.SqlBinary"></see> object is greater than object.
 
 -or-
 
 The object is a null reference.
 
 </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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBinary.Value"></see> property contains <see cref="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="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="System.Data.SqlTypes.SqlBinary.Value"></see> property.</returns>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="System.Data.SqlTypes.SqlBinary.Length"></see> property is read when the <see cref="System.Data.SqlTypes.SqlBinary.Value"></see> property contains <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Byte[]">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure to a <see cref="T:System.Byte"></see> array.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure to be converted.</param>
      <returns>A <see cref="System.Byte"></see> array.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBinary.op_Explicit(System.Data.SqlTypes.SqlGuid)~System.Data.SqlTypes.SqlBinary">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid"></see> structure to be converted.</param>
      <returns>The <see cref="System.Data.SqlTypes.SqlGuid"></see> structure to be converted.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBinary.op_Implicit(System.Byte[])~System.Data.SqlTypes.SqlBinary">
      <summary>Converts an array of bytes to a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
      <param name="x">The array of bytes to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlBinary"></see> structure that represents the converted array of bytes.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBinary"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="System.Data.SqlTypes.SqlBinary.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBinary"></see>. If the <see cref="System.Data.SqlTypes.SqlBinary.Value"></see> is null the string will contain &amp;quot;null&amp;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="System.Data.SqlTypes.SqlBinary"></see> structure.</returns>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="System.Data.SqlTypes.SqlBinary.Value"></see> property is read when the property contains <see cref="System.Data.SqlTypes.SqlBinary.Null"></see>.</exception>
    </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="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>A signed number that indicates the relative values of the instance and value.
  Value
 
  Description
 
  A negative integer
 
  This instance is less than <paramref name="value">value</paramref>.
 
  Zero
 
  This instance is equal to <paramref name="value">value</paramref>.
 
  A positive integer
 
  This instance is greater than <paramref name="value">value</paramref>.
 
 -or-
 
 <paramref name="value">value</paramref> is a null reference (Nothing in Visual Basic).
 
 </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>A signed number that indicates the relative values of the instance and value.
  Value
 
  Description
 
  A negative integer
 
  This instance is less than <paramref name="value">value</paramref>.
 
  Zero
 
  This instance is equal to <paramref name="value">value</paramref>.
 
  A positive integer
 
  This instance is greater than <paramref name="value">value</paramref>.
 
 -or-
 
 <paramref name="value">value</paramref> is a null reference (Nothing in Visual Basic).
 
 </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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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.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="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="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="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="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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&amp;#39;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&amp;#39;s complement of the supplied <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDouble"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte"></see> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure whose value equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBoolean.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Boolean">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to a Boolean.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to convert.</param>
      <returns>A Boolean set to the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see>.</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="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="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="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)~System.Data.SqlTypes.SqlBoolean">
      <summary>Converts the supplied byte value to a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
      <param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlBoolean"></see> value that contains 0 or 1.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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="System.Data.SqlTypes.SqlBoolean"></see> with the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see><see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if argument was true, <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see> if argument was null, and <see cref="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&amp;#39;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&amp;#39;s complement of the supplied <see cref="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="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="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose value is 1 or 0. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true, the new <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;s value is 1. Otherwise, the new <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlDecimal"></see> structure whose value is 1 or 0. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true then the new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure&amp;#39;s value is 1. Otherwise, the new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlDouble"></see> structure whose value is 1 or 0. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true then the new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;s value is 1. Otherwise, the new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true then the new <see cref="System.Data.SqlTypes.SqlInt16"></see> structure&amp;#39;s value is 1. Otherwise, the new SqlInt16 structure&amp;#39;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="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true, the new <see cref="System.Data.SqlTypes.SqlInt32"></see> structure&amp;#39;s value is 1. Otherwise, the new SqlInt32 structure&amp;#39;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="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true, the new <see cref="System.Data.SqlTypes.SqlInt64"></see> structure&amp;#39;s value is 1. Otherwise, the new SqlInt64 structure&amp;#39;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="System.Data.SqlTypes.SqlMoney"></see> structure whose value is 1 or 0. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true, the new <see cref="System.Data.SqlTypes.SqlMoney"></see> value is 1. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals false, the new <see cref="System.Data.SqlTypes.SqlMoney"></see> value is 0. If <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value is neither 1 nor 0, the new <see cref="System.Data.SqlTypes.SqlMoney"></see> value is <see cref="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="System.Data.SqlTypes.SqlSingle"></see> structure whose value is 1 or 0.
 If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true, the new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure&amp;#39;s value is 1; otherwise the new <see cref="System.Data.SqlTypes.SqlSingle"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlString"></see> structure whose value is 1 or 0. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> structure&amp;#39;s value equals true then <see cref="System.Data.SqlTypes.SqlString"></see> structure&amp;#39;s value is 1. Otherwise, the new <see cref="System.Data.SqlTypes.SqlString"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlBoolean"></see>. If the value is null, the string will contain &amp;quot;null&amp;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&amp;#39;s value. This property is read-only.</summary>
      <returns>true if the <see cref="System.Data.SqlTypes.SqlBoolean"></see> is <see cref="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="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="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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property contains the ones complement of the <see cref="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="System.Data.SqlTypes.SqlByte"></see> whose <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">An instance of the SqlString class.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the numeric value represented by the <see cref="System.Data.SqlTypes.SqlString"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A SqlMoney structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the SqlInt64 parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlByte)~System.Byte">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to a byte.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to be converted to a byte.</param>
      <returns>A byte whose value equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> parameter to be converted to a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> of the supplied <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Explicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the SqlBoolean will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlByte.op_Implicit(System.Byte)~System.Data.SqlTypes.SqlByte">
      <summary>Converts the supplied byte value to a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property is equal to the supplied parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlByte"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="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&amp;#39;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="System.Data.SqlTypes.SqlByte"></see> structure whose <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property contains the ones complement of the <see cref="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="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="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="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="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="System.Data.SqlTypes.SqlDecimal.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="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="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="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="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="System.Data.SqlTypes.SqlInt64.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="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="System.Data.SqlTypes.SqlMoney.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of this <see cref="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="System.Data.SqlTypes.SqlSingle.Value"></see> as this <see cref="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="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;s <see cref="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="System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="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="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="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="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="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="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="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="System.Int64"></see> value representing the length of the value that is contained in the <see cref="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="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="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="System.Data.SqlTypes.SqlBytes.IsNull"></see> returns true.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBytes)~System.Data.SqlTypes.SqlBinary">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBytes"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure.</summary>
      <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBytes"></see> structure to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlBinary"></see> structure.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlBytes.op_Explicit(System.Data.SqlTypes.SqlBinary)~System.Data.SqlTypes.SqlBytes">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlBytes"></see> structure.</summary>
      <param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary"></see> structure to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlBytes"></see> structure.</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="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.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="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="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="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="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="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="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="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="System.Int64"></see> value that indicates the length in characters of the value that is contained in the <see cref="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="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="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="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="System.Data.SqlTypes.SqlChars.IsNull"></see> returns true. For more information, see Handling Null Values.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlChars">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlChars"></see> structure.</summary>
      <param name="value">The <see cref="T:System.Data.SqlTypes.SqlString"></see> structure to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlChars"></see> structure.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlChars.op_Explicit(System.Data.SqlTypes.SqlChars)~System.Data.SqlTypes.SqlString">
      <summary>Converts a <see cref="T:System.Data.SqlTypes.SqlChars"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlString"></see> structure.</summary>
      <param name="value">The <see cref="T:System.Data.SqlTypes.SqlChars"></see> structure to be converted.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlString"></see> structure.</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="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="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="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="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="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 &amp;quot;computer&amp;quot; or &amp;quot;Internet&amp;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 http://www.unicode.org.</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 &amp;quot;00:00:00 AM 1/1/1900&amp;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="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than <see cref="System.Data.SqlTypes.SqlDateTime"></see>.
 
  Zero
 
  This instance is the same as <see cref="System.Data.SqlTypes.SqlDateTime"></see>.
 
  Greater than zero
 
  This instance is greater than <see cref="System.Data.SqlTypes.SqlDateTime"></see>
 
 -or-
 
 <see cref="System.Data.SqlTypes.SqlDateTime"></see> is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing as Visual Basic).
 
 </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="System.Data.SqlTypes.SqlDateTime.Value"></see> property of this <see cref="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="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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlDateTime"></see>. If either argument is <see cref="System.Data.SqlTypes.SqlDateTime.Null"></see>, the new <see cref="System.Data.SqlTypes.SqlDateTime.Value"></see> is <see cref="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)~System.DateTime">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure to a <see cref="T:System.DateTime"></see> structure.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</param>
      <returns>A <see cref="System.DateTime"></see> object whose <see cref="System.DateTime.Date"></see> and <see cref="System.DateTime.TimeOfDay"></see> properties contain the same date and time values as the <see cref="System.Data.SqlTypes.SqlDateTime.Value"></see> property of the supplied <see cref="System.Data.SqlTypes.SqlDateTime"></see> structure.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDateTime.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDateTime">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlDateTime"></see> structure whose <see cref="System.Data.SqlTypes.SqlDateTime.Value"></see> is equal to the date and time represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlString"></see> is null, the Value of the newly created <see cref="System.Data.SqlTypes.SqlDateTime"></see> structure will be null.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlBoolean"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDateTime.op_Implicit(System.DateTime)~System.Data.SqlTypes.SqlDateTime">
      <summary>Converts a <see cref="T:System.DateTime"></see> structure to a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> structure.</summary>
      <param name="value">A DateTime structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlDateTime"></see> structure whose <see cref="System.Data.SqlTypes.SqlDateTime.Value"></see> is equal to the combined <see cref="System.DateTime.Date"></see> and <see cref="System.DateTime.TimeOfDay"></see> properties of the supplied <see cref="System.DateTime"></see> structure.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDateTime"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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="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="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="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="System.Data.SqlTypes.SqlDateTime.Value"></see> property of this <see cref="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="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="System.Data.SqlTypes"></see> structure is set to null.</exception>
    </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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property contains the unsigned number representing the absolute value of the <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlDecimal"></see> representing the smallest whole number greater than or equal to the specified <see cref="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return Value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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="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="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="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="System.Data.SqlTypes.SqlDecimal"></see> structure that contains the whole number part of this <see cref="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are not equal. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Double)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the <see cref="T:System.Double"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Double"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose value equals the value of the <see cref="System.Double"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlString"></see> object to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> equals the value represented by the <see cref="System.Data.SqlTypes.SqlString"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDecimal)~System.Decimal">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Decimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure to be converted.</param>
      <returns>A new Decimal structure whose value equals the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlBoolean)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDouble"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the <see cref="T:System.Data.SqlTypes.SqlMoney"></see> operand to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Int64)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Int64"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Int64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property equals the value of the <see cref="System.Int64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the <see cref="T:System.Decimal"></see> value to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Decimal"></see> value to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property equals the value of the Decimal parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to SqlDecimal.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> equals the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property is equal to the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see></summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlDecimal">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte"></see> structure to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> property equals the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> property of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDecimal"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlDecimal"></see> structure whose <see cref="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="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="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="System.Data.SqlTypes.SqlDecimal"></see> equivalent to the value that is contained in the specified <see cref="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="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="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&amp;#39;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="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&amp;#39;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="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="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="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="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="System.Data.SqlTypes.SqlByte"></see> structure whose Value equals the Value of this <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure. If the <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure&amp;#39;s Value is true, the <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;s Value will be 1. Otherwise, the <see cref="System.Data.SqlTypes.SqlByte"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlDouble"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlInt16"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlInt32"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlInt64"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlMoney"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlSingle"></see> structure with the same value as this instance of <see cref="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="System.Data.SqlTypes.SqlString"></see> structure whose value is a string representing the value contained in this <see cref="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="System.String"></see> object that contains the string representation of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> structure&amp;#39;s <see cref="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&amp;#39;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="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&amp;#39;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="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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic)
 
 </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>A signed number that indicates the relative values of the instance and the object.
  Return value
 
  Condition
 
  Less than zero
 
  This instance is less than the object.
 
  Zero
 
  This instance is the same as the object.
 
  Greater than zero
 
  This instance is greater than the object
 
 -or-
 
 The object is a null reference (Nothing in Visual Basic).
 
 </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="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.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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> to be converted.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is either 0 or 1, depending on the <see cref="System.Data.SqlTypes.SqlBoolean.ByteValue"></see> property of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlBoolean"></see> is <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlDouble)~System.Double">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure to double.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
      <returns>A double equivalent to the specified <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;s value.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Explicit(System.Data.SqlTypes.SqlString)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlString"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlString"></see> object.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the value of the number represented by the <see cref="System.Data.SqlTypes.SqlString"></see>. If the <see cref="System.Data.SqlTypes.SqlString"></see> is <see cref="System.Data.SqlTypes.SqlString.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Double)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied double value to a <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">The double value to convert.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlDouble"></see> with the same value as the specified double parameter.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlSingle)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlSingle"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlSingle.Value"></see> of the <see cref="System.Data.SqlTypes.SqlSingle"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlSingle"></see> is <see cref="System.Data.SqlTypes.SqlSingle.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlMoney)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlMoney"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlMoney.Value"></see> of the <see cref="System.Data.SqlTypes.SqlMoney"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlMoney"></see> is <see cref="System.Data.SqlTypes.SqlMoney.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt64)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt64"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt64.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt64"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlInt64"></see> is <see cref="System.Data.SqlTypes.SqlInt64.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlDecimal)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlDecimal.Value"></see> of the <see cref="System.Data.SqlTypes.SqlDecimal"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlDecimal"></see> is <see cref="System.Data.SqlTypes.SqlDecimal.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt16)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt16"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> structure whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt16.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt16"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlInt16"></see> is <see cref="System.Data.SqlTypes.SqlInt16.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlInt32)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlInt32"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32"></see> structure.</param>
      <returns>A new <see cref="System.Data.SqlTypes.SqlDouble"></see> whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlInt32.Value"></see> of the <see cref="System.Data.SqlTypes.SqlInt32"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlInt32"></see> is <see cref="System.Data.SqlTypes.SqlInt32.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</returns>
    </member>
    <member name="M:System.Data.SqlTypes.SqlDouble.op_Implicit(System.Data.SqlTypes.SqlByte)~System.Data.SqlTypes.SqlDouble">
      <summary>Converts the supplied <see cref="T:System.Data.SqlTypes.SqlByte"></see> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble"></see> structure.</param>
      <returns>A <see cref="System.Data.SqlTypes.SqlDouble"></see> structure whose <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlByte.Value"></see> of the <see cref="System.Data.SqlTypes.SqlByte"></see> parameter. If the <see cref="System.Data.SqlTypes.SqlByte"></see> is <see cref="System.Data.SqlTypes.SqlByte.Null"></see>, the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure will be <see cref="System.Data.SqlTypes.SqlDouble.Null"></see>.</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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the two instances are not equal or <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the two instances are equal. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="System.Data.SqlTypes.SqlBoolean"></see> that is <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the first instance is less than or equal to the second instance. Otherwise, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see>. If either instance of <see cref="System.Data.SqlTypes.SqlDouble"></see> is null, the <see cref="System.Data.SqlTypes.SqlBoolean.Value"></see> of the <see cref="System.Data.SqlTypes.SqlBoolean"></see> will be <see cref="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="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="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="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="System.Data.SqlTypes.SqlBoolean.Value"></see> will be <see cref="System.Data.SqlTypes.SqlBoolean.True"></see> if the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;s <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> is non-zero, <see cref="System.Data.SqlTypes.SqlBoolean.False"></see> if the <see cref="System.Data.SqlTypes.SqlDouble"></see> is zero and <see cref="System.Data.SqlTypes.SqlBoolean.Null"></see> if the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure is <see cref="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="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="System.Data.SqlTypes.SqlInt16"></see> structure whose Value equals the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlInt32"></see> structure whose Value equals the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlInt64"></see> structure whose Value equals the integer part of the <see cref="System.Data.SqlTypes.SqlDouble"></see> structure&amp;#39;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="System.Data.SqlTypes.SqlMoney.Value"></see> is equal to the value of this <see cref="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="System.Data.SqlTypes.SqlSingle.Value"></see> is equal to the <see cref="System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="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="System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="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="System.Data.SqlTypes.SqlDouble.Value"></see> of this <see cref="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="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="T:Microsoft.SqlServer.Server.SqlDataRecord">
      <summary>Represents a single row of data and its metadata. This class cannot be inherited.</summary>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.#ctor(Microsoft.SqlServer.Server.SqlMetaData[])">
      <summary>Inititializes a new <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord"></see> instance with the schema based on the array of <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> objects passed as an argument.</summary>
      <param name="metaData">An array of <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> objects that describe each column in the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord"></see>.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="metaData">metaData</paramref> is null.</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount">
      <summary>Gets the number of columns in the data row. This property is read-only.</summary>
      <returns>The number of columns in the data row as an integer.</returns>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetBoolean(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Boolean"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Boolean"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetByte(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Byte"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Byte"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as an array of <see cref="T:System.Byte"></see> objects.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="fieldOffset">The offset into the field value to start retrieving bytes.</param>
      <param name="buffer">The target buffer to which to copy bytes.</param>
      <param name="bufferOffset">The offset into the buffer to which to start copying bytes.</param>
      <param name="length">The number of bytes to copy to the buffer.</param>
      <returns>The number of bytes copied.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetChar(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Char"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Char"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as an array of <see cref="T:System.Char"></see> objects.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="fieldOffset">The offset into the field value to start retrieving characters.</param>
      <param name="buffer">The target buffer to copy chars to.</param>
      <param name="bufferOffset">The offset into the buffer to start copying chars to.</param>
      <param name="length">The number of chars to copy to the buffer.</param>
      <returns>The number of characters copied.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetDataTypeName(System.Int32)">
      <summary>Returns the name of the data type for the column specified by the ordinal argument.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>A <see cref="System.String"></see> that contains the data type of the column.</returns>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetDateTime(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.DateTime"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.DateTime"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetDateTimeOffset(System.Int32)">
      <summary>Returns the specified column’s data as a <see cref="T:System.DateTimeOffset"></see>.</summary>
      <param name="ordinal">The zero-based column ordinal.</param>
      <returns>The value of the specified column as a <see cref="System.DateTimeOffset"></see>.</returns>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetDecimal(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Decimal"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Decimal"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetDouble(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Double"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Double"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetFieldType(System.Int32)">
      <summary>Returns a <see cref="T:System.Type"></see> object representing the common language runtime (CLR) type that maps to the SQL Server type of the column specified by the <paramref name="ordinal">ordinal</paramref> argument.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column type as a <see cref="System.Type"></see> object.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.TypeLoadException">The column is of a user-defined type that is not available to the calling application domain.</exception>
      <exception cref="T:System.IO.FileNotFoundException">The column is of a user-defined type that is not available to the calling application domain.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetFloat(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a float.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a float.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetGuid(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Guid"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Guid"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetInt16(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Int16"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Int16"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetInt32(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Int32"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Int32"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetInt64(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Int64"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Int64"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal">ordinal</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetName(System.Int32)">
      <summary>Returns the name of the column specified by the ordinal argument.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>A <see cref="System.String"></see> containing the column name.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetOrdinal(System.String)">
      <summary>Returns the column ordinal specified by the column name.</summary>
      <param name="name">The name of the column to look up.</param>
      <returns>The zero-based ordinal of the column as an integer.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="name">name</paramref> is null.</exception>
      <exception cref="T:System.IndexOutOfRangeException">The column name could not be found.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlBinary(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlBinary"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlBoolean(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlBoolean"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlByte(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlByte"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlBytes(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlBytes"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlBytes"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlChars(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlChars"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlChars"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlDateTime(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlDateTime"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlDecimal(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlDecimal"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlDouble(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlDouble"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlFieldType(System.Int32)">
      <summary>Returns a <see cref="T:System.Type"></see> object that represents the type (as a SQL Server type, defined in <see cref="N:System.Data.SqlTypes"></see>) that maps to the SQL Server type of the column.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column type as a <see cref="System.Type"></see> object.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.TypeLoadException">The column is of a user-defined type that is not available to the calling application domain.</exception>
      <exception cref="T:System.IO.FileNotFoundException">The column is of a user-defined type that is not available to the calling application domain.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlGuid(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlGuid"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlInt16(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlInt16"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlInt32(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlInt32"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlInt64(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlInt64"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlMetaData(System.Int32)">
      <summary>Returns a <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> object, describing the metadata of the column specified by the column ordinal.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column metadata as a <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> object.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlMoney(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlMoney"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlSingle(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlSingle"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlString(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlString"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlValue(System.Int32)">
      <summary>Returns the data value stored in the column, expressed as a SQL Server type, specified by the column ordinal.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The value of the column, expressed as a SQL Server type, as a <see cref="System.Object"></see>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlValues(System.Object[])">
      <summary>Returns the values for all the columns in the record, expressed as SQL Server types, in an array.</summary>
      <param name="values">The array into which to copy the values column values.</param>
      <returns>An <see cref="System.Int32"></see> that indicates the number of columns copied.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetSqlXml(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.Data.SqlTypes.SqlXml"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.Data.SqlTypes.SqlXml"></see>.</returns>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetString(System.Int32)">
      <summary>Gets the value for the column specified by the ordinal as a <see cref="T:System.String"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The column value as a <see cref="System.String"></see>.</returns>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetTimeSpan(System.Int32)">
      <summary>Returns the specified column’s data as a <see cref="T:System.TimeSpan"></see>.</summary>
      <param name="ordinal">The zero-based column ordinal.</param>
      <returns>The value of the specified column as a <see cref="System.TimeSpan"></see>.</returns>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetValue(System.Int32)">
      <summary>Returns the common language runtime (CLR) type value for the column specified by the ordinal argument.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The CLR type value of the column specified by the ordinal.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.GetValues(System.Object[])">
      <summary>Returns the values for all the columns in the record, expressed as common language runtime (CLR) types, in an array.</summary>
      <param name="values">The array into which to copy the values column values.</param>
      <returns>An <see cref="System.Int32"></see> that indicates the number of columns copied.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
      <exception cref="T:System.InvalidCastException">There is a type mismatch.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.IsDBNull(System.Int32)">
      <summary>Returns true if the column specified by the column ordinal parameter is null.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>true if the column is null; false otherwise.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlDataRecord.Item(System.Int32)">
      <summary>Gets the common language runtime (CLR) type value for the column specified by the column <paramref name="ordinal">ordinal</paramref> argument.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns>The CLR type value of the column specified by the <paramref name="ordinal">ordinal</paramref>.</returns>
      <exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlDataRecord.Item(System.String)">
      <summary>Gets the common language runtime (CLR) type value for the column specified by the column <paramref name="name">name</paramref> argument.</summary>
      <param name="name">The name of the column.</param>
      <returns>The CLR type value of the column specified by the <paramref name="name">name</paramref>.</returns>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetBoolean(System.Int32,System.Boolean)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Boolean"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetByte(System.Int32,System.Byte)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Byte"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
      <summary>Sets the data stored in the column to the specified array of <see cref="T:System.Byte"></see> values.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="fieldOffset">The offset into the field value to start copying bytes.</param>
      <param name="buffer">The target buffer from which to copy bytes.</param>
      <param name="bufferOffset">The offset into the buffer from which to start copying bytes.</param>
      <param name="length">The number of bytes to copy from the buffer.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetChar(System.Int32,System.Char)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Char"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
      <summary>Sets the data stored in the column to the specified array of <see cref="T:System.Char"></see> values.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="fieldOffset">The offset into the field value to start copying characters.</param>
      <param name="buffer">The target buffer from which to copy chars.</param>
      <param name="bufferOffset">The offset into the buffer from which to start copying chars.</param>
      <param name="length">The number of chars to copy from the buffer.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetDateTime(System.Int32,System.DateTime)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.DateTime"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetDateTimeOffset(System.Int32,System.DateTimeOffset)">
      <summary>Sets the value of the column specified to the <see cref="T:System.DateTimeOffset"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetDBNull(System.Int32)">
      <summary>Sets the value in the specified column to <see cref="T:System.DBNull"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetDecimal(System.Int32,System.Decimal)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Decimal"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetDouble(System.Int32,System.Double)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Double"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetFloat(System.Int32,System.Single)">
      <summary>Sets the data stored in the column to the specified float value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetGuid(System.Int32,System.Guid)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Guid"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetInt16(System.Int32,System.Int16)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Int16"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetInt32(System.Int32,System.Int32)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Int32"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetInt64(System.Int32,System.Int64)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Int64"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlBinary(System.Int32,System.Data.SqlTypes.SqlBinary)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlBinary"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlBoolean(System.Int32,System.Data.SqlTypes.SqlBoolean)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlByte(System.Int32,System.Data.SqlTypes.SqlByte)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlByte"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlBytes(System.Int32,System.Data.SqlTypes.SqlBytes)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlBytes"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlChars(System.Int32,System.Data.SqlTypes.SqlChars)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlChars"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlDateTime(System.Int32,System.Data.SqlTypes.SqlDateTime)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlDecimal(System.Int32,System.Data.SqlTypes.SqlDecimal)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlDouble(System.Int32,System.Data.SqlTypes.SqlDouble)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlDouble"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlGuid(System.Int32,System.Data.SqlTypes.SqlGuid)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlGuid"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlInt16(System.Int32,System.Data.SqlTypes.SqlInt16)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlInt16"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlInt32(System.Int32,System.Data.SqlTypes.SqlInt32)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlInt64(System.Int32,System.Data.SqlTypes.SqlInt64)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlInt64"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlMoney(System.Int32,System.Data.SqlTypes.SqlMoney)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlMoney"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlSingle(System.Int32,System.Data.SqlTypes.SqlSingle)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlString(System.Int32,System.Data.SqlTypes.SqlString)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlString"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetSqlXml(System.Int32,System.Data.SqlTypes.SqlXml)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.Data.SqlTypes.SqlXml"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetString(System.Int32,System.String)">
      <summary>Sets the data stored in the column to the specified <see cref="T:System.String"></see> value.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetTimeSpan(System.Int32,System.TimeSpan)">
      <summary>Sets the value of the column specified to the <see cref="T:System.TimeSpan"></see>.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> passed in is a negative number.</exception>
      <exception cref="T:System.ArgumentException">The <see cref="System.TimeSpan"></see> value passed in is greater than 24 hours in length.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetValue(System.Int32,System.Object)">
      <summary>Sets a new value, expressed as a common language runtime (CLR) type, for the column specified by the column ordinal.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <param name="value">The new value for the specified column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.SetValues(System.Object[])">
      <summary>Sets new values for all of the columns in the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord"></see>. These values are expressed as common language runtime (CLR) types.</summary>
      <param name="values">The array of new values, expressed as CLR types boxed as <see cref="T:System.Object"></see> references, for the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord"></see> instance.</param>
      <returns>The number of column values set as an integer.</returns>
      <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">The size of values does not match the number of columns in the <see cref="Microsoft.SqlServer.Server.SqlDataRecord"></see> instance.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlDataRecord.System#Data#IDataRecord#GetData(System.Int32)">
      <summary>Not supported in this release.</summary>
      <param name="ordinal">The zero-based ordinal of the column.</param>
      <returns><see cref="System.Data.IDataReader"></see>
 
 Always throws an exception.</returns>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal">ordinal</paramref> is less than 0 or greater than the number of columns (that is, <see cref="Microsoft.SqlServer.Server.SqlDataRecord.FieldCount"></see>).</exception>
    </member>
    <member name="T:Microsoft.SqlServer.Server.SqlMetaData">
      <summary>Specifies and retrieves metadata information from parameters and columns of <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord"></see> objects. This class cannot be inherited.</summary>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name and type.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64,System.Byte,System.Byte,System.Int64,System.Data.SqlTypes.SqlCompareOptions,System.Type,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, maximum length, precision, scale, locale ID, compare options, and user-defined type (UDT). This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <param name="precision">The precision of the parameter or column.</param>
      <param name="scale">The scale of the parameter or column.</param>
      <param name="localeId">The locale ID of the parameter or column.</param>
      <param name="compareOptions">The comparison rules of the parameter or column.</param>
      <param name="userDefinedType">A <see cref="T:System.Type"></see> instance that points to the UDT.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, database name, owning schema, object name, and default server. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="database">The database name of the XML schema collection of a typed XML instance.</param>
      <param name="owningSchema">The relational schema name of the XML schema collection of a typed XML instance.</param>
      <param name="objectName">The name of the XML schema collection of a typed XML instance.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64,System.Int64,System.Data.SqlTypes.SqlCompareOptions,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, maximum length, locale, compare options, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <param name="locale">The locale ID of the parameter or column.</param>
      <param name="compareOptions">The comparison rules of the parameter or column.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Byte,System.Byte,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, precision, scale, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="precision">The precision of the parameter or column.</param>
      <param name="scale">The scale of the parameter or column.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, maximum length, and server default. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64,System.Byte,System.Byte,System.Int64,System.Data.SqlTypes.SqlCompareOptions,System.Type)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, maximum length, precision, scale, locale ID, compare options, and user-defined type (UDT).</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <param name="precision">The precision of the parameter or column.</param>
      <param name="scale">The scale of the parameter or column.</param>
      <param name="locale">The locale ID of the parameter or column.</param>
      <param name="compareOptions">The comparison rules of the parameter or column.</param>
      <param name="userDefinedType">A <see cref="T:System.Type"></see> instance that points to the UDT.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>, or <paramref name="userDefinedType">userDefinedType</paramref> points to a type that does not have <see cref="Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute"></see> declared.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.String,System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, database name, owning schema, and object name.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="database">The database name of the XML schema collection of a typed XML instance.</param>
      <param name="owningSchema">The relational schema name of the XML schema collection of a typed XML instance.</param>
      <param name="objectName">The name of the XML schema collection of a typed XML instance.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null, or <paramref name="objectName">objectName</paramref> is null when <paramref name="database">database</paramref> and <paramref name="owningSchema">owningSchema</paramref> are non-null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64,System.Int64,System.Data.SqlTypes.SqlCompareOptions)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, maximum length, locale, and compare options.</summary>
      <param name="name">The name of the parameter or column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <param name="locale">The locale ID of the parameter or column.</param>
      <param name="compareOptions">The comparison rules of the parameter or column.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Byte,System.Byte)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, precision, and scale.</summary>
      <param name="name">The name of the parameter or column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="precision">The precision of the parameter or column.</param>
      <param name="scale">The scale of the parameter or column.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>, or <paramref name="scale">scale</paramref> was greater than <paramref name="precision">precision</paramref>.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Int64)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, type, and maximum length.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="maxLength">The maximum length of the specified type.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="Name">Name</paramref> is null.</exception>
      <exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType">dbType</paramref>.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Boolean,System.Boolean,System.Data.SqlClient.SortOrder,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> class with the specified column name, and default server. This form of the constructor supports table-valued parameters by allowing you to specify if the column is unique in the table-valued parameter, the sort order for the column, and the ordinal of the sort column.</summary>
      <param name="name">The name of the column.</param>
      <param name="dbType">The SQL Server type of the parameter or column.</param>
      <param name="useServerDefault">Specifes whether this column should use the default server value.</param>
      <param name="isUniqueKey">Specifies if the column in the table-valued parameter is unique.</param>
      <param name="columnSortOrder">Specifies the sort order for a column.</param>
      <param name="sortOrdinal">Specifies the ordinal of the sort column.</param>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Double)">
      <summary>Validates the specified <see cref="T:System.Double"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Double"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlString)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlString"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlString"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlXml)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlXml"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlXml"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.DateTime)">
      <summary>Validates the specified <see cref="T:System.DateTime"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.DateTime"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.DateTimeOffset)">
      <summary>Validates the specified <see cref="T:System.DateTimeOffset"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as an array of <see cref="System.DateTimeOffset"></see> values.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Decimal)">
      <summary>Validates the specified <see cref="T:System.Decimal"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Decimal"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Guid)">
      <summary>Validates the specified <see cref="T:System.Guid"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Guid"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.TimeSpan)">
      <summary>Validates the specified <see cref="T:System.TimeSpan"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as an array of <see cref="System.TimeSpan"></see> values.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Int32)">
      <summary>Validates the specified <see cref="T:System.Int32"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Int32"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Int64)">
      <summary>Validates the specified <see cref="T:System.Int64"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Int64"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Object)">
      <summary>Validates the specified <see cref="T:System.Object"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Object"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Single)">
      <summary>Validates the specified <see cref="T:System.Single"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Single"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.String)">
      <summary>Validates the specified <see cref="T:System.String"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.String"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlMoney)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlMoney"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlMoney"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Int16)">
      <summary>Validates the specified <see cref="T:System.Int16"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Int16"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlInt64)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlInt64"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlInt64"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlSingle)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlSingle"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlSingle"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlInt16)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlInt16"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlInt16"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Byte)">
      <summary>Validates the specified <see cref="T:System.Byte"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Byte"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Byte[])">
      <summary>Validates the specified array of <see cref="T:System.Byte"></see> values against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as an array of <see cref="System.Byte"></see> values.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Char)">
      <summary>Validates the specified <see cref="T:System.Char"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Char"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Char[])">
      <summary>Validates the specified array of <see cref="T:System.Char"></see> values against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as an array <see cref="System.Char"></see> values.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlBinary)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlBinary"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlBinary"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlBoolean)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlBoolean"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlBoolean"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Boolean)">
      <summary>Validates the specified <see cref="T:System.Boolean"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Boolean"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlByte)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlByte"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlByte"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlChars)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlChars"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlChars"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlDateTime)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlDateTime"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlDateTime"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlDecimal)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlDecimal"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlDecimal"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlDouble)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlDouble"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlDouble"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlGuid)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlGuid"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlGuid"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlInt32)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlInt32"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlInt32"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Data.SqlTypes.SqlBytes)">
      <summary>Validates the specified <see cref="T:System.Data.SqlTypes.SqlBytes"></see> value against the metadata, and adjusts the value if necessary.</summary>
      <param name="value">The value to validate against the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The adjusted value as a <see cref="System.Data.SqlTypes.SqlBytes"></see>.</returns>
      <exception cref="T:System.ArgumentException"><paramref name="Value">Value</paramref> does not match the <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> type, or <paramref name="value">value</paramref> could not be adjusted.</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.CompareOptions">
      <summary>Gets the comparison rules used for the column or parameter.</summary>
      <returns>The comparison rules used for the column or parameter as a <see cref="System.Data.SqlTypes.SqlCompareOptions"></see>.</returns>
    </member>
    <member name="M:Microsoft.SqlServer.Server.SqlMetaData.InferFromValue(System.Object,System.String)">
      <summary>Infers the metadata from the specified object and returns it as a <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</summary>
      <param name="value">The object used from which the metadata is inferred.</param>
      <param name="name">The name assigned to the returned <see cref="T:Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</param>
      <returns>The inferred metadata as a <see cref="Microsoft.SqlServer.Server.SqlMetaData"></see> instance.</returns>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value">value</paramref> is null.</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.IsUniqueKey">
      <summary>Indicates if the column in the table-valued parameter is unique.</summary>
      <returns>A Boolean value.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.LocaleId">
      <summary>Gets the locale ID of the column or parameter.</summary>
      <returns>The locale ID of the column or parameter as a <see cref="System.Int64"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.Max">
      <summary>Gets the length of text, ntext, and image data types.</summary>
      <returns>The length of text, ntext, and image data types.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.MaxLength">
      <summary>Gets the maximum length of the column or parameter.</summary>
      <returns>The maximum length of the column or parameter as a <see cref="System.Int64"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.Name">
      <summary>Gets the name of the column or parameter.</summary>
      <returns>The name of the column or parameter as a <see cref="System.String"></see>.</returns>
      <exception cref="T:System.InvalidOperationException">The <paramref name="Name">Name</paramref> specified in the constructor is longer than 128 characters.</exception>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.Precision">
      <summary>Gets the precision of the column or parameter.</summary>
      <returns>The precision of the column or parameter as a <see cref="System.Byte"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.Scale">
      <summary>Gets the scale of the column or parameter.</summary>
      <returns>The scale of the column or parameter.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.SortOrder">
      <summary>Returns the sort order for a column.</summary>
      <returns>A <see cref="System.Data.SqlClient.SortOrder"></see> object.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.SortOrdinal">
      <summary>Returns the ordinal of the sort column.</summary>
      <returns>The ordinal of the sort column.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.SqlDbType">
      <summary>Gets the data type of the column or parameter.</summary>
      <returns>The data type of the column or parameter as a <see cref="System.Data.DbType"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.TypeName">
      <summary>Gets the three-part name of the user-defined type (UDT) or the SQL Server type represented by the instance.</summary>
      <returns>The name of the UDT or SQL Server type as a <see cref="System.String"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.UseServerDefault">
      <summary>Reports whether this column should use the default server value.</summary>
      <returns>A Boolean value.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.XmlSchemaCollectionDatabase">
      <summary>Gets the name of the database where the schema collection for this XML instance is located.</summary>
      <returns>The name of the database where the schema collection for this XML instance is located as a <see cref="System.String"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.XmlSchemaCollectionName">
      <summary>Gets the name of the schema collection for this XML instance.</summary>
      <returns>The name of the schema collection for this XML instance as a <see cref="System.String"></see>.</returns>
    </member>
    <member name="P:Microsoft.SqlServer.Server.SqlMetaData.XmlSchemaCollectionOwningSchema">
      <summary>Gets the owning relational schema where the schema collection for this XML instance is located.</summary>
      <returns>The owning relational schema where the schema collection for this XML instance is located as a <see cref="System.String"></see>.</returns>
    </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>
  </members>
</doc>