21806 lines
2.0 MiB
21806 lines
2.0 MiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>System.Data</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:Microsoft.SqlServer.Server.DataAccessKind">
|
|
<summary>Describes the type of access to user data for a user-defined method or function.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.DataAccessKind.None">
|
|
<summary>The method or function does not access user data.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.DataAccessKind.Read">
|
|
<summary>The method or function reads user data.</summary>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.Format">
|
|
<summary>Used by <see cref="T:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute" /> and <see cref="T:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute" /> to indicate the serialization format of a user-defined type (UDT) or aggregate.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.Format.Native">
|
|
<summary>The <see langword="Native" /> serialization format uses a very simple algorithm that enables SQL Server to store an efficient representation of the UDT on disk. Types marked for <see langword="Native" /> serialization can only have value types (structs in Microsoft Visual C# and structures in Microsoft Visual Basic .NET) as members. Members of reference types (such as classes in Visual C# and Visual Basic), either user-defined or those existing in the framework (such as <see cref="T:System.String" />), are not supported.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.Format.Unknown">
|
|
<summary>The serialization format is unknown.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.Format.UserDefined">
|
|
<summary>The <see langword="UserDefined" /> serialization format gives the developer full control over the binary format through the <see cref="T:Microsoft.SqlServer.Server.IBinarySerialize" /><see langword=".Write" /> and <see cref="T:Microsoft.SqlServer.Server.IBinarySerialize" /><see langword=".Read" /> methods.</summary>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.IBinarySerialize">
|
|
<summary>Provides custom implementation for user-defined type (UDT) and user-defined aggregate serialization and deserialization.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.IBinarySerialize.Read(System.IO.BinaryReader)">
|
|
<summary>Generates a user-defined type (UDT) or user-defined aggregate from its binary form.</summary>
|
|
<param name="r">The <see cref="T:System.IO.BinaryReader" /> stream from which the object is deserialized.</param>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.IBinarySerialize.Write(System.IO.BinaryWriter)">
|
|
<summary>Converts a user-defined type (UDT) or user-defined aggregate into its binary format so that it may be persisted.</summary>
|
|
<param name="w">The <see cref="T:System.IO.BinaryWriter" /> stream to which the UDT or user-defined aggregate is serialized.</param>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.InvalidUdtException">
|
|
<summary>Thrown when SQL Server or the ADO.NET <see cref="N:System.Data.SqlClient" /> provider detects an invalid user-defined type (UDT).</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.InvalidUdtException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Streams all the <see cref="T:Microsoft.SqlServer.Server.InvalidUdtException" /> properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
<param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlContext">
|
|
<summary>Represents an abstraction of the caller's context, which provides access to the <see cref="T:Microsoft.SqlServer.Server.SqlPipe" />, <see cref="T:Microsoft.SqlServer.Server.SqlTriggerContext" />, and <see cref="T:System.Security.Principal.WindowsIdentity" /> objects. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlContext.IsAvailable">
|
|
<summary>Specifies whether the calling code is running within SQL Server, and if the context connection can be accessed.</summary>
|
|
<returns>
|
|
<see langword="True" /> if the context connection is available and the other <see cref="T:Microsoft.SqlServer.Server.SqlContext" /> members can be accessed.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlContext.Pipe">
|
|
<summary>Gets the pipe object that allows the caller to send result sets, messages, and the results of executing commands back to the client.</summary>
|
|
<returns>An instance of <see cref="T:Microsoft.SqlServer.Server.SqlPipe" /> if a pipe is available, or <see langword="null" /> if called in a context where pipe is not available (for example, in a user-defined function).</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlContext.TriggerContext">
|
|
<summary>Gets the trigger context used to provide the caller with information about what caused the trigger to fire, and a map of the columns that were updated.</summary>
|
|
<returns>An instance of <see cref="T:Microsoft.SqlServer.Server.SqlTriggerContext" /> if a trigger context is available, or <see langword="null" /> if called outside of a trigger invocation.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlContext.WindowsIdentity">
|
|
<summary>The Microsoft Windows identity of the caller.</summary>
|
|
<returns>A <see cref="T:System.Security.Principal.WindowsIdentity" /> instance representing the Windows identity of the caller, or <see langword="null" /> if the client was authenticated using SQL Server Authentication.</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" /> instance with the schema based on the array of <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> objects passed as an argument.</summary>
|
|
<param name="metaData">An array of <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> objects that describe each column in the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="metaData" /> is <see langword="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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Boolean" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Byte" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Char" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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="T:System.String" /> that contains the data type of the column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.DateTime" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.DateTimeOffset" />.</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Decimal" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Double" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" /> object representing the common language runtime (CLR) type that maps to the SQL Server type of the column specified by the <paramref name="ordinal" /> argument.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column type as a <see cref="T:System.Type" /> object.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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 <see langword="float" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see langword="float" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Guid" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Int16" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Int32" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Int64" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The column specified by <paramref name="ordinal" /> 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="T:System.String" /> containing the column name.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> is <see langword="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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlBinary" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlBytes" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlChars" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> object that represents the type (as a SQL Server type, defined in <see cref="N:System.Data.SqlTypes" />) 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="T:System.Type" /> object.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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="T:Microsoft.SqlServer.Server.SqlMetaData" /> object.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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="T:System.Object" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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="T:System.Int32" /> that indicates the number of columns copied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="values" /> is <see langword="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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.Data.SqlTypes.SqlXml" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The column value as a <see cref="T:System.String" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.TimeSpan" />.</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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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="T:System.Int32" /> that indicates the number of columns copied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="values" /> is <see langword="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>
|
|
<see langword="true" /> if the column is null; <see langword="false" /> otherwise.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" />.</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" /> 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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" />.</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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 <see langword="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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />.</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" /> passed in is a negative number.</exception>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.TimeSpan" /> 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" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</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" />. 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" /> references, for the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> instance.</param>
|
|
<returns>The number of column values set as an integer.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="values" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The size of values does not match the number of columns in the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> 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="T:System.Data.IDataReader" />
|
|
|
|
Always throws an exception.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="ordinal" /> is less than 0 or greater than the number of columns (that is, <see cref="P:Microsoft.SqlServer.Server.SqlDataRecord.FieldCount" />).</exception>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlFacetAttribute">
|
|
<summary>Annotates the returned result of a user-defined type (UDT) with additional information that can be used in Transact-SQL.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlFacetAttribute.#ctor">
|
|
<summary>An optional attribute on a user-defined type (UDT) return type, used to annotate the returned result with additional information that can be used in Transact-SQL.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFacetAttribute.IsFixedLength">
|
|
<summary>Indicates whether the return type of the user-defined type is of a fixed length.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the return type is of a fixed length; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFacetAttribute.IsNullable">
|
|
<summary>Indicates whether the return type of the user-defined type can be <see langword="null" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the return type of the user-defined type can be <see langword="null" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFacetAttribute.MaxSize">
|
|
<summary>The maximum size, in logical units, of the underlying field type of the user-defined type.</summary>
|
|
<returns>An <see cref="T:System.Int32" /> representing the maximum size, in logical units, of the underlying field type.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFacetAttribute.Precision">
|
|
<summary>The precision of the return type of the user-defined type.</summary>
|
|
<returns>An <see cref="T:System.Int32" /> representing the precision of the return type.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFacetAttribute.Scale">
|
|
<summary>The scale of the return type of the user-defined type.</summary>
|
|
<returns>An <see cref="T:System.Int32" /> representing the scale of the return type.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlFunctionAttribute">
|
|
<summary>Used to mark a method definition of a user-defined aggregate as a function in SQL Server. The properties on the attribute reflect the physical characteristics used when the type is registered with SQL Server.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlFunctionAttribute.#ctor">
|
|
<summary>An optional attribute on a user-defined aggregate, used to indicate that the method should be registered in SQL Server as a function. Also used to set the <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.DataAccess" />, <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.FillRowMethodName" />, <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.IsDeterministic" />, <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.IsPrecise" />, <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.Name" />, <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.SystemDataAccess" />, and <see cref="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.TableDefinition" /> properties of the function attribute.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.DataAccess">
|
|
<summary>Indicates whether the function involves access to user data stored in the local instance of SQL Server.</summary>
|
|
<returns>
|
|
<see cref="T:Microsoft.SqlServer.Server.DataAccessKind" />.<see langword="None" />: Does not access data. <see cref="T:Microsoft.SqlServer.Server.DataAccessKind" />.<see langword="Read" />: Only reads user data.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.FillRowMethodName">
|
|
<summary>The name of a method in the same class which is used to fill a row of data in the table returned by the table-valued function.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the name of a method in the same class which is used to fill a row of data in the table returned by the table-valued function.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.IsDeterministic">
|
|
<summary>Indicates whether the user-defined function is deterministic.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the function is deterministic; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.IsPrecise">
|
|
<summary>Indicates whether the function involves imprecise computations, such as floating point operations.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the function involves precise computations; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.Name">
|
|
<summary>The name under which the function should be registered in SQL Server.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the name under which the function should be registered.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.SystemDataAccess">
|
|
<summary>Indicates whether the function requires access to data stored in the system catalogs or virtual system tables of SQL Server.</summary>
|
|
<returns>
|
|
<see cref="T:Microsoft.SqlServer.Server.DataAccessKind" />.<see langword="None" />: Does not access system data. <see cref="T:Microsoft.SqlServer.Server.DataAccessKind" />.<see langword="Read" />: Only reads system data.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlFunctionAttribute.TableDefinition">
|
|
<summary>A string that represents the table definition of the results, if the method is used as a table-valued function (TVF).</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the table definition of the results.</returns>
|
|
</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" /> 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" /> 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" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A <see langword="SqlDbType" /> that is not allowed was passed to the constructor as <paramref name="dbType" />.</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" /> 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.#ctor(System.String,System.Data.SqlDbType,System.Byte,System.Byte)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> 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" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A <see langword="SqlDbType" /> that is not allowed was passed to the constructor as <paramref name="dbType" />, or <paramref name="scale" /> was greater than <paramref name="precision" />.</exception>
|
|
</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" /> 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)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> 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" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType" />.</exception>
|
|
</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" /> 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" /> 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" /> instance that points to the UDT.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="Name" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A <see langword="SqlDbType" /> that is not allowed was passed to the constructor as <paramref name="dbType" />, or <paramref name="userDefinedType" /> points to a type that does not have <see cref="T:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute" /> declared.</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" /> 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" /> 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.Int64,System.Int64,System.Data.SqlTypes.SqlCompareOptions)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> 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" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType" />.</exception>
|
|
</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" /> 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.String,System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> 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" /> is <see langword="null" />, or <paramref name="objectName" /> is <see langword="null" /> when <paramref name="database" /> and <paramref name="owningSchema" /> are non-<see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType" />.</exception>
|
|
</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" /> 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.Type)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> class with the specified column name, type, 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="userDefinedType">A <see cref="T:System.Type" /> instance that points to the UDT.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="Name" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">A SqlDbType that is not allowed was passed to the constructor as <paramref name="dbType" />, or <paramref name="userDefinedType" /> points to a type that does not have <see cref="T:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute" /> declared.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Type,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> class with the specified column name, user-defined type (UDT), and SQLServer type.</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="userDefinedType">A <see cref="T:System.Type" /> instance that points to the UDT.</param>
|
|
<param name="serverTypeName">The SQL Server type name for <paramref name="userDefinedType" />.</param>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlMetaData.#ctor(System.String,System.Data.SqlDbType,System.Type,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" /> class with the specified column name, type, user-defined type, SQL Server type, 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="userDefinedType">A <see cref="T:System.Type" /> instance that points to the UDT.</param>
|
|
<param name="serverTypeName">The SQL Server type name for <paramref name="userDefinedType" />.</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.Boolean)">
|
|
<summary>Validates the specified <see cref="T:System.Boolean" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Boolean" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Byte" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as an array of <see cref="T:System.Byte" /> values.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Char" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as an array <see cref="T:System.Char" /> values.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlBinary" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlBytes" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlChars" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Data.SqlTypes.SqlXml" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.DateTime" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as an array of <see cref="T:System.DateTimeOffset" /> values.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Decimal" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> could not be adjusted.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlMetaData.Adjust(System.Double)">
|
|
<summary>Validates the specified <see cref="T:System.Double" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Double" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Guid" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Int16" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Int32" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Int64" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Object" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.Single" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as a <see cref="T:System.String" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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" /> 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" /> instance.</param>
|
|
<returns>The adjusted value as an array of <see cref="T:System.TimeSpan" /> values.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="Value" /> does not match the <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> type, or <paramref name="value" /> 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="T:System.Data.SqlTypes.SqlCompareOptions" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMetaData.DbType">
|
|
<summary>Gets the data type of the column or parameter.</summary>
|
|
<returns>The data type of the column or parameter as a <see cref="T:System.Data.DbType" />.</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" /> 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" /> instance.</param>
|
|
<returns>The inferred metadata as a <see cref="T:Microsoft.SqlServer.Server.SqlMetaData" /> instance.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> is <see langword="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 <see langword="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="T:System.Int64" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMetaData.Max">
|
|
<summary>Gets the length of <see langword="text" />, <see langword="ntext" />, and <see langword="image" /> data types.</summary>
|
|
<returns>The length of <see langword="text" />, <see langword="ntext" />, and <see langword="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="T:System.Int64" />.</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="T:System.String" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="Name" /> 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="T:System.Byte" />.</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="T:System.Data.SqlClient.SortOrder" /> 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="T:System.Data.DbType" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMetaData.Type">
|
|
<summary>Gets the common language runtime (CLR) type of a user-defined type (UDT).</summary>
|
|
<returns>The CLR type name of a user-defined type as a <see cref="T:System.Type" />.</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="T:System.String" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMetaData.UseServerDefault">
|
|
<summary>Reports whether this column should use the default server value.</summary>
|
|
<returns>A <see langword="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="T:System.String" />.</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="T:System.String" />.</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="T:System.String" />.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlMethodAttribute">
|
|
<summary>Indicates the determinism and data access properties of a method or property on a user-defined type (UDT). The properties on the attribute reflect the physical characteristics that are used when the type is registered with SQL Server.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlMethodAttribute.#ctor">
|
|
<summary>An attribute on a user-defined type (UDT), used to indicate the determinism and data access properties of a method or a property on a UDT.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMethodAttribute.InvokeIfReceiverIsNull">
|
|
<summary>Indicates whether SQL Server should invoke the method on null instances.</summary>
|
|
<returns>
|
|
<see langword="true" /> if SQL Server should invoke the method on null instances; otherwise, <see langword="false" />. If the method cannot be invoked (because of an attribute on the method), the SQL Server <see langword="DbNull" /> is returned.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMethodAttribute.IsMutator">
|
|
<summary>Indicates whether a method on a user-defined type (UDT) is a mutator.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the method is a mutator; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlMethodAttribute.OnNullCall">
|
|
<summary>Indicates whether the method on a user-defined type (UDT) is called when <see langword="null" /> input arguments are specified in the method invocation.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the method is called when <see langword="null" /> input arguments are specified in the method invocation; <see langword="false" /> if the method returns a <see langword="null" /> value when any of its input parameters are <see langword="null" />. If the method cannot be invoked (because of an attribute on the method), the SQL Server <see langword="DbNull" /> is returned.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlPipe">
|
|
<summary>Allows managed stored procedures running in-process on a SQL Server database to return results back to the caller. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.ExecuteAndSend(System.Data.SqlClient.SqlCommand)">
|
|
<summary>Executes the command passed as a parameter and sends the results to the client.</summary>
|
|
<param name="command">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object to be executed.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="command" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">This method is not supported on commands bound to out-of-process connections.</exception>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlPipe.IsSendingResults">
|
|
<summary>Gets a value that indicates whether the <see cref="T:Microsoft.SqlServer.Server.SqlPipe" /> is in the mode of sending single result sets back to the client. This property is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)" /> method has been called and the <see cref="T:Microsoft.SqlServer.Server.SqlPipe" /> is in the mode of sending single result sets back to the client; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.Send(Microsoft.SqlServer.Server.SqlDataRecord)">
|
|
<summary>Sends a single-row result set directly to the client or current output consumer.</summary>
|
|
<param name="record">The single-row result set sent to the client: a <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> object.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="record" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.Send(System.Data.SqlClient.SqlDataReader)">
|
|
<summary>Sends a multirow result set directly to the client or current output consumer.</summary>
|
|
<param name="reader">The multirow result set to be sent to the client: a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="reader" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.Send(System.String)">
|
|
<summary>Sends a string message directly to the client or current output consumer.</summary>
|
|
<param name="message">The message string to be sent to the client.</param>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="message" /> is greater than 4,000 characters.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="message" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsEnd">
|
|
<summary>Marks the end of a result set, and returns the <see cref="T:Microsoft.SqlServer.Server.SqlPipe" /> instance back to the initial state.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)" /> method was not previously called.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord)">
|
|
<summary>Sends a single row of data back to the client.</summary>
|
|
<param name="record">A <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> object with the column values for the row to be sent to the client. The schema for the record must match the schema described by the metadata of the <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> passed to the <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)" /> method.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="record" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)" /> method was not previously called.</exception>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)">
|
|
<summary>Marks the beginning of a result set to be sent back to the client, and uses the record parameter to construct the metadata that describes the result set.</summary>
|
|
<param name="record">A <see cref="T:Microsoft.SqlServer.Server.SqlDataRecord" /> object from which metadata is extracted and used to describe the result set.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="record" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="record" /> has no columns or has not been initialized.</exception>
|
|
<exception cref="T:System.InvalidOperationException">A method other than <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsRow(Microsoft.SqlServer.Server.SqlDataRecord)" /> or <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsEnd" /> was called after the <see cref="M:Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(Microsoft.SqlServer.Server.SqlDataRecord)" /> method.</exception>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlProcedureAttribute">
|
|
<summary>Used to mark a method definition in an assembly as a stored procedure. The properties on the attribute reflect the physical characteristics used when the type is registered with SQL Server. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlProcedureAttribute.#ctor">
|
|
<summary>An attribute on a method definition in an assembly, used to indicate that the given method should be registered as a stored procedure in SQL Server.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlProcedureAttribute.Name">
|
|
<summary>The name of the stored procedure.</summary>
|
|
<returns>A <see cref="T:System.String" /> representing the name of the stored procedure.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlTriggerAttribute">
|
|
<summary>Used to mark a method definition in an assembly as a trigger in SQL Server. The properties on the attribute reflect the physical attributes used when the type is registered with SQL Server. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlTriggerAttribute.#ctor">
|
|
<summary>An attribute on a method definition in an assembly, used to mark the method as a trigger in SQL Server.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerAttribute.Event">
|
|
<summary>The type of trigger and what data manipulation language (DML) action activates the trigger.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the type of trigger and what data manipulation language (DML) action activates the trigger.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerAttribute.Name">
|
|
<summary>The name of the trigger.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the name of the trigger.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerAttribute.Target">
|
|
<summary>The table to which the trigger applies.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the table name.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlTriggerContext">
|
|
<summary>Provides contextual information about the trigger that was fired.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerContext.ColumnCount">
|
|
<summary>Gets the number of columns contained by the data table bound to the trigger. This property is read-only.</summary>
|
|
<returns>The number of columns contained by the data table bound to the trigger, as an integer.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerContext.EventData">
|
|
<summary>Gets the event data specific to the action that fired the trigger.</summary>
|
|
<returns>The event data specific to the action that fired the trigger as a <see cref="T:System.Data.SqlTypes.SqlXml" /> if more information is available; <see langword="null" /> otherwise.</returns>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlTriggerContext.IsUpdatedColumn(System.Int32)">
|
|
<summary>Returns <see langword="true" /> if a column was affected by an INSERT or UPDATE statement.</summary>
|
|
<param name="columnOrdinal">The zero-based ordinal of the column.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column was affected by an INSERT or UPDATE operation.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Called in the context of a trigger where the value of the <see cref="P:Microsoft.SqlServer.Server.SqlTriggerContext.TriggerAction" /> property is not <see langword="Insert" /> or <see langword="Update" />.</exception>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlTriggerContext.TriggerAction">
|
|
<summary>Indicates what action fired the trigger.</summary>
|
|
<returns>The action that fired the trigger as a <see cref="T:Microsoft.SqlServer.Server.TriggerAction" />.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute">
|
|
<summary>Indicates that the type should be registered as a user-defined aggregate. The properties on the attribute reflect the physical attributes used when the type is registered with SQL Server. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.#ctor(Microsoft.SqlServer.Server.Format)">
|
|
<summary>A required attribute on a user-defined aggregate, used to indicate that the given type is a user-defined aggregate and the storage format of the user-defined aggregate.</summary>
|
|
<param name="format">One of the <see cref="T:Microsoft.SqlServer.Server.Format" /> values representing the serialization format of the aggregate.</param>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.Format">
|
|
<summary>The serialization format as a <see cref="T:Microsoft.SqlServer.Server.Format" />.</summary>
|
|
<returns>A <see cref="T:Microsoft.SqlServer.Server.Format" /> representing the serialization format.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.IsInvariantToDuplicates">
|
|
<summary>Indicates whether the aggregate is invariant to duplicates.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the aggregate is invariant to duplicates; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.IsInvariantToNulls">
|
|
<summary>Indicates whether the aggregate is invariant to nulls.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the aggregate is invariant to nulls; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.IsInvariantToOrder">
|
|
<summary>Indicates whether the aggregate is invariant to order.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the aggregate is invariant to order; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.IsNullIfEmpty">
|
|
<summary>Indicates whether the aggregate returns <see langword="null" /> if no values have been accumulated.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the aggregate returns <see langword="null" /> if no values have been accumulated; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.MaxByteSize">
|
|
<summary>The maximum size, in bytes, of the aggregate instance.</summary>
|
|
<returns>An <see cref="T:System.Int32" /> value representing the maximum size of the aggregate instance.</returns>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.MaxByteSizeValue">
|
|
<summary>The maximum size, in bytes, required to store the state of this aggregate instance during computation.</summary>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedAggregateAttribute.Name">
|
|
<summary>The name of the aggregate.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the name of the aggregate.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute">
|
|
<summary>Used to mark a type definition in an assembly as a user-defined type (UDT) in SQL Server. The properties on the attribute reflect the physical characteristics used when the type is registered with SQL Server. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.#ctor(Microsoft.SqlServer.Server.Format)">
|
|
<summary>A required attribute on a user-defined type (UDT), used to confirm that the given type is a UDT and to indicate the storage format of the UDT.</summary>
|
|
<param name="format">One of the <see cref="T:Microsoft.SqlServer.Server.Format" /> values representing the serialization format of the type.</param>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.Format">
|
|
<summary>The serialization format as a <see cref="T:Microsoft.SqlServer.Server.Format" />.</summary>
|
|
<returns>A <see cref="T:Microsoft.SqlServer.Server.Format" /> value representing the serialization format.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.IsByteOrdered">
|
|
<summary>Indicates whether the user-defined type is byte ordered.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the user-defined type is byte ordered; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.IsFixedLength">
|
|
<summary>Indicates whether all instances of this user-defined type are the same length.</summary>
|
|
<returns>
|
|
<see langword="true" /> if all instances of this type are the same length; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.MaxByteSize">
|
|
<summary>The maximum size of the instance, in bytes.</summary>
|
|
<returns>An <see cref="T:System.Int32" /> value representing the maximum size of the instance.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.Name">
|
|
<summary>The SQL Server name of the user-defined type.</summary>
|
|
<returns>A <see cref="T:System.String" /> value representing the SQL Server name of the user-defined type.</returns>
|
|
</member>
|
|
<member name="P:Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute.ValidationMethodName">
|
|
<summary>The name of the method used to validate instances of the user-defined type.</summary>
|
|
<returns>A <see cref="T:System.String" /> representing the name of the method used to validate instances of the user-defined type.</returns>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.SystemDataAccessKind">
|
|
<summary>Describes the type of access to system data for a user-defined method or function.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.SystemDataAccessKind.None">
|
|
<summary>The method or function does not access system data.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.SystemDataAccessKind.Read">
|
|
<summary>The method or function reads system data.</summary>
|
|
</member>
|
|
<member name="T:Microsoft.SqlServer.Server.TriggerAction">
|
|
<summary>The <see cref="T:Microsoft.SqlServer.Server.TriggerAction" /> enumeration is used by the <see cref="T:Microsoft.SqlServer.Server.SqlTriggerContext" /> class to indicate what action fired the trigger.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterAppRole">
|
|
<summary>An ALTER APPLICATION ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterAssembly">
|
|
<summary>An ALTER ASSEMBLY Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterBinding">
|
|
<summary>An ALTER_REMOTE_SERVICE_BINDING event type was specified when an event notification was created on the database or server instance.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterFunction">
|
|
<summary>An ALTER FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterIndex">
|
|
<summary>An ALTER INDEX Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterLogin">
|
|
<summary>An ALTER LOGIN Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterPartitionFunction">
|
|
<summary>An ALTER PARTITION FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterPartitionScheme">
|
|
<summary>An ALTER PARTITION SCHEME Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterProcedure">
|
|
<summary>An ALTER PROCEDURE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterQueue">
|
|
<summary>An ALTER QUEUE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterRole">
|
|
<summary>An ALTER ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterRoute">
|
|
<summary>An ALTER ROUTE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterSchema">
|
|
<summary>An ALTER SCHEMA Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterService">
|
|
<summary>An ALTER SERVICE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterTable">
|
|
<summary>An ALTER TABLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterTrigger">
|
|
<summary>An ALTER TRIGGER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterUser">
|
|
<summary>An ALTER USER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.AlterView">
|
|
<summary>An ALTER VIEW Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateAppRole">
|
|
<summary>A CREATE APPLICATION ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateAssembly">
|
|
<summary>A CREATE ASSEMBLY Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateBinding">
|
|
<summary>A CREATE_REMOTE_SERVICE_BINDING event type was specified when an event notification was created on the database or server instance.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateContract">
|
|
<summary>A CREATE CONTRACT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateEventNotification">
|
|
<summary>A CREATE EVENT NOTIFICATION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateFunction">
|
|
<summary>A CREATE FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateIndex">
|
|
<summary>A CREATE INDEX Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateLogin">
|
|
<summary>A CREATE LOGIN Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateMsgType">
|
|
<summary>A CREATE MESSAGE TYPE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreatePartitionFunction">
|
|
<summary>A CREATE PARTITION FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreatePartitionScheme">
|
|
<summary>A CREATE PARTITION SCHEME Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateProcedure">
|
|
<summary>A CREATE PROCEDURE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateQueue">
|
|
<summary>A CREATE QUEUE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateRole">
|
|
<summary>A CREATE ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateRoute">
|
|
<summary>A CREATE ROUTE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateSchema">
|
|
<summary>A CREATE SCHEMA Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateSecurityExpression">
|
|
<summary>Not available.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateService">
|
|
<summary>A CREATE SERVICE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateSynonym">
|
|
<summary>A CREATE SYNONYM Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateTable">
|
|
<summary>A CREATE TABLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateTrigger">
|
|
<summary>A CREATE TRIGGER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateType">
|
|
<summary>A CREATE TYPE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateUser">
|
|
<summary>A CREATE USER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.CreateView">
|
|
<summary>A CREATE VIEW Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.Delete">
|
|
<summary>A DELETE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DenyObject">
|
|
<summary>A DENY Object Permissions Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DenyStatement">
|
|
<summary>A DENY Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropAppRole">
|
|
<summary>A DROP APPLICATION ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropAssembly">
|
|
<summary>A DROP ASSEMBLY Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropBinding">
|
|
<summary>A DROP_REMOTE_SERVICE_BINDING event type was specified when an event notification was created on the database or server instance.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropContract">
|
|
<summary>A DROP CONTRACT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropEventNotification">
|
|
<summary>A DROP EVENT NOTIFICATION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropFunction">
|
|
<summary>A DROP FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropIndex">
|
|
<summary>A DROP INDEX Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropLogin">
|
|
<summary>A DROP LOGIN Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropMsgType">
|
|
<summary>A DROP MESSAGE TYPE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropPartitionFunction">
|
|
<summary>A DROP PARTITION FUNCTION Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropPartitionScheme">
|
|
<summary>A DROP PARTITION SCHEME Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropProcedure">
|
|
<summary>A DROP PROCEDURE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropQueue">
|
|
<summary>A DROP QUEUE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropRole">
|
|
<summary>A DROP ROLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropRoute">
|
|
<summary>A DROP ROUTE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropSchema">
|
|
<summary>A DROP SCHEMA Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropSecurityExpression">
|
|
<summary>Not available.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropService">
|
|
<summary>A DROP SERVICE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropSynonym">
|
|
<summary>A DROP SYNONYM Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropTable">
|
|
<summary>A DROP TABLE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropTrigger">
|
|
<summary>A DROP TRIGGER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropType">
|
|
<summary>A DROP TYPE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropUser">
|
|
<summary>A DROP USER Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.DropView">
|
|
<summary>A DROP VIEW Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.GrantObject">
|
|
<summary>A GRANT OBJECT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.GrantStatement">
|
|
<summary>A GRANT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.Insert">
|
|
<summary>An INSERT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.Invalid">
|
|
<summary>An invalid trigger action, one that is not exposed to the user, occurred.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.RevokeObject">
|
|
<summary>A REVOKE OBJECT Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.RevokeStatement">
|
|
<summary>A REVOKE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="F:Microsoft.SqlServer.Server.TriggerAction.Update">
|
|
<summary>An UPDATE Transact-SQL statement was executed.</summary>
|
|
</member>
|
|
<member name="T:System.Data.AcceptRejectRule">
|
|
<summary>Determines the action that occurs when the <see cref="M:System.Data.DataSet.AcceptChanges" /> or <see cref="M:System.Data.DataTable.RejectChanges" /> method is invoked on a <see cref="T:System.Data.DataTable" /> with a <see cref="T:System.Data.ForeignKeyConstraint" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.AcceptRejectRule.Cascade">
|
|
<summary>Changes are cascaded across the relationship.</summary>
|
|
</member>
|
|
<member name="F:System.Data.AcceptRejectRule.None">
|
|
<summary>No action occurs (default).</summary>
|
|
</member>
|
|
<member name="T:System.Data.CommandBehavior">
|
|
<summary>Provides a description of the results of the query and its effect on the database.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.CloseConnection">
|
|
<summary>When the command is executed, the associated <see langword="Connection" /> object is closed when the associated <see langword="DataReader" /> object is closed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.Default">
|
|
<summary>The query may return multiple result sets. Execution of the query may affect the database state. <see langword="Default" /> sets no <see cref="T:System.Data.CommandBehavior" /> flags, so calling <see langword="ExecuteReader(CommandBehavior.Default)" /> is functionally equivalent to calling <see langword="ExecuteReader()" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.KeyInfo">
|
|
<summary>The query returns column and primary key information.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.SchemaOnly">
|
|
<summary>The query returns column information only. When using <see cref="F:System.Data.CommandBehavior.SchemaOnly" />, the .NET Framework Data Provider for SQL Server precedes the statement being executed with SET FMTONLY ON.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.SequentialAccess">
|
|
<summary>Provides a way for the <see langword="DataReader" /> to handle rows that contain columns with large binary values. Rather than loading the entire row, <see langword="SequentialAccess" /> enables the <see langword="DataReader" /> to load data as a stream. You can then use the <see langword="GetBytes" /> or <see langword="GetChars" /> method to specify a byte location to start the read operation, and a limited buffer size for the data being returned.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.SingleResult">
|
|
<summary>The query returns a single result set.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandBehavior.SingleRow">
|
|
<summary>The query is expected to return a single row of the first result set. Execution of the query may affect the database state. Some .NET Framework data providers may, but are not required to, use this information to optimize the performance of the command. When you specify <see cref="F:System.Data.CommandBehavior.SingleRow" /> with the <see cref="M:System.Data.OleDb.OleDbCommand.ExecuteReader" /> method of the <see cref="T:System.Data.OleDb.OleDbCommand" /> object, the .NET Framework Data Provider for OLE DB performs binding using the OLE DB <see langword="IRow" /> interface if it is available. Otherwise, it uses the <see langword="IRowset" /> interface. If your SQL statement is expected to return only a single row, specifying <see cref="F:System.Data.CommandBehavior.SingleRow" /> can also improve application performance. It is possible to specify <see langword="SingleRow" /> when executing queries that are expected to return multiple result sets. In that case, where both a multi-result set SQL query and single row are specified, the result returned will contain only the first row of the first result set. The other result sets of the query will not be returned.</summary>
|
|
</member>
|
|
<member name="T:System.Data.CommandType">
|
|
<summary>Specifies how a command string is interpreted.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandType.StoredProcedure">
|
|
<summary>The name of a stored procedure.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandType.TableDirect">
|
|
<summary>The name of a table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.CommandType.Text">
|
|
<summary>An SQL text command. (Default.)</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.CatalogLocation">
|
|
<summary>Indicates the position of the catalog name in a qualified table name in a text command.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.CatalogLocation.End">
|
|
<summary>Indicates that the position of the catalog name occurs after the schema portion of a fully qualified table name in a text command.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.CatalogLocation.Start">
|
|
<summary>Indicates that the position of the catalog name occurs before the schema portion of a fully qualified table name in a text command.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.DataAdapter">
|
|
<summary>Represents a set of SQL commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet" /> and update the data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.#ctor">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.#ctor(System.Data.Common.DataAdapter)">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.Common.DataAdapter" /> class from an existing object of the same type.</summary>
|
|
<param name="from">A <see cref="T:System.Data.Common.DataAdapter" /> object used to create the new <see cref="T:System.Data.Common.DataAdapter" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill">
|
|
<summary>Gets or sets a value indicating whether <see cref="M:System.Data.DataRow.AcceptChanges" /> is called on a <see cref="T:System.Data.DataRow" /> after it is added to the <see cref="T:System.Data.DataTable" /> during any of the Fill operations.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see cref="M:System.Data.DataRow.AcceptChanges" /> is called on the <see cref="T:System.Data.DataRow" />; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.AcceptChangesDuringUpdate">
|
|
<summary>Gets or sets whether <see cref="M:System.Data.DataRow.AcceptChanges" /> is called during a <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see cref="M:System.Data.DataRow.AcceptChanges" /> is called during an <see cref="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)" />; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.CloneInternals">
|
|
<summary>Creates a copy of this instance of <see cref="T:System.Data.Common.DataAdapter" />.</summary>
|
|
<returns>The cloned instance of <see cref="T:System.Data.Common.DataAdapter" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.ContinueUpdateOnError">
|
|
<summary>Gets or sets a value that specifies whether to generate an exception when an error is encountered during a row update.</summary>
|
|
<returns>
|
|
<see langword="true" /> to continue the update without generating an exception; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.CreateTableMappings">
|
|
<summary>Creates a new <see cref="T:System.Data.Common.DataTableMappingCollection" />.</summary>
|
|
<returns>A new table mapping collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Dispose(System.Boolean)">
|
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DataAdapter" /> and optionally releases the managed resources.</summary>
|
|
<param name="disposing">
|
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)">
|
|
<summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet,System.String,System.Data.IDataReader,System.Int32,System.Int32)">
|
|
<summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records.</param>
|
|
<param name="srcTable">A string indicating the name of the source table.</param>
|
|
<param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
|
|
<param name="startRecord">The zero-based index of the starting record.</param>
|
|
<param name="maxRecords">An integer indicating the maximum number of records.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable,System.Data.IDataReader)">
|
|
<summary>Adds or refreshes rows in the <see cref="T:System.Data.DataTable" /> to match those in the data source using the <see cref="T:System.Data.DataTable" /> name and the specified <see cref="T:System.Data.IDataReader" />.</summary>
|
|
<param name="dataTable">A <see cref="T:System.Data.DataTable" /> to fill with records.</param>
|
|
<param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Fill(System.Data.DataTable[],System.Data.IDataReader,System.Int32,System.Int32)">
|
|
<summary>Adds or refreshes rows in a specified range in the collection of <see cref="T:System.Data.DataTable" /> objects to match those in the data source.</summary>
|
|
<param name="dataTables">A collection of <see cref="T:System.Data.DataTable" /> objects to fill with records.</param>
|
|
<param name="dataReader">An instance of <see cref="T:System.Data.IDataReader" />.</param>
|
|
<param name="startRecord">The zero-based index of the starting record.</param>
|
|
<param name="maxRecords">An integer indicating the maximum number of records.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="E:System.Data.Common.DataAdapter.FillError">
|
|
<summary>Returned when an error occurs during a fill operation.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.FillLoadOption">
|
|
<summary>Gets or sets the <see cref="T:System.Data.LoadOption" /> that determines how the adapter fills the <see cref="T:System.Data.DataTable" /> from the <see cref="T:System.Data.Common.DbDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.LoadOption" /> value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataTable" /> to be filled from the <see cref="T:System.Data.IDataReader" />.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<param name="dataReader">The <see cref="T:System.Data.IDataReader" /> to be used as the data source when filling the <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled from the <see cref="T:System.Data.IDataReader" />.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<param name="dataReader">The <see cref="T:System.Data.IDataReader" /> to be used as the data source when filling the <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.GetFillParameters">
|
|
<summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
|
|
<returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.HasTableMappings">
|
|
<summary>Indicates whether a <see cref="T:System.Data.Common.DataTableMappingCollection" /> has been created.</summary>
|
|
<returns>
|
|
<see langword="true" /> if a <see cref="T:System.Data.Common.DataTableMappingCollection" /> has been created; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.MissingMappingAction">
|
|
<summary>Determines the action to take when incoming data does not have a matching table or column.</summary>
|
|
<returns>One of the <see cref="T:System.Data.MissingMappingAction" /> values. The default is <see langword="Passthrough" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.MissingSchemaAction">
|
|
<summary>Determines the action to take when existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</summary>
|
|
<returns>One of the <see cref="T:System.Data.MissingSchemaAction" /> values. The default is <see langword="Add" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction" /> values.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.OnFillError(System.Data.FillErrorEventArgs)">
|
|
<summary>Invoked when an error occurs during a <see langword="Fill" />.</summary>
|
|
<param name="value">A <see cref="T:System.Data.FillErrorEventArgs" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.ResetFillLoadOption">
|
|
<summary>Resets <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> to its default state and causes <see cref="M:System.Data.Common.DataAdapter.Fill(System.Data.DataSet)" /> to honor <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.ReturnProviderSpecificTypes">
|
|
<summary>Gets or sets whether the <see langword="Fill" /> method should return provider-specific values or common CLS-compliant values.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see langword="Fill" /> method should return provider-specific values; otherwise <see langword="false" /> to return common CLS-compliant values.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.ShouldSerializeAcceptChangesDuringFill">
|
|
<summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" /> property should be persisted.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.Common.DataAdapter.AcceptChangesDuringFill" /> property is persisted; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.ShouldSerializeFillLoadOption">
|
|
<summary>Determines whether the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> property should be persisted.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.Common.DataAdapter.FillLoadOption" /> property is persisted; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.ShouldSerializeTableMappings">
|
|
<summary>Determines whether one or more <see cref="T:System.Data.Common.DataTableMapping" /> objects exist and they should be persisted.</summary>
|
|
<returns>
|
|
<see langword="true" /> if one or more <see cref="T:System.Data.Common.DataTableMapping" /> objects exist; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.System#Data#IDataAdapter#TableMappings">
|
|
<summary>Indicates how a source table is mapped to a dataset table.</summary>
|
|
<returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataAdapter.TableMappings">
|
|
<summary>Gets a collection that provides the master mapping between a source table and a <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataAdapter.Update(System.Data.DataSet)">
|
|
<summary>Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" /> from a <see cref="T:System.Data.DataTable" /> named "Table."</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="T:System.Data.Common.DataColumnMapping">
|
|
<summary>Contains a generic column mapping for an object that inherits from <see cref="T:System.Data.Common.DataAdapter" />. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.#ctor(System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataColumnMapping" /> class with the specified source column name and <see cref="T:System.Data.DataSet" /> column name to map to.</summary>
|
|
<param name="sourceColumn">The case-sensitive column name from a data source.</param>
|
|
<param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet" /> to map to.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMapping.DataSetColumn">
|
|
<summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet" /> to map to.</summary>
|
|
<returns>The name of the column within the <see cref="T:System.Data.DataSet" /> to map to. The name is not case sensitive.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
|
|
<summary>Gets a <see cref="T:System.Data.DataColumn" /> from the given <see cref="T:System.Data.DataTable" /> using the <see cref="T:System.Data.MissingSchemaAction" /> and the <see cref="P:System.Data.Common.DataColumnMapping.DataSetColumn" /> property.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> to get the column from.</param>
|
|
<param name="dataType">The <see cref="T:System.Type" /> of the data column.</param>
|
|
<param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
<returns>A data column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.String,System.String,System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)">
|
|
<summary>A static version of <see cref="M:System.Data.Common.DataColumnMapping.GetDataColumnBySchemaAction(System.Data.DataTable,System.Type,System.Data.MissingSchemaAction)" /> that can be called without instantiating a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</summary>
|
|
<param name="sourceColumn">The case-sensitive column name from a data source.</param>
|
|
<param name="dataSetColumn">The column name, which is not case sensitive, from a <see cref="T:System.Data.DataSet" /> to map to.</param>
|
|
<param name="dataTable">An instance of <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="dataType">The data type for the column being mapped.</param>
|
|
<param name="schemaAction">Determines the action to take when existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</param>
|
|
<returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMapping.SourceColumn">
|
|
<summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
|
|
<returns>The case-sensitive name of the column in the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.System#ICloneable#Clone">
|
|
<summary>Creates a new object that is a copy of the current instance.</summary>
|
|
<returns>A copy of the current object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMapping.ToString">
|
|
<summary>Converts the current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn" /> name to a string.</summary>
|
|
<returns>The current <see cref="P:System.Data.Common.DataColumnMapping.SourceColumn" /> name as a string.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DataColumnMappingCollection">
|
|
<summary>Contains a collection of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.#ctor">
|
|
<summary>Creates an empty <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.Object)">
|
|
<summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the collection.</summary>
|
|
<param name="value">A <see langword="DataColumnMapping" /> object to add to the collection.</param>
|
|
<returns>The index of the <see langword="DataColumnMapping" /> object that was added to the collection.</returns>
|
|
<exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Add(System.String,System.String)">
|
|
<summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the collection when given a source column name and a <see cref="T:System.Data.DataSet" /> column name.</summary>
|
|
<param name="sourceColumn">The case-sensitive name of the source column to map to.</param>
|
|
<param name="dataSetColumn">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to map to.</param>
|
|
<returns>The <see langword="DataColumnMapping" /> object that was added to the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Array)">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Array" /> to the end of the collection.</summary>
|
|
<param name="values">The <see cref="T:System.Array" /> to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.AddRange(System.Data.Common.DataColumnMapping[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> array to the end of the collection.</summary>
|
|
<param name="values">The array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Clear">
|
|
<summary>Removes all <see cref="T:System.Data.Common.DataColumnMapping" /> objects from the collection.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.Object)">
|
|
<summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the given <see cref="T:System.Object" /> exists in the collection.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains the specified <see cref="T:System.Data.Common.DataColumnMapping" /> object; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the given source column name exists in the collection.</summary>
|
|
<param name="value">The case-sensitive source column name of the <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if collection contains a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> to the specified array.</summary>
|
|
<param name="array">An <see cref="T:System.Array" /> to which to copy <see cref="T:System.Data.Common.DataColumnMappingCollection" /> elements.</param>
|
|
<param name="index">The starting index of the array.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.CopyTo(System.Data.Common.DataColumnMapping[],System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> to the specified <see cref="T:System.Data.Common.DataColumnMapping" /> array.</summary>
|
|
<param name="array">A <see cref="T:System.Data.Common.DataColumnMapping" /> array to which to copy the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> elements.</param>
|
|
<param name="index">The zero-based index in the <paramref name="array" /> at which copying begins.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.Count">
|
|
<summary>Gets the number of <see cref="T:System.Data.Common.DataColumnMapping" /> objects in the collection.</summary>
|
|
<returns>The number of items in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.GetByDataSetColumn(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
|
|
<param name="value">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to find.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> column name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.GetColumnMappingBySchemaAction(System.Data.Common.DataColumnMappingCollection,System.String,System.Data.MissingMappingAction)">
|
|
<summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping" /> for the specified <see cref="T:System.Data.Common.DataColumnMappingCollection" />, source column name, and <see cref="T:System.Data.MissingMappingAction" />.</summary>
|
|
<param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</param>
|
|
<param name="sourceColumn">The case-sensitive source column name to find.</param>
|
|
<param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DataColumnMapping" /> object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.GetDataColumn(System.Data.Common.DataColumnMappingCollection,System.String,System.Type,System.Data.DataTable,System.Data.MissingMappingAction,System.Data.MissingSchemaAction)">
|
|
<summary>A static method that returns a <see cref="T:System.Data.DataColumn" /> object without instantiating a <see cref="T:System.Data.Common.DataColumnMappingCollection" /> object.</summary>
|
|
<param name="columnMappings">The <see cref="T:System.Data.Common.DataColumnMappingCollection" />.</param>
|
|
<param name="sourceColumn">The case-sensitive column name from a data source.</param>
|
|
<param name="dataType">The data type for the column being mapped.</param>
|
|
<param name="dataTable">An instance of <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
|
|
<param name="schemaAction">Determines the action to take when the existing <see cref="T:System.Data.DataSet" /> schema does not match incoming data.</param>
|
|
<returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.GetEnumerator">
|
|
<summary>Gets an enumerator that can iterate through the collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.Object)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> within the collection.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping" /> with the specified source column name.</summary>
|
|
<param name="sourceColumn">The case-sensitive name of the source column.</param>
|
|
<returns>The zero-based location of the <see cref="T:System.Data.Common.DataColumnMapping" /> with the specified case-sensitive source column name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.IndexOfDataSetColumn(System.String)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> with the given <see cref="T:System.Data.DataSet" /> column name.</summary>
|
|
<param name="dataSetColumn">The name, which is not case-sensitive, of the data set column to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataColumnMapping" /> with the given <see langword="DataSet" /> column name, or -1 if the <see langword="DataColumnMapping" /> object does not exist in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Data.Common.DataColumnMapping)">
|
|
<summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping" /> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to insert.</param>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts a <see cref="T:System.Data.Common.DataColumnMapping" /> object into the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to insert.</param>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> object.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.Int32)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping" /> object at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to find.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object at the specified index.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</summary>
|
|
<param name="sourceColumn">The case-sensitive name of the source column.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Data.Common.DataColumnMapping)">
|
|
<summary>Removes the specified <see cref="T:System.Data.Common.DataColumnMapping" /> from the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataColumnMapping" /> to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.Remove(System.Object)">
|
|
<summary>Removes the <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Common.DataColumnMapping" /> from the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataColumnMapping" /> to remove.</param>
|
|
<exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataColumnMapping" /> object.</exception>
|
|
<exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified index from the collection.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataColumnMapping" /> object to remove.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified index.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name from the collection.</summary>
|
|
<param name="sourceColumn">The case-sensitive source column name.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">There is no <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#IsSynchronized">
|
|
<summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#ICollection#SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Collections.IList" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Collections#IList#Item(System.Int32)">
|
|
<summary>Gets or sets the element at the specified index.</summary>
|
|
<param name="index">The zero-based index of the element to get or set.</param>
|
|
<returns>The element at the specified index.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Add(System.String,System.String)">
|
|
<summary>Adds a <see cref="T:System.Data.Common.DataColumnMapping" /> object to the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> by using the source column and <see cref="T:System.Data.DataSet" /> column names.</summary>
|
|
<param name="sourceColumnName">The case-sensitive name of the source column.</param>
|
|
<param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column.</param>
|
|
<returns>The ColumnMapping object that was added to the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#GetByDataSetColumn(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataColumnMapping" /> object that has the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
|
|
<param name="dataSetColumnName">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> column to find.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataColumnMapping" /> object that has the specified <see cref="T:System.Data.DataSet" /> column name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataColumnMappingCollection.System#Data#IColumnMappingCollection#Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</summary>
|
|
<param name="index">Index of the element.</param>
|
|
<returns>The <see langword="IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DataTableMapping">
|
|
<summary>Contains a description of a mapped relationship between a source table and a <see cref="T:System.Data.DataTable" />. This class is used by a <see cref="T:System.Data.Common.DataAdapter" /> when populating a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class with a source when given a source table name and a <see cref="T:System.Data.DataTable" /> name.</summary>
|
|
<param name="sourceTable">The case-sensitive source table name from a data source.</param>
|
|
<param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.#ctor(System.String,System.String,System.Data.Common.DataColumnMapping[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMapping" /> class when given a source table name, a <see cref="T:System.Data.DataTable" /> name, and an array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</summary>
|
|
<param name="sourceTable">The case-sensitive source table name from a data source.</param>
|
|
<param name="dataSetTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
|
|
<param name="columnMappings">An array of <see cref="T:System.Data.Common.DataColumnMapping" /> objects.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMapping.ColumnMappings">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A data column mapping collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMapping.DataSetTable">
|
|
<summary>Gets or sets the table name from a <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The table name from a <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.GetColumnMappingBySchemaAction(System.String,System.Data.MissingMappingAction)">
|
|
<summary>Gets a <see cref="T:System.Data.DataColumn" /> from the specified <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Data.MissingMappingAction" /> value and the name of the <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn" />.</param>
|
|
<param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
|
|
<returns>A data column.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.GetDataColumn(System.String,System.Type,System.Data.DataTable,System.Data.MissingMappingAction,System.Data.MissingSchemaAction)">
|
|
<summary>Returns a <see cref="T:System.Data.DataColumn" /> object for a given column name.</summary>
|
|
<param name="sourceColumn">The name of the <see cref="T:System.Data.DataColumn" />.</param>
|
|
<param name="dataType">The data type for <paramref name="sourceColumn" />.</param>
|
|
<param name="dataTable">The table name from a <see cref="T:System.Data.DataSet" /> to map to.</param>
|
|
<param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
|
|
<param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.DataColumn" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.GetDataTableBySchemaAction(System.Data.DataSet,System.Data.MissingSchemaAction)">
|
|
<summary>Gets the current <see cref="T:System.Data.DataTable" /> for the specified <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Data.MissingSchemaAction" /> value.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> from which to get the <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="schemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
<returns>A data table.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMapping.SourceTable">
|
|
<summary>Gets or sets the case-sensitive source table name from a data source.</summary>
|
|
<returns>The case-sensitive source table name from a data source.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMapping.System#Data#ITableMapping#ColumnMappings">
|
|
<summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A data column mapping collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.System#ICloneable#Clone">
|
|
<summary>Creates a new object that is a copy of the current instance.</summary>
|
|
<returns>A new object that is a copy of the current instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMapping.ToString">
|
|
<summary>Converts the current <see cref="P:System.Data.Common.DataTableMapping.SourceTable" /> name to a string.</summary>
|
|
<returns>The current <see cref="P:System.Data.Common.DataTableMapping.SourceTable" /> name, as a string.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DataTableMappingCollection">
|
|
<summary>A collection of <see cref="T:System.Data.Common.DataTableMapping" /> objects. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DataTableMappingCollection" /> class. This new instance is empty, that is, it does not yet contain any <see cref="T:System.Data.Common.DataTableMapping" /> objects.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Add(System.Object)">
|
|
<summary>Adds an <see cref="T:System.Object" /> that is a table mapping to the collection.</summary>
|
|
<param name="value">A <see langword="DataTableMapping" /> object to add to the collection.</param>
|
|
<returns>The index of the <see langword="DataTableMapping" /> object added to the collection.</returns>
|
|
<exception cref="T:System.InvalidCastException">The object passed in was not a <see cref="T:System.Data.Common.DataTableMapping" /> object.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Add(System.String,System.String)">
|
|
<summary>Adds a <see cref="T:System.Data.Common.DataTableMapping" /> object to the collection when given a source table name and a <see cref="T:System.Data.DataSet" /> table name.</summary>
|
|
<param name="sourceTable">The case-sensitive name of the source table to map from.</param>
|
|
<param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> table to map to.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object that was added to the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Array)">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Array" /> to the end of the collection.</summary>
|
|
<param name="values">An <see cref="T:System.Array" /> of values to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.AddRange(System.Data.Common.DataTableMapping[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.Common.DataTableMapping" /> array to the end of the collection.</summary>
|
|
<param name="values">The array of <see cref="T:System.Data.Common.DataTableMapping" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Clear">
|
|
<summary>Removes all <see cref="T:System.Data.Common.DataTableMapping" /> objects from the collection.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.Object)">
|
|
<summary>Gets a value indicating whether the given <see cref="T:System.Data.Common.DataTableMapping" /> object exists in the collection.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataTableMapping" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if this collection contains the specified <see cref="T:System.Data.Common.DataTableMapping" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether a <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name exists in the collection.</summary>
|
|
<param name="value">The case-sensitive source table name containing the <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains a <see cref="T:System.Data.Common.DataTableMapping" /> object with this source table name; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMappingCollection" /> to the specified array.</summary>
|
|
<param name="array">An <see cref="T:System.Array" /> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection" /> elements.</param>
|
|
<param name="index">The starting index of the array.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.CopyTo(System.Data.Common.DataTableMapping[],System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.Common.DataTableMapping" /> to the specified array.</summary>
|
|
<param name="array">A <see cref="T:System.Data.Common.DataTableMapping" /> to which to copy the <see cref="T:System.Data.Common.DataTableMappingCollection" /> elements.</param>
|
|
<param name="index">The starting index of the array.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.Count">
|
|
<summary>Gets the number of <see cref="T:System.Data.Common.DataTableMapping" /> objects in the collection.</summary>
|
|
<returns>The number of <see langword="DataTableMapping" /> objects in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.GetByDataSetTable(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
|
|
<param name="dataSetTable">The name, which is not case-sensitive, of the <see cref="T:System.Data.DataSet" /> table to find.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.GetEnumerator">
|
|
<summary>Gets an enumerator that can iterate through the collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.GetTableMappingBySchemaAction(System.Data.Common.DataTableMappingCollection,System.String,System.String,System.Data.MissingMappingAction)">
|
|
<summary>Gets a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source table name and <see cref="T:System.Data.DataSet" /> table name, using the given <see cref="T:System.Data.MissingMappingAction" />.</summary>
|
|
<param name="tableMappings">The <see cref="T:System.Data.Common.DataTableMappingCollection" /> collection to search.</param>
|
|
<param name="sourceTable">The case-sensitive name of the mapped source table.</param>
|
|
<param name="dataSetTable">The name, which is not case-sensitive, of the mapped <see cref="T:System.Data.DataSet" /> table.</param>
|
|
<param name="mappingAction">One of the <see cref="T:System.Data.MissingMappingAction" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DataTableMapping" /> object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="mappingAction" /> parameter was set to <see langword="Error" />, and no mapping was specified.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.Object)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.Common.DataTableMapping" /> object within the collection.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the <see cref="T:System.Data.Common.DataTableMapping" /> object to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.Common.DataTableMapping" /> object within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</summary>
|
|
<param name="sourceTable">The case-sensitive name of the source table.</param>
|
|
<returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.IndexOfDataSetTable(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
|
|
<param name="dataSetTable">The name, which is not case-sensitive, of the <see langword="DataSet" /> table to find.</param>
|
|
<returns>The zero-based location of the <see cref="T:System.Data.Common.DataTableMapping" /> object with the given <see cref="T:System.Data.DataSet" /> table name, or -1 if the <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Data.Common.DataTableMapping)">
|
|
<summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping" /> object into the <see cref="T:System.Data.Common.DataTableMappingCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts a <see cref="T:System.Data.Common.DataTableMapping" /> object into the <see cref="T:System.Data.Common.DataTableMappingCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to insert.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.Item(System.Int32)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping" /> object at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to return.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object at the specified index.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</summary>
|
|
<param name="sourceTable">The case-sensitive name of the source table.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Data.Common.DataTableMapping)">
|
|
<summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping" /> object from the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.Remove(System.Object)">
|
|
<summary>Removes the specified <see cref="T:System.Data.Common.DataTableMapping" /> object from the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
|
|
<exception cref="T:System.InvalidCastException">The object specified was not a <see cref="T:System.Data.Common.DataTableMapping" /> object.</exception>
|
|
<exception cref="T:System.ArgumentException">The object specified is not in the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DataTableMapping" /> object located at the specified index from the collection.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Common.DataTableMapping" /> object to remove.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist with the specified index.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DataTableMapping" /> object with the specified source table name from the collection.</summary>
|
|
<param name="sourceTable">The case-sensitive source table name to find.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataTableMapping" /> object does not exist with the specified source table name.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#IsSynchronized">
|
|
<summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#ICollection#SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsFixedSize">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#IsReadOnly">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Collections#IList#Item(System.Int32)">
|
|
<summary>Gets or sets an item from the collection at a specified index.</summary>
|
|
<param name="index">The zero-based index of the item to get or set.</param>
|
|
<returns>The element at the specified index.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Add(System.String,System.String)">
|
|
<summary>Adds a table mapping to the collection.</summary>
|
|
<param name="sourceTableName">The case-sensitive name of the source table.</param>
|
|
<param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet" /> table.</param>
|
|
<returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#GetByDataSetTable(System.String)">
|
|
<summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
|
|
<param name="dataSetTableName">The name of the <see langword="DataSet" /> table within the collection.</param>
|
|
<returns>The TableMapping object with the specified <see langword="DataSet" /> table name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DataTableMappingCollection.System#Data#ITableMappingCollection#Item(System.String)">
|
|
<summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name.</summary>
|
|
<param name="index">The <see langword="SourceTable" /> name of the <see cref="T:System.Data.ITableMapping" />.</param>
|
|
<returns>The instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see langword="SourceTable" /> name.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbColumn">
|
|
<summary>Represents a column within a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbColumn.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbColumn" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.AllowDBNull">
|
|
<summary>Gets a nullable boolean value that indicates whether <see langword="DBNull" /> values are allowed in this column, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether <see langword="DBNull" /> values are allowed in this column, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if <see langword="DBNull" /> values are allowed in this column; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.BaseCatalogName">
|
|
<summary>Gets the catalog name associated with the data source; otherwise, <see langword="null" /> if no value is set. Can be set to either the catalog name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The catalog name associated with the data source; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.BaseColumnName">
|
|
<summary>Gets the base column name; otherwise, <see langword="null" /> if no value is set. Can be set to either the column name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The base column name; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.BaseSchemaName">
|
|
<summary>Gets the schema name associated with the data source; otherwise, <see langword="null" /> if no value is set. Can be set to either the schema name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The schema name associated with the data source; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.BaseServerName">
|
|
<summary>Gets the server name associated with the column; otherwise, <see langword="null" /> if no value is set. Can be set to either the server name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The server name associated with the column; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.BaseTableName">
|
|
<summary>Gets the table name in the schema; otherwise, <see langword="null" /> if no value is set. Can be set to either the table name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The table name in the schema; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.ColumnName">
|
|
<summary>Gets the name of the column. Can be set to the column name when overridden in a derived class.</summary>
|
|
<returns>The name of the column.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.ColumnOrdinal">
|
|
<summary>Gets the column position (ordinal) in the datasource row; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the column position or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>An <see langword="int32" /> value for column ordinal; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.ColumnSize">
|
|
<summary>Gets the column size; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the column size or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>An <see langword="int32" /> value for column size; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.DataType">
|
|
<summary>Gets the type of data stored in the column. Can be set to a <see cref="T:System.Type" /> object that represents the type of data in the column when overridden in a derived class.</summary>
|
|
<returns>A <see cref="T:System.Type" /> object that represents the type of data the column contains.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.DataTypeName">
|
|
<summary>Gets the name of the data type; otherwise, <see langword="null" /> if no value is set. Can be set to either the data type name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The name of the data type; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsAliased">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is aliased, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is aliased, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is aliased; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsAutoIncrement">
|
|
<summary>Gets a nullable boolean value that indicates whether values in this column are automatically incremented, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether values in this column are automatically incremented, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if values in this column are automatically incremented; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsExpression">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is an expression, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is an expression, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is an expression; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsHidden">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is hidden, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is hidden, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is hidden; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsIdentity">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is an identity, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is an identity, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is an identity; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsKey">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is a key, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is a key, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is a key; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsLong">
|
|
<summary>Gets a nullable boolean value that indicates whether this column contains long data, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column contains long data, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column contains long data; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsReadOnly">
|
|
<summary>Gets a nullable boolean value that indicates whether this column is read-only, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether this column is read-only, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if this column is read-only; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.IsUnique">
|
|
<summary>Gets a nullable boolean value that indicates whether a unique constraint applies to this column, or returns <see langword="null" /> if no value is set. Can be set to either <see langword="true" /> or <see langword="false" /> indicating whether a unique constraint applies to this column, or <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) when overridden in a derived class.</summary>
|
|
<returns>Returns <see langword="true" /> if a unique constraint applies to this column; otherwise, <see langword="false" />. If no value is set, returns a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.Item(System.String)">
|
|
<summary>Gets the object based on the column property name.</summary>
|
|
<param name="property">The column property name.</param>
|
|
<returns>The object based on the column property name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.NumericPrecision">
|
|
<summary>Gets the numeric precision of the column data; otherwise, <see langword="null" /> if no value is set. Can be set to either an <see langword="int32" /> value to specify the numeric precision of the column data or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>An <see langword="int32" /> value that specifies the precision of the column data, if the data is numeric; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.NumericScale">
|
|
<summary>Gets a nullable <see langword="int32" /> value that either returns <see langword="null" /> or the numeric scale of the column data. Can be set to either <see langword="null" /> or an <see langword="int32" /> value for the numeric scale of the column data when overridden in a derived class.</summary>
|
|
<returns>A null reference (<see langword="Nothing" /> in Visual Basic) if no value is set; otherwise, a <see langword="int32" /> value that specifies the scale of the column data, if the data is numeric.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbColumn.UdtAssemblyQualifiedName">
|
|
<summary>Gets the assembly-qualified name of the <see cref="T:System.Type" /> object that represents the type of data in the column; otherwise, <see langword="null" /> if no value is set. Can be set to either the assembly-qualified name or <see langword="null" /> when overridden in a derived class.</summary>
|
|
<returns>The assembly-qualified name of the <see cref="T:System.Type" /> object that represents the type of data in the column; otherwise, a null reference (<see langword="Nothing" /> in Visual Basic) if no value is set.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbCommand">
|
|
<summary>Represents an SQL statement or stored procedure to execute against a data source. Provides a base class for database-specific classes that represent commands. <see cref="Overload:System.Data.Common.DbCommand.ExecuteNonQueryAsync" /></summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.#ctor">
|
|
<summary>Constructs an instance of the <see cref="T:System.Data.Common.DbCommand" /> object.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.Cancel">
|
|
<summary>Attempts to cancels the execution of a <see cref="T:System.Data.Common.DbCommand" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.CommandText">
|
|
<summary>Gets or sets the text command to run against the data source.</summary>
|
|
<returns>The text command to execute. The default value is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.CommandTimeout">
|
|
<summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
|
|
<returns>The time in seconds to wait for the command to execute.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.CommandType">
|
|
<summary>Indicates or specifies how the <see cref="P:System.Data.Common.DbCommand.CommandText" /> property is interpreted.</summary>
|
|
<returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DbConnection" /> used by this <see cref="T:System.Data.Common.DbCommand" />.</summary>
|
|
<returns>The connection to the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.CreateDbParameter">
|
|
<summary>Creates a new instance of a <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.CreateParameter">
|
|
<summary>Creates a new instance of a <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.DbConnection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DbConnection" /> used by this <see cref="T:System.Data.Common.DbCommand" />.</summary>
|
|
<returns>The connection to the data source.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.DbParameterCollection">
|
|
<summary>Gets the collection of <see cref="T:System.Data.Common.DbParameter" /> objects.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.DbTransaction">
|
|
<summary>Gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
|
|
<returns>The transaction within which a Command object of a .NET Framework data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.DesignTimeVisible">
|
|
<summary>Gets or sets a value indicating whether the command object should be visible in a customized interface control.</summary>
|
|
<returns>
|
|
<see langword="true" />, if the command object should be visible in a control; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteDbDataReader(System.Data.CommandBehavior)">
|
|
<summary>Executes the command text against the connection.</summary>
|
|
<param name="behavior">An instance of <see cref="T:System.Data.CommandBehavior" />.</param>
|
|
<returns>A task representing the operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
|
|
<summary>Providers should implement this method to provide a non-default implementation for <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" /> overloads.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteReader will be communicated via the returned Task Exception property.
|
|
This method accepts a cancellation token that can be used to request the operation to be cancelled early. Implementations may ignore this request.</summary>
|
|
<param name="behavior">Options for statement execution and data retrieval.</param>
|
|
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteNonQuery">
|
|
<summary>Executes a SQL statement against a connection object.</summary>
|
|
<returns>The number of rows affected.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" />, which executes a SQL statement against a connection object.
|
|
Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)">
|
|
<summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" />. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by <see cref="M:System.Data.Common.DbCommand.ExecuteNonQuery" /> will be communicated via the returned Task Exception property.
|
|
Do not invoke other methods and properties of the <see langword="DbCommand" /> object until the returned Task is complete.</summary>
|
|
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReader">
|
|
<summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" />, and returns an <see cref="T:System.Data.Common.DbDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" />, and returns an <see cref="T:System.Data.Common.DbDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync">
|
|
<summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />.
|
|
Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior)">
|
|
<summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />.
|
|
Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)">
|
|
<summary>Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteReaderAsync(System.Threading.CancellationToken)">
|
|
<summary>An asynchronous version of <see cref="Overload:System.Data.Common.DbCommand.ExecuteReader" />, which executes the <see cref="P:System.Data.Common.DbCommand.CommandText" /> against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns a <see cref="T:System.Data.Common.DbDataReader" />. This method propagates a notification that operations should be canceled.
|
|
Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteDbDataReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" />.</summary>
|
|
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteScalar">
|
|
<summary>Executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored.</summary>
|
|
<returns>The first column of the first row in the result set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" />, which executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored.
|
|
Invokes <see cref="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.ExecuteScalarAsync(System.Threading.CancellationToken)">
|
|
<summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" />. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbCommand.ExecuteScalar" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteScalar will be communicated via the returned Task Exception property.
|
|
Do not invoke other methods and properties of the <see langword="DbCommand" /> object until the returned Task is complete.</summary>
|
|
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.Parameters">
|
|
<summary>Gets the collection of <see cref="T:System.Data.Common.DbParameter" /> objects. For more information on parameters, see Configuring Parameters and Parameter Data Types.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.Prepare">
|
|
<summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used by this instance of the <see cref="T:System.Data.IDbCommand" />.</summary>
|
|
<returns>The connection to the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#CreateParameter">
|
|
<summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter" /> object.</summary>
|
|
<returns>An <see langword="IDbDataParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader">
|
|
<summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" /> and builds an <see cref="T:System.Data.IDataReader" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" />, and builds an <see cref="T:System.Data.IDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Parameters">
|
|
<summary>Gets the <see cref="T:System.Data.IDataParameterCollection" />.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.System#Data#IDbCommand#Transaction">
|
|
<summary>Gets or sets the <see cref="P:System.Data.Common.DbCommand.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
|
|
<returns>The transaction within which a <see langword="Command" /> object of a .NET Framework data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.Transaction">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DbTransaction" /> within which this <see cref="T:System.Data.Common.DbCommand" /> object executes.</summary>
|
|
<returns>The transaction within which a <see langword="Command" /> object of a .NET Framework data provider executes. The default value is a null reference (<see langword="Nothing" /> in Visual Basic).</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommand.UpdatedRowSource">
|
|
<summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the Update method of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values. The default is <see langword="Both" /> unless the command is automatically generated. Then the default is <see langword="None" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbCommandBuilder">
|
|
<summary>Automatically generates single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated database. This is an abstract class that can only be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.#ctor">
|
|
<summary>Initializes a new instance of a class that inherits from the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.ApplyParameterInfo(System.Data.Common.DbParameter,System.Data.DataRow,System.Data.StatementType,System.Boolean)">
|
|
<summary>Allows the provider implementation of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class to handle additional parameter properties.</summary>
|
|
<param name="parameter">A <see cref="T:System.Data.Common.DbParameter" /> to which the additional modifications are applied.</param>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> from the schema table provided by <see cref="M:System.Data.Common.DbDataReader.GetSchemaTable" />.</param>
|
|
<param name="statementType">The type of command being generated; INSERT, UPDATE or DELETE.</param>
|
|
<param name="whereClause">
|
|
<see langword="true" /> if the parameter is part of the update or delete WHERE clause, <see langword="false" /> if it is part of the insert or update values.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.CatalogLocation">
|
|
<summary>Sets or gets the <see cref="T:System.Data.Common.CatalogLocation" /> for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.CatalogLocation" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.CatalogSeparator">
|
|
<summary>Sets or gets a string used as the catalog separator for an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
|
|
<returns>A string indicating the catalog separator for use with an instance of the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.ConflictOption">
|
|
<summary>Specifies which <see cref="T:System.Data.ConflictOption" /> is to be used by the <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
|
|
<returns>Returns one of the <see cref="T:System.Data.ConflictOption" /> values describing the behavior of this <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.DataAdapter">
|
|
<summary>Gets or sets a <see cref="T:System.Data.Common.DbDataAdapter" /> object for which Transact-SQL statements are automatically generated.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbDataAdapter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.Dispose(System.Boolean)">
|
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbCommandBuilder" /> and optionally releases the managed resources.</summary>
|
|
<param name="disposing">
|
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetDeleteCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions at the data source, optionally using columns for parameter names.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetInsertCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions at the data source, optionally using columns for parameter names.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.Int32)">
|
|
<summary>Returns the name of the specified parameter in the format of @p#. Use when building a custom command builder.</summary>
|
|
<param name="parameterOrdinal">The number to be included as part of the parameter's name.</param>
|
|
<returns>The name of the parameter with the specified number appended as part of the parameter name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetParameterName(System.String)">
|
|
<summary>Returns the full parameter name, given the partial parameter name.</summary>
|
|
<param name="parameterName">The partial name of the parameter.</param>
|
|
<returns>The full parameter name corresponding to the partial parameter name requested.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetParameterPlaceholder(System.Int32)">
|
|
<summary>Returns the placeholder for the parameter in the associated SQL statement.</summary>
|
|
<param name="parameterOrdinal">The number to be included as part of the parameter's name.</param>
|
|
<returns>The name of the parameter with the specified number appended.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetSchemaTable(System.Data.Common.DbCommand)">
|
|
<summary>Returns the schema table for the <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
|
|
<param name="sourceCommand">The <see cref="T:System.Data.Common.DbCommand" /> for which to retrieve the corresponding schema table.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that represents the schema for the specific <see cref="T:System.Data.Common.DbCommand" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.GetUpdateCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates at the data source, optionally using columns for parameter names.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Common.DbCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.InitializeCommand(System.Data.Common.DbCommand)">
|
|
<summary>Resets the <see cref="P:System.Data.Common.DbCommand.CommandTimeout" />, <see cref="P:System.Data.Common.DbCommand.Transaction" />, <see cref="P:System.Data.Common.DbCommand.CommandType" />, and <see cref="T:System.Data.UpdateRowSource" /> properties on the <see cref="T:System.Data.Common.DbCommand" />.</summary>
|
|
<param name="command">The <see cref="T:System.Data.Common.DbCommand" /> to be used by the command builder for the corresponding insert, update, or delete command.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DbCommand" /> instance to use for each insert, update, or delete operation. Passing a null value allows the <see cref="M:System.Data.Common.DbCommandBuilder.InitializeCommand(System.Data.Common.DbCommand)" /> method to create a <see cref="T:System.Data.Common.DbCommand" /> object based on the Select command associated with the <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.QuoteIdentifier(System.String)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The original unquoted identifier.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.QuotePrefix">
|
|
<summary>Gets or sets the beginning character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
|
|
<returns>The beginning character or characters to use. The default is an empty string.</returns>
|
|
<exception cref="T:System.InvalidOperationException">This property cannot be changed after an insert, update, or delete command has been generated.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.QuoteSuffix">
|
|
<summary>Gets or sets the ending character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
|
|
<returns>The ending character or characters to use. The default is an empty string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.RefreshSchema">
|
|
<summary>Clears the commands associated with this <see cref="T:System.Data.Common.DbCommandBuilder" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.RowUpdatingHandler(System.Data.Common.RowUpdatingEventArgs)">
|
|
<summary>Adds an event handler for the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event.</summary>
|
|
<param name="rowUpdatingEvent">A <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> instance containing information about the event.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.SchemaSeparator">
|
|
<summary>Gets or sets the character to be used for the separator between the schema identifier and any other identifiers.</summary>
|
|
<returns>The character to be used as the schema separator.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbCommandBuilder.SetAllValues">
|
|
<summary>Specifies whether all column values in an update statement are included or only changed ones.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the UPDATE statement generated by the <see cref="T:System.Data.Common.DbCommandBuilder" /> includes all columns; <see langword="false" /> if it includes only changed columns.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.SetRowUpdatingHandler(System.Data.Common.DbDataAdapter)">
|
|
<summary>Registers the <see cref="T:System.Data.Common.DbCommandBuilder" /> to handle the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event for a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<param name="adapter">The <see cref="T:System.Data.Common.DbDataAdapter" /> to be used for the update.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbCommandBuilder.UnquoteIdentifier(System.String)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<returns>The unquoted identifier, with embedded quotes properly un-escaped.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbConnection">
|
|
<summary>Represents a connection to a database.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.BeginDbTransaction(System.Data.IsolationLevel)">
|
|
<summary>Starts a database transaction.</summary>
|
|
<param name="isolationLevel">Specifies the isolation level for the transaction.</param>
|
|
<returns>An object representing the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.BeginTransaction">
|
|
<summary>Starts a database transaction.</summary>
|
|
<returns>An object representing the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.BeginTransaction(System.Data.IsolationLevel)">
|
|
<summary>Starts a database transaction with the specified isolation level.</summary>
|
|
<param name="isolationLevel">Specifies the isolation level for the transaction.</param>
|
|
<returns>An object representing the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.ChangeDatabase(System.String)">
|
|
<summary>Changes the current database for an open connection.</summary>
|
|
<param name="databaseName">Specifies the name of the database for the connection to use.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.Close">
|
|
<summary>Closes the connection to the database. This is the preferred method of closing any open connection.</summary>
|
|
<exception cref="T:System.Data.Common.DbException">The connection-level error that occurred while opening the connection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.ConnectionString">
|
|
<summary>Gets or sets the string used to open the connection.</summary>
|
|
<returns>The connection string used to establish the initial connection. The exact contents of the connection string depend on the specific data source for this connection. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.ConnectionTimeout">
|
|
<summary>Gets the time to wait while establishing a connection before terminating the attempt and generating an error.</summary>
|
|
<returns>The time (in seconds) to wait for a connection to open. The default value is determined by the specific type of connection that you are using.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.CreateCommand">
|
|
<summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object associated with the current connection.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbCommand" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.CreateDbCommand">
|
|
<summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object associated with the current connection.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbCommand" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.Database">
|
|
<summary>Gets the name of the current database after a connection is opened, or the database name specified in the connection string before the connection is opened.</summary>
|
|
<returns>The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.DataSource">
|
|
<summary>Gets the name of the database server to which to connect.</summary>
|
|
<returns>The name of the database server to which to connect. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.DbProviderFactory">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DbProviderFactory" /> for this <see cref="T:System.Data.Common.DbConnection" />.</summary>
|
|
<returns>A set of methods for creating instances of a provider's implementation of the data source classes.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.EnlistTransaction(System.Transactions.Transaction)">
|
|
<summary>Enlists in the specified transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.GetSchema">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.GetSchema(System.String)">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" /> using the specified string for the schema name.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="collectionName" /> is specified as null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.GetSchema(System.String,System.String[])">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Common.DbConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<param name="restrictionValues">Specifies a set of restriction values for the requested schema.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="collectionName" /> is specified as null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.OnStateChange(System.Data.StateChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.Common.DbConnection.StateChange" /> event.</summary>
|
|
<param name="stateChange">A <see cref="T:System.Data.StateChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.Open">
|
|
<summary>Opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.OpenAsync">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open" />, which opens a database connection with the settings specified by the <see cref="P:System.Data.Common.DbConnection.ConnectionString" />. This method invokes the virtual method <see cref="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken)">
|
|
<summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbConnection.Open" />. Providers should override with an appropriate implementation. The cancellation token can optionally be honored.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbConnection.Open" /> call and returns a completed task. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Open will be communicated via the returned Task Exception property.
|
|
Do not invoke other methods and properties of the <see langword="DbConnection" /> object until the returned Task is complete.</summary>
|
|
<param name="cancellationToken">The cancellation instruction.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.ServerVersion">
|
|
<summary>Gets a string that represents the version of the server to which the object is connected.</summary>
|
|
<returns>The version of the database. The format of the string returned depends on the specific type of connection you are using.</returns>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
<see cref="P:System.Data.Common.DbConnection.ServerVersion" /> was called while the returned Task was not completed and the connection was not opened after a call to <see cref="Overload:System.Data.Common.DbConnection.OpenAsync" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnection.State">
|
|
<summary>Gets a string that describes the state of the connection.</summary>
|
|
<returns>The state of the connection. The format of the string returned depends on the specific type of connection you are using.</returns>
|
|
</member>
|
|
<member name="E:System.Data.Common.DbConnection.StateChange">
|
|
<summary>Occurs when the state of the event changes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction">
|
|
<summary>Begins a database transaction.</summary>
|
|
<returns>An object that represents the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#BeginTransaction(System.Data.IsolationLevel)">
|
|
<summary>Begins a database transaction with the specified <see cref="T:System.Data.IsolationLevel" /> value.</summary>
|
|
<param name="isolationLevel">One of the <see cref="T:System.Data.IsolationLevel" /> values.</param>
|
|
<returns>An object that represents the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnection.System#Data#IDbConnection#CreateCommand">
|
|
<summary>Creates and returns a <see cref="T:System.Data.Common.DbCommand" /> object that is associated with the current connection.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.DbCommand" /> object that is associated with the connection.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbConnectionStringBuilder">
|
|
<summary>Provides a base class for strongly typed connection string builders.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.#ctor(System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class, optionally using ODBC rules for quoting values.</summary>
|
|
<param name="useOdbcRules">
|
|
<see langword="true" /> to use {} to delimit fields; <see langword="false" /> to use quotation marks.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.Add(System.String,System.Object)">
|
|
<summary>Adds an entry with the specified key and value into the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<param name="keyword">The key to add to the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
|
|
<param name="value">The value for the specified key.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String)">
|
|
<summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</summary>
|
|
<param name="builder">The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
|
|
<param name="keyword">The key to be added.</param>
|
|
<param name="value">The value for the supplied key.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.AppendKeyValuePair(System.Text.StringBuilder,System.String,System.String,System.Boolean)">
|
|
<summary>Provides an efficient and safe way to append a key and value to an existing <see cref="T:System.Text.StringBuilder" /> object.</summary>
|
|
<param name="builder">The <see cref="T:System.Text.StringBuilder" /> to which to add the key/value pair.</param>
|
|
<param name="keyword">The key to be added.</param>
|
|
<param name="value">The value for the supplied key.</param>
|
|
<param name="useOdbcRules">
|
|
<see langword="true" /> to use {} to delimit fields, <see langword="false" /> to use quotation marks.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.BrowsableConnectionString">
|
|
<summary>Gets or sets a value that indicates whether the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property is visible in Visual Studio designers.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the connection string is visible within designers; <see langword="false" /> otherwise. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.Clear">
|
|
<summary>Clears the contents of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.ClearPropertyDescriptors">
|
|
<summary>Clears the collection of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects on the associated <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString">
|
|
<summary>Gets or sets the connection string associated with the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<returns>The current connection string, created from the key/value pairs that are contained within the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />. The default value is an empty string.</returns>
|
|
<exception cref="T:System.ArgumentException">An invalid connection string argument has been supplied.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.ContainsKey(System.String)">
|
|
<summary>Determines whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains a specific key.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains an entry with the specified key; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.Count">
|
|
<summary>Gets the current number of keys that are contained within the <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property.</summary>
|
|
<returns>The number of keys that are contained within the connection string maintained by the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.EquivalentTo(System.Data.Common.DbConnectionStringBuilder)">
|
|
<summary>Compares the connection information in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object with the connection information in the supplied object.</summary>
|
|
<param name="connectionStringBuilder">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> to be compared with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the connection information in both of the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> objects causes an equivalent connection string; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.GetProperties(System.Collections.Hashtable)">
|
|
<summary>Fills a supplied <see cref="T:System.Collections.Hashtable" /> with information about all the properties of this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<param name="propertyDescriptors">The <see cref="T:System.Collections.Hashtable" /> to be filled with information about this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.Item(System.String)">
|
|
<summary>Gets or sets the value associated with the specified key.</summary>
|
|
<param name="keyword">The key of the item to get or set.</param>
|
|
<returns>The value associated with the specified key. If the specified key is not found, trying to get it returns a null reference (<see langword="Nothing" /> in Visual Basic), and trying to set it creates a new element using the specified key.
|
|
Passing a null (<see langword="Nothing" /> in Visual Basic) key throws an <see cref="T:System.ArgumentNullException" />. Assigning a null value removes the key/value pair.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
<exception cref="T:System.NotSupportedException">The property is set, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only.
|
|
-or-
|
|
The property is set, <paramref name="keyword" /> does not exist in the collection, and the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.Keys">
|
|
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.Remove(System.String)">
|
|
<summary>Removes the entry with the specified key from the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<param name="keyword">The key of the key/value pair to be removed from the connection string in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the key existed within the connection string and was removed; <see langword="false" /> if the key did not exist.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic)</exception>
|
|
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> is read-only, or the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> has a fixed size.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.ShouldSerialize(System.String)">
|
|
<summary>Indicates whether the specified key exists in this <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> contains an entry with the specified key; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
|
|
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#IsSynchronized">
|
|
<summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#ICollection#SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Add(System.Object,System.Object)">
|
|
<summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" /> object.</summary>
|
|
<param name="keyword">The <see cref="T:System.Object" /> to use as the key of the element to add.</param>
|
|
<param name="value">The <see cref="T:System.Object" /> to use as the value of the element to add.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Contains(System.Object)">
|
|
<summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> object contains an element with the specified key.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Collections.IDictionary" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#GetEnumerator">
|
|
<summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object.</summary>
|
|
<returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> object for the <see cref="T:System.Collections.IDictionary" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Item(System.Object)">
|
|
<summary>Gets or sets the element with the specified key.</summary>
|
|
<param name="keyword">The key of the element to get or set.</param>
|
|
<returns>The element with the specified key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IDictionary#Remove(System.Object)">
|
|
<summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" /> object.</summary>
|
|
<param name="keyword">The key of the element to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#Collections#IEnumerable#GetEnumerator">
|
|
<summary>Returns an enumerator that iterates through a collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
|
|
<summary>Returns a collection of custom attributes for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> containing the attributes for this object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
|
|
<summary>Returns the class name of this instance of a component.</summary>
|
|
<returns>The class name of the object, or <see langword="null" /> if the class does not have a name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
|
|
<summary>Returns the name of this instance of a component.</summary>
|
|
<returns>The name of the object, or <see langword="null" /> if the object does not have a name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
|
|
<summary>Returns a type converter for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> that is the converter for this object, or <see langword="null" /> if there is no <see cref="T:System.ComponentModel.TypeConverter" /> for this object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
|
|
<summary>Returns the default event for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for this object, or <see langword="null" /> if this object does not have events.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
|
|
<summary>Returns the default property for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for this object, or <see langword="null" /> if this object does not have properties.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
|
|
<summary>Returns an editor of the specified type for this instance of a component.</summary>
|
|
<param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
|
|
<returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
|
|
<summary>Returns the events for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
|
|
<summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
|
|
<param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the filtered events for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
|
|
<summary>Returns the properties for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
|
|
<summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
|
|
<param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the filtered properties for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>Returns an object that contains the property described by the specified property descriptor.</summary>
|
|
<param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
|
|
<returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.ToString">
|
|
<summary>Returns the connection string associated with this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<returns>The current <see cref="P:System.Data.Common.DbConnectionStringBuilder.ConnectionString" /> property.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
|
|
<summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<param name="keyword">The key of the item to retrieve.</param>
|
|
<param name="value">The value corresponding to the <paramref name="keyword" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if <paramref name="keyword" /> was found within the connection string, <see langword="false" /> otherwise.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> contains a null value (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbConnectionStringBuilder.Values">
|
|
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbDataAdapter">
|
|
<summary>Aids implementation of the <see cref="T:System.Data.IDbDataAdapter" /> interface. Inheritors of <see cref="T:System.Data.Common.DbDataAdapter" /> implement a set of functions to provide strong typing, but inherit most of the functionality needed to fully implement a DataAdapter.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.#ctor">
|
|
<summary>Initializes a new instance of a DataAdapter class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.#ctor(System.Data.Common.DbDataAdapter)">
|
|
<summary>Initializes a new instance of a <see langword="DataAdapter" /> class from an existing object of the same type.</summary>
|
|
<param name="adapter">A <see langword="DataAdapter" /> object used to create the new <see langword="DataAdapter" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.AddToBatch(System.Data.IDbCommand)">
|
|
<summary>Adds a <see cref="T:System.Data.IDbCommand" /> to the current batch.</summary>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to add to the batch.</param>
|
|
<returns>The number of commands in the batch before adding the <see cref="T:System.Data.IDbCommand" />.</returns>
|
|
<exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.ClearBatch">
|
|
<summary>Removes all <see cref="T:System.Data.IDbCommand" /> objects from the batch.</summary>
|
|
<exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatedEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> used to update the data source.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
|
|
<param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
|
|
<returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.CreateRowUpdatingEvent(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> that updates the data source.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="statementType">Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.</param>
|
|
<param name="tableMapping">A <see cref="T:System.Data.Common.DataTableMapping" /> object.</param>
|
|
<returns>A new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</returns>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbDataAdapter.DefaultSourceTableName">
|
|
<summary>The default name used by the <see cref="T:System.Data.Common.DataAdapter" /> object for table mappings.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.DeleteCommand">
|
|
<summary>Gets or sets a command for deleting records from the data set.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Dispose(System.Boolean)">
|
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbDataAdapter" /> and optionally releases the managed resources.</summary>
|
|
<param name="disposing">
|
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.ExecuteBatch">
|
|
<summary>Executes the current batch.</summary>
|
|
<returns>The return value from the last command in the batch.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)">
|
|
<summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String)">
|
|
<summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<param name="startRecord">The zero-based record number to start with.</param>
|
|
<param name="maxRecords">The maximum number of records to retrieve.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
<exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.
|
|
-or-
|
|
The connection is invalid.</exception>
|
|
<exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
|
|
-or-
|
|
The <paramref name="maxRecords" /> parameter is less than 0.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.Int32,System.Int32,System.String,System.Data.IDbCommand,System.Data.CommandBehavior)">
|
|
<summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and source table names, command string, and command behavior.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<param name="startRecord">The zero-based record number to start with.</param>
|
|
<param name="maxRecords">The maximum number of records to retrieve.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
|
|
-or-
|
|
The <paramref name="maxRecords" /> parameter is less than 0.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet,System.String)">
|
|
<summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
<exception cref="T:System.SystemException">The source table is invalid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)">
|
|
<summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataTable" /> name.</summary>
|
|
<param name="dataTable">The name of the <see cref="T:System.Data.DataTable" /> to use for table mapping.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable,System.Data.IDbCommand,System.Data.CommandBehavior)">
|
|
<summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable" /> to match those in the data source using the specified <see cref="T:System.Data.DataTable" />, <see cref="T:System.Data.IDbCommand" /> and <see cref="T:System.Data.CommandBehavior" />.</summary>
|
|
<param name="dataTable">A <see cref="T:System.Data.DataTable" /> to fill with records and, if necessary, schema.</param>
|
|
<param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable[],System.Int32,System.Int32,System.Data.IDbCommand,System.Data.CommandBehavior)">
|
|
<summary>Adds or refreshes rows in a specified range in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> and <see cref="T:System.Data.DataTable" /> names.</summary>
|
|
<param name="dataTables">The <see cref="T:System.Data.DataTable" /> objects to fill from the data source.</param>
|
|
<param name="startRecord">The zero-based record number to start with.</param>
|
|
<param name="maxRecords">The maximum number of records to retrieve.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed to fill the <see cref="T:System.Data.DataTable" /> objects.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>The number of rows added to or refreshed in the data tables.</returns>
|
|
<exception cref="T:System.SystemException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.
|
|
-or-
|
|
The connection is invalid.</exception>
|
|
<exception cref="T:System.InvalidCastException">The connection could not be found.</exception>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="startRecord" /> parameter is less than 0.
|
|
-or-
|
|
The <paramref name="maxRecords" /> parameter is less than 0.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Fill(System.Int32,System.Int32,System.Data.DataTable[])">
|
|
<summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable" /> to match those in the data source starting at the specified record and retrieving up to the specified maximum number of records.</summary>
|
|
<param name="startRecord">The zero-based record number to start with.</param>
|
|
<param name="maxRecords">The maximum number of records to retrieve.</param>
|
|
<param name="dataTables">The <see cref="T:System.Data.DataTable" /> objects to fill from the data source.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataTable" />. This value does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.FillCommandBehavior">
|
|
<summary>Gets or sets the behavior of the command used to fill the data adapter.</summary>
|
|
<returns>The <see cref="T:System.Data.CommandBehavior" /> of the command used to fill the data adapter.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> named "Table" to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to insert the schema in.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values that specify how to insert the schema.</param>
|
|
<returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataTable" /> objects that contain schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType,System.String)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based upon the specified <see cref="T:System.Data.SchemaType" /> and <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to insert the schema in.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values that specify how to insert the schema.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<returns>A reference to a collection of <see cref="T:System.Data.DataTable" /> objects that were added to the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.ArgumentException">A source table from which to get the schema could not be found.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType)">
|
|
<summary>Configures the schema of the specified <see cref="T:System.Data.DataTable" /> based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled with the schema from the data source.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.FillSchema(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior)">
|
|
<summary>Configures the schema of the specified <see cref="T:System.Data.DataTable" /> based on the specified <see cref="T:System.Data.SchemaType" />, command string, and <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> to be filled with the schema from the data source.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<param name="command">The SQL SELECT statement used to retrieve rows from the data source.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>A of <see cref="T:System.Data.DataTable" /> object that contains schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.GetBatchedParameter(System.Int32,System.Int32)">
|
|
<summary>Returns a <see cref="T:System.Data.IDataParameter" /> from one of the commands in the current batch.</summary>
|
|
<param name="commandIdentifier">The index of the command to retrieve the parameter from.</param>
|
|
<param name="parameterIndex">The index of the parameter within the command.</param>
|
|
<returns>The <see cref="T:System.Data.IDataParameter" /> specified.</returns>
|
|
<exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.GetBatchedRecordsAffected(System.Int32,System.Int32@,System.Exception@)">
|
|
<summary>Returns information about an individual update attempt within a larger batched update.</summary>
|
|
<param name="commandIdentifier">The zero-based column ordinal of the individual command within the batch.</param>
|
|
<param name="recordsAffected">The number of rows affected in the data store by the specified command within the batch.</param>
|
|
<param name="error">An <see cref="T:System.Exception" /> thrown during execution of the specified command. Returns <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) if no exception is thrown.</param>
|
|
<returns>Information about an individual update attempt within a larger batched update.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.GetFillParameters">
|
|
<summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
|
|
<returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.InitializeBatching">
|
|
<summary>Initializes batching for the <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.InsertCommand">
|
|
<summary>Gets or sets a command used to insert new records into the data source.</summary>
|
|
<returns>A <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.OnRowUpdated(System.Data.Common.RowUpdatedEventArgs)">
|
|
<summary>Raises the <see langword="RowUpdated" /> event of a .NET Framework data provider.</summary>
|
|
<param name="value">A <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.OnRowUpdating(System.Data.Common.RowUpdatingEventArgs)">
|
|
<summary>Raises the <see langword="RowUpdating" /> event of a .NET Framework data provider.</summary>
|
|
<param name="value">An <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.SelectCommand">
|
|
<summary>Gets or sets a command used to select records in the data source.</summary>
|
|
<returns>A <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
|
|
<summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
|
|
<summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
|
|
<summary>Gets or sets an SQL statement used to select records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
|
|
<summary>Gets or sets an SQL statement used to update records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.System#ICloneable#Clone">
|
|
<summary>Creates a new object that is a copy of the current instance.</summary>
|
|
<returns>A new object that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.TerminateBatching">
|
|
<summary>Ends batching for the <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<exception cref="T:System.NotSupportedException">The adapter does not support batches.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[])">
|
|
<summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataRows">An array of <see cref="T:System.Data.DataRow" /> objects used to update the data source.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataTable" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping)">
|
|
<summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of <see cref="T:System.Data.DataSet" /> objects.</summary>
|
|
<param name="dataRows">An array of <see cref="T:System.Data.DataRow" /> objects used to update the data source.</param>
|
|
<param name="tableMapping">The <see cref="P:System.Data.IDataAdapter.TableMappings" /> collection to use.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataTable" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)">
|
|
<summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet,System.String)">
|
|
<summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the <see cref="T:System.Data.DataSet" /> with the specified <see cref="T:System.Data.DataTable" /> name.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> to use to update the data source.</param>
|
|
<param name="srcTable">The name of the source table to use for table mapping.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataTable)">
|
|
<summary>Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> used to update the data source.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataTable" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <see cref="T:System.Data.DataSet" /> is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The source table is invalid.</exception>
|
|
<exception cref="T:System.SystemException">No <see cref="T:System.Data.DataRow" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataTable" /> exists to update.
|
|
-or-
|
|
No <see cref="T:System.Data.DataSet" /> exists to use as a source.</exception>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.UpdateBatchSize">
|
|
<summary>Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.</summary>
|
|
<returns>The number of rows to process per batch.
|
|
Value is
|
|
|
|
Effect
|
|
|
|
0
|
|
|
|
There is no limit on the batch size.
|
|
|
|
1
|
|
|
|
Disables batch updating.
|
|
|
|
> 1
|
|
|
|
Changes are sent using batches of <see cref="P:System.Data.Common.DbDataAdapter.UpdateBatchSize" /> operations at a time.
|
|
|
|
|
|
|
|
When setting this to a value other than 1, all the commands associated with the <see cref="T:System.Data.Common.DbDataAdapter" /> must have their <see cref="P:System.Data.IDbCommand.UpdatedRowSource" /> property set to None or OutputParameters. An exception will be thrown otherwise.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataAdapter.UpdateCommand">
|
|
<summary>Gets or sets a command used to update records in the data source.</summary>
|
|
<returns>A <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DBDataPermission">
|
|
<summary>Enables a .NET Framework data provider to help ensure that a user has a security level adequate for accessing data.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.#ctor">
|
|
<summary>Initializes a new instance of a <see langword="DBDataPermission" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermission)">
|
|
<summary>Initializes a new instance of a <see langword="DBDataPermission" /> class using an existing <see langword="DBDataPermission" />.</summary>
|
|
<param name="permission">An existing <see langword="DBDataPermission" /> used to create a new <see langword="DBDataPermission" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.#ctor(System.Data.Common.DBDataPermissionAttribute)">
|
|
<summary>Initializes a new instance of a <see langword="DBDataPermission" /> class with the specified <see langword="DBDataPermissionAttribute" />.</summary>
|
|
<param name="permissionAttribute">A security action associated with a custom security attribute.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState)">
|
|
<summary>Initializes a new instance of a <see langword="DBDataPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" /> value.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)">
|
|
<summary>Initializes a new instance of a <see langword="DBDataPermission" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" /> value, and a value indicating whether a blank password is allowed.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
<param name="allowBlankPassword">
|
|
<see langword="true" /> to indicate that a blank password is allowed; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)">
|
|
<summary>Adds access for the specified connection string to the existing state of the <see langword="DBDataPermission" />.</summary>
|
|
<param name="connectionString">A permitted connection string.</param>
|
|
<param name="restrictions">String that identifies connection string parameters that are allowed or disallowed.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> properties.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DBDataPermission.AllowBlankPassword">
|
|
<summary>Gets a value indicating whether a blank password is allowed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if a blank password is allowed, otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.Clear">
|
|
<summary>Removes all permissions that were previous added using the <see cref="M:System.Data.Common.DBDataPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)" /> method.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.Copy">
|
|
<summary>Creates and returns an identical copy of the current permission object.</summary>
|
|
<returns>A copy of the current permission object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.CreateInstance">
|
|
<summary>Creates a new instance of the <see langword="DBDataPermission" /> class.</summary>
|
|
<returns>A new <see langword="DBDataPermission" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.FromXml(System.Security.SecurityElement)">
|
|
<summary>Reconstructs a security object with a specified state from an XML encoding.</summary>
|
|
<param name="securityElement">The XML encoding to use to reconstruct the security object.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.Intersect(System.Security.IPermission)">
|
|
<summary>Returns a new permission object representing the intersection of the current permission object and the specified permission object.</summary>
|
|
<param name="target">A permission object to intersect with the current permission object. It must be of the same type as the current permission object.</param>
|
|
<returns>A new permission object that represents the intersection of the current permission object and the specified permission object. This new permission object is a null reference (<see langword="Nothing" /> in Visual Basic) if the intersection is empty.</returns>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic) and is not an instance of the same class as the current permission object.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.IsSubsetOf(System.Security.IPermission)">
|
|
<summary>Returns a value indicating whether the current permission object is a subset of the specified permission object.</summary>
|
|
<param name="target">A permission object that is to be tested for the subset relationship. This object must be of the same type as the current permission object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the current permission object is a subset of the specified permission object, otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is an object that is not of the same type as the current permission object.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.IsUnrestricted">
|
|
<summary>Returns a value indicating whether the permission can be represented as unrestricted without any knowledge of the permission semantics.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the permission can be represented as unrestricted.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.ToXml">
|
|
<summary>Creates an XML encoding of the security object and its current state.</summary>
|
|
<returns>An XML encoding of the security object, including any state information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermission.Union(System.Security.IPermission)">
|
|
<summary>Returns a new permission object that is the union of the current and specified permission objects.</summary>
|
|
<param name="target">A permission object to combine with the current permission object. It must be of the same type as the current permission object.</param>
|
|
<returns>A new permission object that represents the union of the current permission object and the specified permission object.</returns>
|
|
<exception cref="T:System.ArgumentException">The <paramref name="target" /> object is not the same type as the current permission object.</exception>
|
|
</member>
|
|
<member name="T:System.Data.Common.DBDataPermissionAttribute">
|
|
<summary>Associates a security action with a custom security attribute.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DBDataPermissionAttribute" />.</summary>
|
|
<param name="action">One of the security action values representing an action that can be performed by declarative security.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DBDataPermissionAttribute.AllowBlankPassword">
|
|
<summary>Gets or sets a value indicating whether a blank password is allowed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if a blank password is allowed; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DBDataPermissionAttribute.ConnectionString">
|
|
<summary>Gets or sets a permitted connection string.</summary>
|
|
<returns>A permitted connection string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictionBehavior">
|
|
<summary>Identifies whether the list of connection string parameters identified by the <see cref="P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictions" /> property are the only connection string parameters allowed.</summary>
|
|
<returns>One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> values.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DBDataPermissionAttribute.KeyRestrictions">
|
|
<summary>Gets or sets connection string parameters that are allowed or disallowed.</summary>
|
|
<returns>One or more connection string parameters that are allowed or disallowed.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeConnectionString">
|
|
<summary>Identifies whether the attribute should serialize the connection string.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the attribute should serialize the connection string; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DBDataPermissionAttribute.ShouldSerializeKeyRestrictions">
|
|
<summary>Identifies whether the attribute should serialize the set of key restrictions.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the attribute should serialize the set of key restrictions; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbDataReader">
|
|
<summary>Reads a forward-only stream of rows from a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataReader" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.Close">
|
|
<summary>Closes the <see cref="T:System.Data.Common.DbDataReader" /> object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.Depth">
|
|
<summary>Gets a value indicating the depth of nesting for the current row.</summary>
|
|
<returns>The depth of nesting for the current row.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.Dispose">
|
|
<summary>Releases all resources used by the current instance of the <see cref="T:System.Data.Common.DbDataReader" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.Dispose(System.Boolean)">
|
|
<summary>Releases the managed resources used by the <see cref="T:System.Data.Common.DbDataReader" /> and optionally releases the unmanaged resources.</summary>
|
|
<param name="disposing">
|
|
<see langword="true" /> to release managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.FieldCount">
|
|
<summary>Gets the number of columns in the current row.</summary>
|
|
<returns>The number of columns in the current row.</returns>
|
|
<exception cref="T:System.NotSupportedException">There is no current connection to an instance of SQL Server.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetBoolean(System.Int32)">
|
|
<summary>Gets the value of the specified column as a Boolean.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetByte(System.Int32)">
|
|
<summary>Gets the value of the specified column as a byte.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of bytes from the specified column, starting at location indicated by <paramref name="dataOffset" />, into the buffer, starting at the location indicated by <paramref name="bufferOffset" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataOffset">The index within the row from which to begin the read operation.</param>
|
|
<param name="buffer">The buffer into which to copy the data.</param>
|
|
<param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
|
|
<param name="length">The maximum number of characters to read.</param>
|
|
<returns>The actual number of bytes read.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetChar(System.Int32)">
|
|
<summary>Gets the value of the specified column as a single character.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of characters from the specified column, starting at location indicated by <paramref name="dataOffset" />, into the buffer, starting at the location indicated by <paramref name="bufferOffset" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataOffset">The index within the row from which to begin the read operation.</param>
|
|
<param name="buffer">The buffer into which to copy the data.</param>
|
|
<param name="bufferOffset">The index with the buffer to which the data will be copied.</param>
|
|
<param name="length">The maximum number of characters to read.</param>
|
|
<returns>The actual number of characters read.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetData(System.Int32)">
|
|
<summary>Returns a <see cref="T:System.Data.Common.DbDataReader" /> object for the requested column ordinal.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetDataTypeName(System.Int32)">
|
|
<summary>Gets name of the data type of the specified column.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>A string representing the name of the data type.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetDateTime(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetDbDataReader(System.Int32)">
|
|
<summary>Returns a <see cref="T:System.Data.Common.DbDataReader" /> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetDecimal(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.Decimal" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetDouble(System.Int32)">
|
|
<summary>Gets the value of the specified column as a double-precision floating point number.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetEnumerator">
|
|
<summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetFieldType(System.Int32)">
|
|
<summary>Gets the data type of the specified column.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The data type of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetFieldValue``1(System.Int32)">
|
|
<summary>Synchronously gets the value of the specified column as a type.</summary>
|
|
<param name="ordinal">The column to be retrieved.</param>
|
|
<typeparam name="T">Synchronously gets the value of the specified column as a type.</typeparam>
|
|
<returns>The column to be retrieved.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Tried to read a previously-read column in sequential mode.
|
|
-or-
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.InvalidCastException">
|
|
<paramref name="T" /> doesn't match the type returned by SQL Server or cannot be cast.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32)">
|
|
<summary>Asynchronously gets the value of the specified column as a type.</summary>
|
|
<param name="ordinal">The type of the value to be returned.</param>
|
|
<typeparam name="T">The type of the value to be returned.</typeparam>
|
|
<returns>The type of the value to be returned.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Tried to read a previously-read column in sequential mode.
|
|
-or-
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.InvalidCastException">
|
|
<paramref name="T" /> doesn't match the type returned by the data source or cannot be cast.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32,System.Threading.CancellationToken)">
|
|
<summary>Asynchronously gets the value of the specified column as a type.</summary>
|
|
<param name="ordinal">The type of the value to be returned.</param>
|
|
<param name="cancellationToken">The cancellation instruction, which propagates a notification that operations should be canceled. This does not guarantee the cancellation. A setting of <see langword="CancellationToken.None" /> makes this method equivalent to <see cref="M:System.Data.Common.DbDataReader.GetFieldValueAsync``1(System.Int32)" />. The returned task must be marked as cancelled.</param>
|
|
<typeparam name="T">The type of the value to be returned.</typeparam>
|
|
<returns>The type of the value to be returned.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Tried to read a previously-read column in sequential mode.
|
|
-or-
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.InvalidCastException">
|
|
<paramref name="T" /> doesn't match the type returned by the data source or cannot be cast.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetFloat(System.Int32)">
|
|
<summary>Gets the value of the specified column as a single-precision floating point number.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetGuid(System.Int32)">
|
|
<summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetInt16(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetInt32(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetInt64(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetName(System.Int32)">
|
|
<summary>Gets the name of the column, given the zero-based column ordinal.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The name of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetOrdinal(System.String)">
|
|
<summary>Gets the column ordinal given the name of the column.</summary>
|
|
<param name="name">The name of the column.</param>
|
|
<returns>The zero-based column ordinal.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetProviderSpecificFieldType(System.Int32)">
|
|
<summary>Returns the provider-specific field type of the specified column.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> object that describes the data type of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValue(System.Int32)">
|
|
<summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetProviderSpecificValues(System.Object[])">
|
|
<summary>Gets all provider-specific attribute columns in the collection for the current row.</summary>
|
|
<param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute columns.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.Common.DbDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetStream(System.Int32)">
|
|
<summary>Retrieves data as a <see cref="T:System.IO.Stream" />.</summary>
|
|
<param name="ordinal">Retrieves data as a <see cref="T:System.IO.Stream" />.</param>
|
|
<returns>The returned object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Tried to read a previously-read column in sequential mode.
|
|
-or-
|
|
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 following types: binary, image, varbinary, or udt.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetString(System.Int32)">
|
|
<summary>Gets the value of the specified column as an instance of <see cref="T:System.String" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetTextReader(System.Int32)">
|
|
<summary>Retrieves data as a <see cref="T:System.IO.TextReader" />.</summary>
|
|
<param name="ordinal">Retrieves data as a <see cref="T:System.IO.TextReader" />.</param>
|
|
<returns>The returned object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Tried to read a previously-read column in sequential mode.
|
|
-or-
|
|
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 following types: char, nchar, ntext, nvarchar, text, or varchar.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetValue(System.Int32)">
|
|
<summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.GetValues(System.Object[])">
|
|
<summary>Populates an array of objects with the column values of the current row.</summary>
|
|
<param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute columns.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.HasRows">
|
|
<summary>Gets a value that indicates whether this <see cref="T:System.Data.Common.DbDataReader" /> contains one or more rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.IsClosed">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Data.Common.DbDataReader" /> is closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> is closed; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)">
|
|
<summary>Gets a value that indicates whether the column contains nonexistent or missing values.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column is equivalent to <see cref="T:System.DBNull" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32)">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)" />, which gets a value that indicates whether the column contains non-existent or missing values.</summary>
|
|
<param name="ordinal">The zero-based column to be retrieved.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Trying to read a previously read column in sequential mode.
|
|
-or-
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32,System.Threading.CancellationToken)">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.IsDBNull(System.Int32)" />, which gets a value that indicates whether the column contains non-existent or missing values. Optionally, sends a notification that operations should be cancelled.</summary>
|
|
<param name="ordinal">The zero-based column to be retrieved.</param>
|
|
<param name="cancellationToken">The cancellation instruction, which propagates a notification that operations should be canceled. This does not guarantee the cancellation. A setting of <see langword="CancellationToken.None" /> makes this method equivalent to <see cref="M:System.Data.Common.DbDataReader.IsDBNullAsync(System.Int32)" />. The returned task must be marked as cancelled.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
-or-
|
|
The <see cref="T:System.Data.Common.DbDataReader" /> is closed during the data retrieval.
|
|
-or-
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.Common.DbDataReader.Read" /> hasn't been called, or returned false).
|
|
-or-
|
|
Trying to read a previously read column in sequential mode.
|
|
-or-
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.Item(System.Int32)">
|
|
<summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.Item(System.String)">
|
|
<summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" />.</summary>
|
|
<param name="name">The name of the column.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.NextResult">
|
|
<summary>Advances the reader to the next result when reading the results of a batch of statements.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more result sets; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.NextResultAsync">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.NextResult" />, which advances the reader to the next result when reading the results of a batch of statements.
|
|
Invokes <see cref="M:System.Data.Common.DbDataReader.NextResultAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.NextResultAsync(System.Threading.CancellationToken)">
|
|
<summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbDataReader.NextResult" />. Providers should override with an appropriate implementation. The <paramref name="cancellationToken" /> may optionally be ignored.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbDataReader.NextResult" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled <paramref name="cancellationToken" />. Exceptions thrown by <see cref="M:System.Data.Common.DbDataReader.NextResult" /> will be communicated via the returned Task Exception property.
|
|
Other methods and properties of the DbDataReader object should not be invoked while the returned Task is not yet completed.</summary>
|
|
<param name="cancellationToken">The cancellation instruction.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.Read">
|
|
<summary>Advances the reader to the next record in a result set.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.ReadAsync">
|
|
<summary>An asynchronous version of <see cref="M:System.Data.Common.DbDataReader.Read" />, which advances the reader to the next record in a result set. This method invokes <see cref="M:System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken)" /> with CancellationToken.None.</summary>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken)">
|
|
<summary>This is the asynchronous version of <see cref="M:System.Data.Common.DbDataReader.Read" />. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored.
|
|
The default implementation invokes the synchronous <see cref="M:System.Data.Common.DbDataReader.Read" /> method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Read will be communicated via the returned Task Exception property.
|
|
Do not invoke other methods and properties of the <see langword="DbDataReader" /> object until the returned Task is complete.</summary>
|
|
<param name="cancellationToken">The cancellation instruction.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.Data.Common.DbException">An error occurred while executing the command text.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.RecordsAffected">
|
|
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected or the statement failed.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReader.System#Data#IDataRecord#GetData(System.Int32)">
|
|
<summary>For a description of this member, see <see cref="M:System.Data.IDataRecord.GetData(System.Int32)" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>An instance of <see cref="T:System.Data.IDataReader" /> to be used when the field points to more remote structured data.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataReader.VisibleFieldCount">
|
|
<summary>Gets the number of fields in the <see cref="T:System.Data.Common.DbDataReader" /> that are not hidden.</summary>
|
|
<returns>The number of fields that are not hidden.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbDataReaderExtensions">
|
|
<summary>This class contains column schema extension methods for <see cref="T:System.Data.Common.DbDataReader" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReaderExtensions.CanGetColumnSchema(System.Data.Common.DbDataReader)">
|
|
<summary>Gets a value that indicates whether a <see cref="T:System.Data.Common.DbDataReader" /> can get a column schema.</summary>
|
|
<param name="reader">The <see cref="T:System.Data.Common.DbDataReader" /> to be checked for column schema support.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbDataReader" /> can get a column schema; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataReaderExtensions.GetColumnSchema(System.Data.Common.DbDataReader)">
|
|
<summary>Gets the column schema (<see cref="T:System.Data.Common.DbColumn" /> collection) for a <see cref="T:System.Data.Common.DbDataReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Data.Common.DbDataReader" /> to return the column schema.</param>
|
|
<returns>The column schema (<see cref="T:System.Data.Common.DbColumn" /> collection) for a <see cref="T:System.Data.Common.DbDataReader" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbDataRecord">
|
|
<summary>Implements <see cref="T:System.Data.IDataRecord" /> and <see cref="T:System.ComponentModel.ICustomTypeDescriptor" />, and provides data binding support for <see cref="T:System.Data.Common.DbEnumerator" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbDataRecord" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataRecord.FieldCount">
|
|
<summary>Indicates the number of fields within the current record. This property is read-only.</summary>
|
|
<returns>The number of fields within the current record.</returns>
|
|
<exception cref="T:System.NotSupportedException">Not connected to a data source to read from.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetBoolean(System.Int32)">
|
|
<summary>Returns the value of the specified column as a Boolean.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>
|
|
<see langword="true" /> if the Boolean is <see langword="true" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetByte(System.Int32)">
|
|
<summary>Returns the value of the specified column as a byte.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Returns the value of the specified column as a byte array.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the field from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferIndex">The index for <paramref name="buffer" /> to start the read operation.</param>
|
|
<param name="length">The number of bytes to read.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetChar(System.Int32)">
|
|
<summary>Returns the value of the specified column as a character.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
|
|
<summary>Returns the value of the specified column as a character array.</summary>
|
|
<param name="i">Column ordinal.</param>
|
|
<param name="dataIndex">Buffer to copy data into.</param>
|
|
<param name="buffer">Maximum length to copy into the buffer.</param>
|
|
<param name="bufferIndex">Point to start from within the buffer.</param>
|
|
<param name="length">Point to start from within the source data.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetData(System.Int32)">
|
|
<summary>Not currently supported.</summary>
|
|
<param name="i">Not currently supported.</param>
|
|
<returns>Not currently supported.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetDataTypeName(System.Int32)">
|
|
<summary>Returns the name of the back-end data type.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The name of the back-end data type.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetDateTime(System.Int32)">
|
|
<summary>Returns the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetDbDataReader(System.Int32)">
|
|
<summary>Returns a <see cref="T:System.Data.Common.DbDataReader" /> object for the requested column ordinal that can be overridden with a provider-specific implementation.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>A <see cref="T:System.Data.Common.DbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetDecimal(System.Int32)">
|
|
<summary>Returns the value of the specified column as a <see cref="T:System.Decimal" /> object.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetDouble(System.Int32)">
|
|
<summary>Returns the value of the specified column as a double-precision floating-point number.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetFieldType(System.Int32)">
|
|
<summary>Returns the <see cref="T:System.Type" /> that is the data type of the object.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetFloat(System.Int32)">
|
|
<summary>Returns the value of the specified column as a single-precision floating-point number.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetGuid(System.Int32)">
|
|
<summary>Returns the GUID value of the specified field.</summary>
|
|
<param name="i">The index of the field to return.</param>
|
|
<returns>The GUID value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetInt16(System.Int32)">
|
|
<summary>Returns the value of the specified column as a 16-bit signed integer.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetInt32(System.Int32)">
|
|
<summary>Returns the value of the specified column as a 32-bit signed integer.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetInt64(System.Int32)">
|
|
<summary>Returns the value of the specified column as a 64-bit signed integer.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetName(System.Int32)">
|
|
<summary>Returns the name of the specified column.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The name of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetOrdinal(System.String)">
|
|
<summary>Returns the column ordinal, given the name of the column.</summary>
|
|
<param name="name">The name of the column.</param>
|
|
<returns>The column ordinal.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetString(System.Int32)">
|
|
<summary>Returns the value of the specified column as a string.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetValue(System.Int32)">
|
|
<summary>Returns the value at the specified column in its native format.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value to return.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.GetValues(System.Object[])">
|
|
<summary>Populates an array of objects with the column values of the current record.</summary>
|
|
<param name="values">An array of <see cref="T:System.Object" /> to copy the attribute fields into.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.IsDBNull(System.Int32)">
|
|
<summary>Used to indicate nonexistent values.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column is equivalent to <see cref="T:System.DBNull" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataRecord.Item(System.Int32)">
|
|
<summary>Indicates the value at the specified column in its native format given the column ordinal. This property is read-only.</summary>
|
|
<param name="i">The column ordinal.</param>
|
|
<returns>The value at the specified column in its native format.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbDataRecord.Item(System.String)">
|
|
<summary>Indicates the value at the specified column in its native format given the column name. This property is read-only.</summary>
|
|
<param name="name">The column name.</param>
|
|
<returns>The value at the specified column in its native format.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
|
|
<summary>Returns a collection of custom attributes for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> that contains the attributes for this object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
|
|
<summary>Returns the class name of this instance of a component.</summary>
|
|
<returns>The class name of the object, or <see langword="null" /> if the class does not have a name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
|
|
<summary>Returns the name of this instance of a component.</summary>
|
|
<returns>The name of the object, or <see langword="null" /> if the object does not have a name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
|
|
<summary>Returns a type converter for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> that is the converter for this object, or <see langword="null" /> if there is no <see cref="T:System.ComponentModel.TypeConverter" /> for this object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
|
|
<summary>Returns the default event for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for this object, or <see langword="null" /> if this object does not have events.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
|
|
<summary>Returns the default property for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for this object, or <see langword="null" /> if this object does not have properties.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
|
|
<summary>Returns an editor of the specified type for this instance of a component.</summary>
|
|
<param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
|
|
<returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
|
|
<summary>Returns the events for this instance of a component.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
|
|
<summary>Returns the events for this instance of a component using the specified attribute array as a filter.</summary>
|
|
<param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
|
|
<returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the filtered events for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
|
|
<summary>Returns the properties for this instance of a component.</summary>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
|
|
<summary>Returns the properties for this instance of a component using the attribute array as a filter.</summary>
|
|
<param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the filtered properties for this component instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataRecord.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>Returns an object that contains the property described by the specified property descriptor.</summary>
|
|
<param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
|
|
<returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbDataSourceEnumerator">
|
|
<summary>Provides a mechanism for enumerating all available instances of database servers within the local network.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataSourceEnumerator.#ctor">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbDataSourceEnumerator.GetDataSources">
|
|
<summary>Retrieves a <see cref="T:System.Data.DataTable" /> containing information about all visible instances of the server represented by the strongly typed instance of this class.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> containing information about the visible instances of the associated data source.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbEnumerator">
|
|
<summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class with the give n data reader.</summary>
|
|
<param name="reader">The DataReader through which to iterate.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.Common.DbDataReader,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified reader and indicates whether to automatically close the reader after iterating through its data.</summary>
|
|
<param name="reader">The DataReader through which to iterate.</param>
|
|
<param name="closeReader">
|
|
<see langword="true" /> to automatically close the DataReader after iterating through its data; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified <see langword="DataReader" />.</summary>
|
|
<param name="reader">The <see langword="DataReader" /> through which to iterate.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.#ctor(System.Data.IDataReader,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbEnumerator" /> class using the specified <see langword="DataReader" />, and indicates whether to automatically close the <see langword="DataReader" /> after iterating through its data.</summary>
|
|
<param name="reader">The <see langword="DataReader" /> through which to iterate.</param>
|
|
<param name="closeReader">
|
|
<see langword="true" /> to automatically close the <see langword="DataReader" /> after iterating through its data; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbEnumerator.Current">
|
|
<summary>Gets the current element in the collection.</summary>
|
|
<returns>The current element in the collection.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.MoveNext">
|
|
<summary>Advances the enumerator to the next element of the collection.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbEnumerator.Reset">
|
|
<summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbException">
|
|
<summary>The base class for all exceptions thrown on behalf of the data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified serialization information and context.</summary>
|
|
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message.</summary>
|
|
<param name="message">The message to display for this exception.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message string.</param>
|
|
<param name="innerException">The inner exception reference.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbException.#ctor(System.String,System.Int32)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbException" /> class with the specified error message and error code.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="errorCode">The error code for the exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbMetaDataCollectionNames">
|
|
<summary>Provides a list of constants for the well-known MetaDataCollections: DataSourceInformation, DataTypes, MetaDataCollections, ReservedWords, and Restrictions.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataCollectionNames.DataSourceInformation">
|
|
<summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataCollectionNames.DataTypes">
|
|
<summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataCollectionNames.MetaDataCollections">
|
|
<summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the MetaDataCollections collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataCollectionNames.ReservedWords">
|
|
<summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the ReservedWords collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataCollectionNames.Restrictions">
|
|
<summary>A constant for use with the <see cref="M:System.Data.Common.DbConnection.GetSchema" /> method that represents the Restrictions collection.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbMetaDataColumnNames">
|
|
<summary>Provides static values that are used for the column names in the MetaDataCollection objects contained in the <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> is created by the GetSchema method.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.CollectionName">
|
|
<summary>Used by the GetSchema method to create the CollectionName column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ColumnSize">
|
|
<summary>Used by the GetSchema method to create the ColumnSize column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.CompositeIdentifierSeparatorPattern">
|
|
<summary>Used by the GetSchema method to create the CompositeIdentifierSeparatorPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.CreateFormat">
|
|
<summary>Used by the GetSchema method to create the CreateFormat column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.CreateParameters">
|
|
<summary>Used by the GetSchema method to create the CreateParameters column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductName">
|
|
<summary>Used by the GetSchema method to create the DataSourceProductName column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersion">
|
|
<summary>Used by the GetSchema method to create the DataSourceProductVersion column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.DataSourceProductVersionNormalized">
|
|
<summary>Used by the GetSchema method to create the DataSourceProductVersionNormalized column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.DataType">
|
|
<summary>Used by the GetSchema method to create the DataType column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.GroupByBehavior">
|
|
<summary>Used by the GetSchema method to create the GroupByBehavior column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierCase">
|
|
<summary>Used by the GetSchema method to create the IdentifierCase column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IdentifierPattern">
|
|
<summary>Used by the GetSchema method to create the IdentifierPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsAutoIncrementable">
|
|
<summary>Used by the GetSchema method to create the IsAutoIncrementable column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsBestMatch">
|
|
<summary>Used by the GetSchema method to create the IsBestMatch column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsCaseSensitive">
|
|
<summary>Used by the GetSchema method to create the IsCaseSensitive column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsConcurrencyType">
|
|
<summary>Used by the GetSchema method to create the IsConcurrencyType column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedLength">
|
|
<summary>Used by the GetSchema method to create the IsFixedLength column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsFixedPrecisionScale">
|
|
<summary>Used by the GetSchema method to create the IsFixedPrecisionScale column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsLiteralSupported">
|
|
<summary>Used by the GetSchema method to create the IsLiteralSupported column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsLong">
|
|
<summary>Used by the GetSchema method to create the IsLong column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsNullable">
|
|
<summary>Used by the GetSchema method to create the IsNullable column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchable">
|
|
<summary>Used by the GetSchema method to create the IsSearchable column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsSearchableWithLike">
|
|
<summary>Used by the GetSchema method to create the IsSearchableWithLike column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.IsUnsigned">
|
|
<summary>Used by the GetSchema method to create the IsUnsigned column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralPrefix">
|
|
<summary>Used by the GetSchema method to create the LiteralPrefix column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.LiteralSuffix">
|
|
<summary>Used by the GetSchema method to create the LiteralSuffix column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.MaximumScale">
|
|
<summary>Used by the GetSchema method to create the MaximumScale column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.MinimumScale">
|
|
<summary>Used by the GetSchema method to create the MinimumScale column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfIdentifierParts">
|
|
<summary>Used by the GetSchema method to create the NumberOfIdentifierParts column in the MetaDataCollections collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.NumberOfRestrictions">
|
|
<summary>Used by the GetSchema method to create the NumberOfRestrictions column in the MetaDataCollections collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.OrderByColumnsInSelect">
|
|
<summary>Used by the GetSchema method to create the OrderByColumnsInSelect column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerFormat">
|
|
<summary>Used by the GetSchema method to create the ParameterMarkerFormat column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterMarkerPattern">
|
|
<summary>Used by the GetSchema method to create the ParameterMarkerPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNameMaxLength">
|
|
<summary>Used by the GetSchema method to create the ParameterNameMaxLength column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ParameterNamePattern">
|
|
<summary>Used by the GetSchema method to create the ParameterNamePattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ProviderDbType">
|
|
<summary>Used by the GetSchema method to create the ProviderDbType column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierCase">
|
|
<summary>Used by the GetSchema method to create the QuotedIdentifierCase column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.QuotedIdentifierPattern">
|
|
<summary>Used by the GetSchema method to create the QuotedIdentifierPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.ReservedWord">
|
|
<summary>Used by the GetSchema method to create the ReservedWord column in the ReservedWords collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.StatementSeparatorPattern">
|
|
<summary>Used by the GetSchema method to create the StatementSeparatorPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.StringLiteralPattern">
|
|
<summary>Used by the GetSchema method to create the StringLiteralPattern column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.SupportedJoinOperators">
|
|
<summary>Used by the GetSchema method to create the SupportedJoinOperators column in the DataSourceInformation collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.DbMetaDataColumnNames.TypeName">
|
|
<summary>Used by the GetSchema method to create the TypeName column in the DataTypes collection.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbParameter">
|
|
<summary>Represents a parameter to a <see cref="T:System.Data.Common.DbCommand" /> and optionally, its mapping to a <see cref="T:System.Data.DataSet" /> column. For more information on parameters, see Configuring Parameters and Parameter Data Types.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameter.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameter" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.DbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.String" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property is not set to a valid <see cref="T:System.Data.DbType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.Direction">
|
|
<summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property is not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.IsNullable">
|
|
<summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null values are accepted; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.ParameterName">
|
|
<summary>Gets or sets the name of the <see cref="T:System.Data.Common.DbParameter" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.Common.DbParameter" />. The default is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.Precision">
|
|
<summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value" /> property.</summary>
|
|
<returns>The maximum number of digits used to represent the <see cref="P:System.Data.Common.DbParameter.Value" /> property.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameter.ResetDbType">
|
|
<summary>Resets the DbType property to its original settings.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.Scale">
|
|
<summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value" /> is resolved.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.Common.DbParameter.Value" /> is resolved.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.Size">
|
|
<summary>Gets or sets the maximum size, in bytes, of the data within the column.</summary>
|
|
<returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.SourceColumn">
|
|
<summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.Common.DbParameter.Value" />.</summary>
|
|
<returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.SourceColumnNullMapping">
|
|
<summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.Common.DbCommandBuilder" /> to correctly generate Update statements for nullable columns.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.SourceVersion">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when you load <see cref="P:System.Data.Common.DbParameter.Value" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property is not set to one of the <see cref="T:System.Data.DataRowVersion" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Precision">
|
|
<summary>Indicates the precision of numeric parameters.</summary>
|
|
<returns>The maximum number of digits used to represent the <see langword="Value" /> property of a data provider <see langword="Parameter" /> object. The default value is 0, which indicates that a data provider sets the precision for <see langword="Value" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.System#Data#IDbDataParameter#Scale">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataParameter.Scale" />.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved. The default is 0.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameter.Value">
|
|
<summary>Gets or sets the value of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbParameterCollection">
|
|
<summary>The base class for a collection of parameters relevant to a <see cref="T:System.Data.Common.DbCommand" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.DbParameterCollection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Add(System.Object)">
|
|
<summary>Adds the specified <see cref="T:System.Data.Common.DbParameter" /> object to the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="P:System.Data.Common.DbParameter.Value" /> of the <see cref="T:System.Data.Common.DbParameter" /> to add to the collection.</param>
|
|
<returns>The index of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.AddRange(System.Array)">
|
|
<summary>Adds an array of items with the specified values to the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
|
|
<param name="values">An array of values of type <see cref="T:System.Data.Common.DbParameter" /> to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Clear">
|
|
<summary>Removes all <see cref="T:System.Data.Common.DbParameter" /> values from the <see cref="T:System.Data.Common.DbParameterCollection" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Contains(System.Object)">
|
|
<summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter" /> with the specified <see cref="P:System.Data.Common.DbParameter.Value" /> is contained in the collection.</summary>
|
|
<param name="value">The <see cref="P:System.Data.Common.DbParameter.Value" /> of the <see cref="T:System.Data.Common.DbParameter" /> to look for in the collection.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbParameter" /> is in the collection; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Contains(System.String)">
|
|
<summary>Indicates whether a <see cref="T:System.Data.Common.DbParameter" /> with the specified name exists in the collection.</summary>
|
|
<param name="value">The name of the <see cref="T:System.Data.Common.DbParameter" /> to look for in the collection.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Common.DbParameter" /> is in the collection; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies an array of items to the collection starting at the specified index.</summary>
|
|
<param name="array">The array of items to copy to the collection.</param>
|
|
<param name="index">The index in the collection to copy the items.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.Count">
|
|
<summary>Specifies the number of items in the collection.</summary>
|
|
<returns>The number of items in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.GetEnumerator">
|
|
<summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.Int32)">
|
|
<summary>Returns the <see cref="T:System.Data.Common.DbParameter" /> object at the specified index in the collection.</summary>
|
|
<param name="index">The index of the <see cref="T:System.Data.Common.DbParameter" /> in the collection.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DbParameter" /> object at the specified index in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.GetParameter(System.String)">
|
|
<summary>Returns <see cref="T:System.Data.Common.DbParameter" /> the object with the specified name.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> in the collection.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DbParameter" /> the object with the specified name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.Object)">
|
|
<summary>Returns the index of the specified <see cref="T:System.Data.Common.DbParameter" /> object.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
|
|
<returns>The index of the specified <see cref="T:System.Data.Common.DbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.IndexOf(System.String)">
|
|
<summary>Returns the index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
|
|
<returns>The index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts the specified index of the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name into the collection at the specified index.</summary>
|
|
<param name="index">The index at which to insert the <see cref="T:System.Data.Common.DbParameter" /> object.</param>
|
|
<param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object to insert into the collection.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.IsFixedSize">
|
|
<summary>Specifies whether the collection is a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is a fixed size; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.IsReadOnly">
|
|
<summary>Specifies whether the collection is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is read-only; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.IsSynchronized">
|
|
<summary>Specifies whether the collection is synchronized.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is synchronized; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.Item(System.Int32)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DbParameter" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the parameter.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DbParameter" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Common.DbParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<returns>The <see cref="T:System.Data.Common.DbParameter" /> with the specified name.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.Remove(System.Object)">
|
|
<summary>Removes the specified <see cref="T:System.Data.Common.DbParameter" /> object from the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Common.DbParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DbParameter" /> object at the specified from the collection.</summary>
|
|
<param name="index">The index where the <see cref="T:System.Data.Common.DbParameter" /> object is located.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name from the collection.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.Int32,System.Data.Common.DbParameter)">
|
|
<summary>Sets the <see cref="T:System.Data.Common.DbParameter" /> object at the specified index to a new value.</summary>
|
|
<param name="index">The index where the <see cref="T:System.Data.Common.DbParameter" /> object is located.</param>
|
|
<param name="value">The new <see cref="T:System.Data.Common.DbParameter" /> value.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbParameterCollection.SetParameter(System.String,System.Data.Common.DbParameter)">
|
|
<summary>Sets the <see cref="T:System.Data.Common.DbParameter" /> object with the specified name to a new value.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.Common.DbParameter" /> object in the collection.</param>
|
|
<param name="value">The new <see cref="T:System.Data.Common.DbParameter" /> value.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.SyncRoot">
|
|
<summary>Specifies the <see cref="T:System.Object" /> to be used to synchronize access to the collection.</summary>
|
|
<returns>A <see cref="T:System.Object" /> to be used to synchronize access to the <see cref="T:System.Data.Common.DbParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.System#Collections#IList#Item(System.Int32)">
|
|
<summary>Gets or sets the element at the specified index.</summary>
|
|
<param name="index">The zero-based index of the element to get or set.</param>
|
|
<returns>The element at the specified index.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbParameterCollection.System#Data#IDataParameterCollection#Item(System.String)">
|
|
<summary>Gets or sets the parameter at the specified index.</summary>
|
|
<param name="parameterName">The name of the parameter to retrieve.</param>
|
|
<returns>An <see cref="T:System.Object" /> at the specified index.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbProviderConfigurationHandler">
|
|
<summary>This class can be used by any provider to support a provider-specific configuration section.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderConfigurationHandler.#ctor">
|
|
<summary>This class can be used by any provider to support a provider-specific configuration section.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderConfigurationHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
|
|
<summary>Creates a new <see cref="T:System.Collections.Specialized.NameValueCollection" /> expression.</summary>
|
|
<param name="parent">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<param name="configContext">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<param name="section">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<returns>The new expression.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbProviderFactories">
|
|
<summary>Represents a set of static methods for creating one or more instances of <see cref="T:System.Data.Common.DbProviderFactory" /> classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.Data.Common.DbConnection)">
|
|
<summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
|
|
<param name="connection">The connection used.</param>
|
|
<returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified connection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.Data.DataRow)">
|
|
<summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
|
|
<param name="providerRow">
|
|
<see cref="T:System.Data.DataRow" /> containing the provider's configuration information.</param>
|
|
<returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified <see cref="T:System.Data.DataRow" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactories.GetFactory(System.String)">
|
|
<summary>Returns an instance of a <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
|
|
<param name="providerInvariantName">Invariant name of a provider.</param>
|
|
<returns>An instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> for a specified provider name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactories.GetFactoryClasses">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that contains information about all installed providers that implement <see cref="T:System.Data.Common.DbProviderFactory" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> containing <see cref="T:System.Data.DataRow" /> objects that contain the following data:
|
|
Column ordinal
|
|
|
|
Column name
|
|
|
|
Description
|
|
|
|
0
|
|
|
|
**Name**
|
|
|
|
Human-readable name for the data provider.
|
|
|
|
1
|
|
|
|
**Description**
|
|
|
|
Human-readable description of the data provider.
|
|
|
|
2
|
|
|
|
**InvariantName**
|
|
|
|
Name that can be used programmatically to refer to the data provider.
|
|
|
|
3
|
|
|
|
**AssemblyQualifiedName**
|
|
|
|
Fully qualified name of the factory class, which contains enough information to instantiate the object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbProviderFactoriesConfigurationHandler">
|
|
<summary>This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactoriesConfigurationHandler.#ctor">
|
|
<summary>This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactoriesConfigurationHandler.Create(System.Object,System.Object,System.Xml.XmlNode)">
|
|
<summary>This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="parent">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<param name="configContext">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<param name="section">This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</param>
|
|
<returns>This type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbProviderFactory">
|
|
<summary>Represents a set of methods for creating instances of a provider's implementation of the data source classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.#ctor">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderFactory" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbProviderFactory.CanCreateDataSourceEnumerator">
|
|
<summary>Specifies whether the specific <see cref="T:System.Data.Common.DbProviderFactory" /> supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the instance of the <see cref="T:System.Data.Common.DbProviderFactory" /> supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateCommand">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommand" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateCommandBuilder">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateConnection">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnection" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbConnection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateConnectionStringBuilder">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateDataAdapter">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataAdapter" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateDataSourceEnumerator">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbDataSourceEnumerator" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreateParameter">
|
|
<summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbParameter" /> class.</summary>
|
|
<returns>A new instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderFactory.CreatePermission(System.Security.Permissions.PermissionState)">
|
|
<summary>Returns a new instance of the provider's class that implements the provider's version of the <see cref="T:System.Security.CodeAccessPermission" /> class.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
<returns>A <see cref="T:System.Security.CodeAccessPermission" /> object for the specified <see cref="T:System.Security.Permissions.PermissionState" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute">
|
|
<summary>Identifies which provider-specific property in the strongly typed parameter classes is to be used when setting a provider-specific type.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbProviderSpecificTypePropertyAttribute.#ctor(System.Boolean)">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.Common.DbProviderSpecificTypePropertyAttribute" /> class.</summary>
|
|
<param name="isProviderSpecificTypeProperty">Specifies whether this property is a provider-specific property.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbProviderSpecificTypePropertyAttribute.IsProviderSpecificTypeProperty">
|
|
<summary>Indicates whether the attributed property is a provider-specific type.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the property that this attribute is applied to is a provider-specific type property; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.DbTransaction">
|
|
<summary>The base class for a transaction.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbTransaction.#ctor">
|
|
<summary>Initializes a new <see cref="T:System.Data.Common.DbTransaction" /> object.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbTransaction.Commit">
|
|
<summary>Commits the database transaction.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbTransaction.Connection">
|
|
<summary>Specifies the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbTransaction.DbConnection">
|
|
<summary>Specifies the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbTransaction.Dispose">
|
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbTransaction.Dispose(System.Boolean)">
|
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.Data.Common.DbTransaction" /> and optionally releases the managed resources.</summary>
|
|
<param name="disposing">If <see langword="true" />, this method releases all resources held by any managed objects that this <see cref="T:System.Data.Common.DbTransaction" /> references.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbTransaction.IsolationLevel">
|
|
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.DbTransaction.Rollback">
|
|
<summary>Rolls back a transaction from a pending state.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Common.DbTransaction.System#Data#IDbTransaction#Connection">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction, or a null reference if the transaction is no longer valid.</summary>
|
|
<returns>The <see cref="T:System.Data.Common.DbConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.GroupByBehavior">
|
|
<summary>Specifies the relationship between the columns in a GROUP BY clause and the non-aggregated columns in the select-list of a SELECT statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.GroupByBehavior.ExactMatch">
|
|
<summary>The GROUP BY clause must contain all nonaggregated columns in the select list, and must not contain other columns not in the select list.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.GroupByBehavior.MustContainAll">
|
|
<summary>The GROUP BY clause must contain all nonaggregated columns in the select list, and can contain other columns not in the select list.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.GroupByBehavior.NotSupported">
|
|
<summary>The GROUP BY clause is not supported.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.GroupByBehavior.Unknown">
|
|
<summary>The support for the GROUP BY clause is unknown.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.GroupByBehavior.Unrelated">
|
|
<summary>There is no relationship between the columns in the GROUP BY clause and the nonaggregated columns in the SELECT list. You may group by any column.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.IDbColumnSchemaGenerator">
|
|
<summary>Generates a column schema.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.IDbColumnSchemaGenerator.GetColumnSchema">
|
|
<summary>Gets the column schema (<see cref="T:System.Data.Common.DbColumn" /> collection).</summary>
|
|
<returns>The column schema (<see cref="T:System.Data.Common.DbColumn" /> collection).</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.IdentifierCase">
|
|
<summary>Specifies how identifiers are treated by the data source when searching the system catalog.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.IdentifierCase.Insensitive">
|
|
<summary>The data source ignores identifier case when searching the system catalog. The identifiers "ab" and "AB" will match.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.IdentifierCase.Sensitive">
|
|
<summary>The data source distinguishes identifier case when searching the system catalog. The identifiers "ab" and "AB" will not match.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.IdentifierCase.Unknown">
|
|
<summary>The data source has ambiguous rules regarding identifier case and cannot discern this information.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.RowUpdatedEventArgs">
|
|
<summary>Provides data for the <see langword="RowUpdated" /> event of a .NET Framework data provider.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.RowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatedEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
|
|
<param name="statementType">The type of SQL statement executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.Command">
|
|
<summary>Gets the <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
|
|
<returns>The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[])">
|
|
<summary>Copies references to the modified rows into the provided array.</summary>
|
|
<param name="array">The array of <see cref="T:System.Data.DataRow" /> to copy into.</param>
|
|
</member>
|
|
<member name="M:System.Data.Common.RowUpdatedEventArgs.CopyToRows(System.Data.DataRow[],System.Int32)">
|
|
<summary>Copies references to the modified rows into the provided array.</summary>
|
|
<param name="array">The array of <see cref="T:System.Data.DataRow" /> to copy into.</param>
|
|
<param name="arrayIndex">The index in the array to start copying into.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.Errors">
|
|
<summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> was executed.</summary>
|
|
<returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> was executed.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.RecordsAffected">
|
|
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.Row">
|
|
<summary>Gets the <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.RowCount">
|
|
<summary>Gets the number of rows processed in a batch of updated records.</summary>
|
|
<returns>
|
|
<see langword="int" /> that specifies the number of row processed.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.StatementType">
|
|
<summary>Gets the type of SQL statement executed.</summary>
|
|
<returns>The type of SQL statement executed.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.Status">
|
|
<summary>Gets the <see cref="T:System.Data.UpdateStatus" /> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> property.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateStatus" /> values. The default is <see langword="Continue" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatedEventArgs.TableMapping">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.RowUpdatingEventArgs">
|
|
<summary>Provides the data for the RowUpdating event of a .NET Framework data provider.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Common.RowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Common.RowUpdatingEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
|
|
<param name="statementType">The type of SQL statement to execute.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.BaseCommand">
|
|
<summary>Gets or sets the <see cref="T:System.Data.IDbCommand" /> object for an instance of this class.</summary>
|
|
<returns>The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.Command">
|
|
<summary>Gets the <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> operation.</summary>
|
|
<returns>The <see cref="T:System.Data.IDbCommand" /> to execute during the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.Errors">
|
|
<summary>Gets any errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> executes.</summary>
|
|
<returns>The errors generated by the .NET Framework data provider when the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> executes.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.Row">
|
|
<summary>Gets the <see cref="T:System.Data.DataRow" /> that will be sent to the server as part of an insert, update, or delete operation.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> to send through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.StatementType">
|
|
<summary>Gets the type of SQL statement to execute.</summary>
|
|
<returns>The type of SQL statement to execute.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.Status">
|
|
<summary>Gets or sets the <see cref="T:System.Data.UpdateStatus" /> of the <see cref="P:System.Data.Common.RowUpdatedEventArgs.Command" /> property.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateStatus" /> values. The default is <see langword="Continue" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Common.RowUpdatingEventArgs.TableMapping">
|
|
<summary>Gets the <see cref="T:System.Data.Common.DataTableMapping" /> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>The <see cref="T:System.Data.Common.DataTableMapping" /> to send through the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Common.SchemaTableColumn">
|
|
<summary>Describes the column metadata of the schema for a database table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.AllowDBNull">
|
|
<summary>Specifies whether value <see langword="DBNull" /> is allowed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.BaseColumnName">
|
|
<summary>Specifies the name of the column in the schema table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.BaseSchemaName">
|
|
<summary>Specifies the name of the schema in the schema table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.BaseTableName">
|
|
<summary>Specifies the name of the table in the schema table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.ColumnName">
|
|
<summary>Specifies the name of the column in the schema table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.ColumnOrdinal">
|
|
<summary>Specifies the ordinal of the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.ColumnSize">
|
|
<summary>Specifies the size of the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.DataType">
|
|
<summary>Specifies the type of data in the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.IsAliased">
|
|
<summary>Specifies whether this column is aliased.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.IsExpression">
|
|
<summary>Specifies whether this column is an expression.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.IsKey">
|
|
<summary>Specifies whether this column is a key for the table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.IsLong">
|
|
<summary>Specifies whether this column contains long data.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.IsUnique">
|
|
<summary>Specifies whether a unique constraint applies to this column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.NonVersionedProviderType">
|
|
<summary>Specifies the non-versioned provider-specific data type of the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.NumericPrecision">
|
|
<summary>Specifies the precision of the column data, if the data is numeric.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.NumericScale">
|
|
<summary>Specifies the scale of the column data, if the data is numeric.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableColumn.ProviderType">
|
|
<summary>Specifies the provider-specific data type of the column.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.SchemaTableOptionalColumn">
|
|
<summary>Describes optional column metadata of the schema for a database table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementSeed">
|
|
<summary>Specifies the value at which the series for new identity columns is assigned.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.AutoIncrementStep">
|
|
<summary>Specifies the increment between values in the identity column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseCatalogName">
|
|
<summary>The name of the catalog associated with the results of the latest query.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseColumnNamespace">
|
|
<summary>The namespace of the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseServerName">
|
|
<summary>The server name of the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.BaseTableNamespace">
|
|
<summary>The namespace for the table that contains the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.ColumnMapping">
|
|
<summary>Specifies the mapping for the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.DefaultValue">
|
|
<summary>The default value for the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.Expression">
|
|
<summary>The expression used to compute the column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.IsAutoIncrement">
|
|
<summary>Specifies whether the column values in the column are automatically incremented.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.IsHidden">
|
|
<summary>Specifies whether this column is hidden.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.IsReadOnly">
|
|
<summary>Specifies whether this column is read-only.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.IsRowVersion">
|
|
<summary>Specifies whether this column contains row version information.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SchemaTableOptionalColumn.ProviderSpecificDataType">
|
|
<summary>Specifies the provider-specific data type of the column.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Common.SupportedJoinOperators">
|
|
<summary>Specifies what types of Transact-SQL join statements are supported by the data source.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SupportedJoinOperators.FullOuter">
|
|
<summary>The data source supports full outer joins.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SupportedJoinOperators.Inner">
|
|
<summary>The data source supports inner joins.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SupportedJoinOperators.LeftOuter">
|
|
<summary>The data source supports left outer joins.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SupportedJoinOperators.None">
|
|
<summary>The data source does not support join queries.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Common.SupportedJoinOperators.RightOuter">
|
|
<summary>The data source supports right outer joins.</summary>
|
|
</member>
|
|
<member name="T:System.Data.ConflictOption">
|
|
<summary>Specifies how conflicting changes to the data source will be detected and resolved.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConflictOption.CompareAllSearchableValues">
|
|
<summary>Update and delete statements will include all searchable columns from the table in the WHERE clause. This is equivalent to specifying <see langword="CompareAllValuesUpdate" /> | <see langword="CompareAllValuesDelete" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConflictOption.CompareRowVersion">
|
|
<summary>If any Timestamp columns exist in the table, they are used in the WHERE clause for all generated update statements. This is equivalent to specifying <see langword="CompareRowVersionUpdate" /> | <see langword="CompareRowVersionDelete" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConflictOption.OverwriteChanges">
|
|
<summary>All update and delete statements include only <see cref="P:System.Data.DataTable.PrimaryKey" /> columns in the WHERE clause. If no <see cref="P:System.Data.DataTable.PrimaryKey" /> is defined, all searchable columns are included in the WHERE clause. This is equivalent to <see langword="OverwriteChangesUpdate" /> | <see langword="OverwriteChangesDelete" />.</summary>
|
|
</member>
|
|
<member name="T:System.Data.ConnectionState">
|
|
<summary>Describes the current state of the connection to a data source.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Broken">
|
|
<summary>The connection to the data source is broken. This can occur only after the connection has been opened. A connection in this state may be closed and then re-opened. (This value is reserved for future versions of the product.)</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Closed">
|
|
<summary>The connection is closed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Connecting">
|
|
<summary>The connection object is connecting to the data source.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Executing">
|
|
<summary>The connection object is executing a command. (This value is reserved for future versions of the product.)</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Fetching">
|
|
<summary>The connection object is retrieving data. (This value is reserved for future versions of the product.)</summary>
|
|
</member>
|
|
<member name="F:System.Data.ConnectionState.Open">
|
|
<summary>The connection is open.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Constraint">
|
|
<summary>Represents a constraint that can be enforced on one or more <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Constraint.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Constraint" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Constraint._DataSet">
|
|
<summary>Gets the <see cref="T:System.Data.DataSet" /> to which this constraint belongs.</summary>
|
|
<returns>The <see cref="T:System.Data.DataSet" /> to which the constraint belongs.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Constraint.CheckStateForProperty">
|
|
<summary>Gets the <see cref="T:System.Data.DataSet" /> to which this constraint belongs.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Constraint.ConstraintName">
|
|
<summary>The name of a constraint in the <see cref="T:System.Data.ConstraintCollection" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.Constraint" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.Constraint" /> name is a null value or empty string.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.ConstraintCollection" /> already contains a <see cref="T:System.Data.Constraint" /> with the same name (The comparison is not case-sensitive.).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Constraint.ExtendedProperties">
|
|
<summary>Gets the collection of user-defined constraint properties.</summary>
|
|
<returns>A <see cref="T:System.Data.PropertyCollection" /> of custom information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Constraint.SetDataSet(System.Data.DataSet)">
|
|
<summary>Sets the constraint's <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> to which this constraint will belong.</param>
|
|
</member>
|
|
<member name="P:System.Data.Constraint.Table">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> to which the constraint applies.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> to which the constraint applies.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Constraint.ToString">
|
|
<summary>Gets the <see cref="P:System.Data.Constraint.ConstraintName" />, if there is one, as a string.</summary>
|
|
<returns>The string value of the <see cref="P:System.Data.Constraint.ConstraintName" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.ConstraintCollection">
|
|
<summary>Represents a collection of constraints for a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Add(System.Data.Constraint)">
|
|
<summary>Adds the specified <see cref="T:System.Data.Constraint" /> object to the collection.</summary>
|
|
<param name="constraint">The <see langword="Constraint" /> to add.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="constraint" /> argument is null.</exception>
|
|
<exception cref="T:System.ArgumentException">The constraint already belongs to this collection, or belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the same name. (The comparison is not case-sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Boolean)">
|
|
<summary>Constructs a new <see cref="T:System.Data.UniqueConstraint" /> with the specified name, <see cref="T:System.Data.DataColumn" />, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
|
|
<param name="name">The name of the <see langword="UniqueConstraint" />.</param>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to which the constraint applies.</param>
|
|
<param name="primaryKey">Specifies whether the column should be the primary key. If <see langword="true" />, the column will be a primary key column.</param>
|
|
<returns>A new <see langword="UniqueConstraint" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The constraint already belongs to this collection.
|
|
-Or-
|
|
The constraint belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint" /> with the specified name, parent column, and child column, and adds the constraint to the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />.</param>
|
|
<param name="primaryKeyColumn">The primary key, or parent, <see cref="T:System.Data.DataColumn" />.</param>
|
|
<param name="foreignKeyColumn">The foreign key, or child, <see cref="T:System.Data.DataColumn" />.</param>
|
|
<returns>A new <see langword="ForeignKeyConstraint" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Boolean)">
|
|
<summary>Constructs a new <see cref="T:System.Data.UniqueConstraint" /> with the specified name, array of <see cref="T:System.Data.DataColumn" /> objects, and value that indicates whether the column is a primary key, and adds it to the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.UniqueConstraint" />.</param>
|
|
<param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to which the constraint applies.</param>
|
|
<param name="primaryKey">Specifies whether the column should be the primary key. If <see langword="true" />, the column will be a primary key column.</param>
|
|
<returns>A new <see langword="UniqueConstraint" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The constraint already belongs to this collection.
|
|
-Or-
|
|
The constraint belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a constraint with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Constructs a new <see cref="T:System.Data.ForeignKeyConstraint" />, with the specified arrays of parent columns and child columns, and adds the constraint to the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />.</param>
|
|
<param name="primaryKeyColumns">An array of <see cref="T:System.Data.DataColumn" /> objects that are the primary key, or parent, columns.</param>
|
|
<param name="foreignKeyColumns">An array of <see cref="T:System.Data.DataColumn" /> objects that are the foreign key, or child, columns.</param>
|
|
<returns>A new <see langword="ForeignKeyConstraint" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.ConstraintCollection" /> array to the end of the collection.</summary>
|
|
<param name="constraints">An array of <see cref="T:System.Data.ConstraintCollection" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.CanRemove(System.Data.Constraint)">
|
|
<summary>Indicates whether a <see cref="T:System.Data.Constraint" /> can be removed.</summary>
|
|
<param name="constraint">The <see cref="T:System.Data.Constraint" /> to be tested for removal from the collection.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Constraint" /> can be removed from collection; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Clear">
|
|
<summary>Clears the collection of any <see cref="T:System.Data.Constraint" /> objects.</summary>
|
|
</member>
|
|
<member name="E:System.Data.ConstraintCollection.CollectionChanged">
|
|
<summary>Occurs whenever the <see cref="T:System.Data.ConstraintCollection" /> is changed because of <see cref="T:System.Data.Constraint" /> objects being added or removed.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Contains(System.String)">
|
|
<summary>Indicates whether the <see cref="T:System.Data.Constraint" /> object specified by name exists in the collection.</summary>
|
|
<param name="name">The <see cref="P:System.Data.Constraint.ConstraintName" /> of the constraint.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains the specified constraint; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.CopyTo(System.Data.Constraint[],System.Int32)">
|
|
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
|
|
<param name="index">The index of the array at which to start inserting.</param>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.IndexOf(System.Data.Constraint)">
|
|
<summary>Gets the index of the specified <see cref="T:System.Data.Constraint" />.</summary>
|
|
<param name="constraint">The <see cref="T:System.Data.Constraint" /> to search for.</param>
|
|
<returns>The zero-based index of the <see cref="T:System.Data.Constraint" /> if it is in the collection; otherwise, -1.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.IndexOf(System.String)">
|
|
<summary>Gets the index of the <see cref="T:System.Data.Constraint" /> specified by name.</summary>
|
|
<param name="constraintName">The name of the <see cref="T:System.Data.Constraint" />.</param>
|
|
<returns>The index of the <see cref="T:System.Data.Constraint" /> if it is in the collection; otherwise, -1.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ConstraintCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.Constraint" /> from the collection at the specified index.</summary>
|
|
<param name="index">The index of the constraint to return.</param>
|
|
<returns>The <see cref="T:System.Data.Constraint" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.ConstraintCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.Constraint" /> from the collection with the specified name.</summary>
|
|
<param name="name">The <see cref="P:System.Data.Constraint.ConstraintName" /> of the constraint to return.</param>
|
|
<returns>The <see cref="T:System.Data.Constraint" /> with the specified name; otherwise a null value if the <see cref="T:System.Data.Constraint" /> does not exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Remove(System.Data.Constraint)">
|
|
<summary>Removes the specified <see cref="T:System.Data.Constraint" /> from the collection.</summary>
|
|
<param name="constraint">The <see cref="T:System.Data.Constraint" /> to remove.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="constraint" /> argument is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The constraint does not belong to the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.Remove(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.Constraint" /> object specified by name from the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.Constraint" /> to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.Constraint" /> object at the specified index from the collection.</summary>
|
|
<param name="index">The index of the <see cref="T:System.Data.Constraint" /> to remove.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">The collection does not have a constraint at this index.</exception>
|
|
</member>
|
|
<member name="T:System.Data.ConstraintException">
|
|
<summary>Represents the exception that is thrown when attempting an action that violates a constraint.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class. This is the default constructor.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class using the specified serialization and stream context.</summary>
|
|
<param name="info">The data necessary to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.ConstraintException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ConstraintException" /> class using the specified string and inner exception.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
<param name="innerException">Gets the <see langword="Exception" /> instance that caused the current exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataColumn">
|
|
<summary>Represents the schema of a column in a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.#ctor">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.DataColumn" /> class as type string.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class, as type string, using the specified column name.</summary>
|
|
<param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.#ctor(System.String,System.Type)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified column name and data type.</summary>
|
|
<param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
|
|
<param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified name, data type, and expression.</summary>
|
|
<param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
|
|
<param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
|
|
<param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
|
|
<exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.#ctor(System.String,System.Type,System.String,System.Data.MappingType)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataColumn" /> class using the specified name, data type, expression, and value that determines whether the column is an attribute.</summary>
|
|
<param name="columnName">A string that represents the name of the column to be created. If set to <see langword="null" /> or an empty string (""), a default name will be specified when added to the columns collection.</param>
|
|
<param name="dataType">A supported <see cref="P:System.Data.DataColumn.DataType" />.</param>
|
|
<param name="expr">The expression used to create this column. For more information, see the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
|
|
<param name="type">One of the <see cref="T:System.Data.MappingType" /> values.</param>
|
|
<exception cref="T:System.ArgumentNullException">No <paramref name="dataType" /> was specified.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.AllowDBNull">
|
|
<summary>Gets or sets a value that indicates whether null values are allowed in this column for rows that belong to the table.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null values values are allowed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.AutoIncrement">
|
|
<summary>Gets or sets a value that indicates whether the column automatically increments the value of the column for new rows added to the table.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the value of the column increments automatically; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The column is a computed column.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.AutoIncrementSeed">
|
|
<summary>Gets or sets the starting value for a column that has its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to <see langword="true" />. The default is 0.</summary>
|
|
<returns>The starting value for the <see cref="P:System.Data.DataColumn.AutoIncrement" /> feature.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.AutoIncrementStep">
|
|
<summary>Gets or sets the increment used by a column with its <see cref="P:System.Data.DataColumn.AutoIncrement" /> property set to <see langword="true" />.</summary>
|
|
<returns>The number by which the value of the column is automatically incremented. The default is 1.</returns>
|
|
<exception cref="T:System.ArgumentException">The value set is zero.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Caption">
|
|
<summary>Gets or sets the caption for the column.</summary>
|
|
<returns>The caption of the column. If not set, returns the <see cref="P:System.Data.DataColumn.ColumnName" /> value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.CheckNotAllowNull">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.CheckUnique">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.ColumnMapping">
|
|
<summary>Gets or sets the <see cref="T:System.Data.MappingType" /> of the column.</summary>
|
|
<returns>One of the <see cref="T:System.Data.MappingType" /> values.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.ColumnName">
|
|
<summary>Gets or sets the name of the column in the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<returns>The name of the column.</returns>
|
|
<exception cref="T:System.ArgumentException">The property is set to <see langword="null" /> or an empty string and the column belongs to a collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">A column with the same name already exists in the collection. The name comparison is not case sensitive.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.DataType">
|
|
<summary>Gets or sets the type of data stored in the column.</summary>
|
|
<returns>A <see cref="T:System.Type" /> object that represents the column data type.</returns>
|
|
<exception cref="T:System.ArgumentException">The column already has data stored.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.DateTimeMode">
|
|
<summary>Gets or sets the <see langword="DateTimeMode" /> for the column.</summary>
|
|
<returns>The <see cref="T:System.Data.DataSetDateTime" /> for the specified column.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.DefaultValue">
|
|
<summary>Gets or sets the default value for the column when you are creating new rows.</summary>
|
|
<returns>A value appropriate to the column's <see cref="P:System.Data.DataColumn.DataType" />.</returns>
|
|
<exception cref="T:System.InvalidCastException">When you are adding a row, the default value is not an instance of the column's data type.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Expression">
|
|
<summary>Gets or sets the expression used to filter rows, calculate the values in a column, or create an aggregate column.</summary>
|
|
<returns>An expression to calculate the value of a column, or create an aggregate column. The return type of an expression is determined by the <see cref="P:System.Data.DataColumn.DataType" /> of the column.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="P:System.Data.DataColumn.AutoIncrement" /> or <see cref="P:System.Data.DataColumn.Unique" /> property is set to <see langword="true" />.</exception>
|
|
<exception cref="T:System.FormatException">When you are using the CONVERT function, the expression evaluates to a string, but the string does not contain a representation that can be converted to the type parameter.</exception>
|
|
<exception cref="T:System.InvalidCastException">When you are using the CONVERT function, the requested cast is not possible. See the Conversion function in the following section for detailed information about possible casts.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">When you use the SUBSTRING function, the start argument is out of range.
|
|
-Or-
|
|
When you use the SUBSTRING function, the length argument is out of range.</exception>
|
|
<exception cref="T:System.Exception">When you use the LEN function or the TRIM function, the expression does not evaluate to a string. This includes expressions that evaluate to <see cref="T:System.Char" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.ExtendedProperties">
|
|
<summary>Gets the collection of custom user information associated with a <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<returns>A <see cref="T:System.Data.PropertyCollection" /> of custom information.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.MaxLength">
|
|
<summary>Gets or sets the maximum length of a text column.</summary>
|
|
<returns>The maximum length of the column in characters. If the column has no maximum length, the value is -1 (default).</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Namespace">
|
|
<summary>Gets or sets the namespace of the <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<returns>The namespace of the <see cref="T:System.Data.DataColumn" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The namespace already has data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="pcevent">Parameter reference.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Ordinal">
|
|
<summary>Gets the (zero-based) position of the column in the <see cref="T:System.Data.DataColumnCollection" /> collection.</summary>
|
|
<returns>The position of the column. Gets -1 if the column is not a member of a collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Prefix">
|
|
<summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>The XML prefix for the <see cref="T:System.Data.DataTable" /> namespace.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.RaisePropertyChanging(System.String)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="name">Parameter reference.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.ReadOnly">
|
|
<summary>Gets or sets a value that indicates whether the column allows for changes as soon as a row has been added to the table.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the column is read only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property is set to <see langword="false" /> on a computed column.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.SetOrdinal(System.Int32)">
|
|
<summary>Changes the ordinal or position of the <see cref="T:System.Data.DataColumn" /> to the specified ordinal or position.</summary>
|
|
<param name="ordinal">The specified ordinal.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Table">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> to which the column belongs to.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> that the <see cref="T:System.Data.DataColumn" /> belongs to.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumn.ToString">
|
|
<summary>Gets the <see cref="P:System.Data.DataColumn.Expression" /> of the column, if one exists.</summary>
|
|
<returns>The <see cref="P:System.Data.DataColumn.Expression" /> value, if the property is set; otherwise, the <see cref="P:System.Data.DataColumn.ColumnName" /> property.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumn.Unique">
|
|
<summary>Gets or sets a value that indicates whether the values in each row of the column must be unique.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the value must be unique; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The column is a calculated column.</exception>
|
|
</member>
|
|
<member name="T:System.Data.DataColumnChangeEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataColumn,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataColumnChangeEventArgs" /> class.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> of the column with the changing value.</param>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> with the changing value.</param>
|
|
<param name="value">The new value.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataColumnChangeEventArgs.Column">
|
|
<summary>Gets the <see cref="T:System.Data.DataColumn" /> with a changing value.</summary>
|
|
<returns>The <see cref="T:System.Data.DataColumn" /> with a changing value.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumnChangeEventArgs.ProposedValue">
|
|
<summary>Gets or sets the proposed new value for the column.</summary>
|
|
<returns>The proposed value, of type <see cref="T:System.Object" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumnChangeEventArgs.Row">
|
|
<summary>Gets the <see cref="T:System.Data.DataRow" /> of the column with a changing value.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> of the column with a changing value.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataColumnChangeEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataColumnCollection">
|
|
<summary>Represents a collection of <see cref="T:System.Data.DataColumn" /> objects for a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Add">
|
|
<summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Add(System.Data.DataColumn)">
|
|
<summary>Creates and adds the specified <see cref="T:System.Data.DataColumn" /> object to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to add.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The column already belongs to this collection, or to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Add(System.String)">
|
|
<summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type)">
|
|
<summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name and type to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<param name="columnName">The <see cref="P:System.Data.DataColumn.ColumnName" /> to use when you create the column.</param>
|
|
<param name="type">The <see cref="P:System.Data.DataColumn.DataType" /> of the new column.</param>
|
|
<returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Add(System.String,System.Type,System.String)">
|
|
<summary>Creates and adds a <see cref="T:System.Data.DataColumn" /> object that has the specified name, type, and expression to the <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
<param name="columnName">The name to use when you create the column.</param>
|
|
<param name="type">The <see cref="P:System.Data.DataColumn.DataType" /> of the new column.</param>
|
|
<param name="expression">The expression to assign to the <see cref="P:System.Data.DataColumn.Expression" /> property.</param>
|
|
<returns>The newly created <see cref="T:System.Data.DataColumn" />.</returns>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a column with the specified name. (The comparison is not case-sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidExpressionException">The expression is invalid. See the <see cref="P:System.Data.DataColumn.Expression" /> property for more information about how to create expressions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.AddRange(System.Data.DataColumn[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.DataColumn" /> array to the end of the collection.</summary>
|
|
<param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.CanRemove(System.Data.DataColumn)">
|
|
<summary>Checks whether a specific column can be removed from the collection.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" /> in the collection.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column can be removed. <see langword="false" /> if,
|
|
|
|
The <paramref name="column" /> parameter is <see langword="null" />.
|
|
|
|
The column does not belong to this collection.
|
|
|
|
The column is part of a relationship.
|
|
|
|
Another column's expression depends on this column.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is null.</exception>
|
|
<exception cref="T:System.ArgumentException">The column does not belong to this collection.
|
|
-or-
|
|
The column is part of a relationship.
|
|
-or-
|
|
Another column's expression depends on this column.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Clear">
|
|
<summary>Clears the collection of any columns.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataColumnCollection.CollectionChanged">
|
|
<summary>Occurs when the columns collection changes, either by adding or removing a column.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Contains(System.String)">
|
|
<summary>Checks whether the collection contains a column with the specified name.</summary>
|
|
<param name="name">The <see cref="P:System.Data.DataColumn.ColumnName" /> of the column to look for.</param>
|
|
<returns>
|
|
<see langword="true" /> if a column exists with this name; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.CopyTo(System.Data.DataColumn[],System.Int32)">
|
|
<summary>Copies the entire collection into an existing array, starting at a specified index within the array.</summary>
|
|
<param name="array">An array of <see cref="T:System.Data.DataColumn" /> objects to copy the collection into.</param>
|
|
<param name="index">The index to start from.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.IndexOf(System.Data.DataColumn)">
|
|
<summary>Gets the index of a column specified by name.</summary>
|
|
<param name="column">The name of the column to return.</param>
|
|
<returns>The index of the column specified by <paramref name="column" /> if it is found; otherwise, -1.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.IndexOf(System.String)">
|
|
<summary>Gets the index of the column with the specific name (the name is not case sensitive).</summary>
|
|
<param name="columnName">The name of the column to find.</param>
|
|
<returns>The zero-based index of the column with the specified name, or -1 if the column does not exist in the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataColumnCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.DataColumn" /> from the collection at the specified index.</summary>
|
|
<param name="index">The zero-based index of the column to return.</param>
|
|
<returns>The <see cref="T:System.Data.DataColumn" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataColumnCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.DataColumn" /> from the collection with the specified name.</summary>
|
|
<param name="name">The <see cref="P:System.Data.DataColumn.ColumnName" /> of the column to return.</param>
|
|
<returns>The <see cref="T:System.Data.DataColumn" /> in the collection with the specified <see cref="P:System.Data.DataColumn.ColumnName" />; otherwise a null value if the <see cref="T:System.Data.DataColumn" /> does not exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Remove(System.Data.DataColumn)">
|
|
<summary>Removes the specified <see cref="T:System.Data.DataColumn" /> object from the collection.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to remove.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="column" /> parameter is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The column does not belong to this collection.
|
|
-Or-
|
|
The column is part of a relationship.
|
|
-Or-
|
|
Another column's expression depends on this column.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.Remove(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.DataColumn" /> object that has the specified name from the collection.</summary>
|
|
<param name="name">The name of the column to remove.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a column with the specified name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataColumnCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the column at the specified index from the collection.</summary>
|
|
<param name="index">The index of the column to remove.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a column at the specified index.</exception>
|
|
</member>
|
|
<member name="T:System.Data.DataException">
|
|
<summary>Represents the exception that is thrown when errors are generated using ADO.NET components.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class. This is the default constructor.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified serialization information and context.</summary>
|
|
<param name="info">The data necessary to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified string and inner exception.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
<param name="innerException">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataRelation">
|
|
<summary>Represents a parent/child relationship between two <see cref="T:System.Data.DataTable" /> objects.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified <see cref="T:System.Data.DataRelation" /> name, and parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="relationName">The name of the <see cref="T:System.Data.DataRelation" />. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the relationship.</param>
|
|
<param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the relationship.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
|
|
-Or-
|
|
The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified name, parent and child <see cref="T:System.Data.DataColumn" /> objects, and a value that indicates whether to create constraints.</summary>
|
|
<param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the relation.</param>
|
|
<param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the relation.</param>
|
|
<param name="createConstraints">A value that indicates whether constraints are created. <see langword="true" />, if constraints are created. Otherwise, <see langword="false" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
|
|
-Or-
|
|
The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified <see cref="T:System.Data.DataRelation" /> name and matched arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects contains <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The <see cref="T:System.Data.DataColumn" /> objects have different data types
|
|
-Or-
|
|
One or both of the arrays are not composed of distinct columns from the same table.
|
|
-Or-
|
|
The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRelation" /> class using the specified name, matched arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects, and value that indicates whether to create constraints.</summary>
|
|
<param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<param name="createConstraints">A value that indicates whether to create constraints. <see langword="true" />, if constraints are created. Otherwise, <see langword="false" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the <see cref="T:System.Data.DataColumn" /> objects is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types
|
|
-Or-
|
|
The tables do not belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
|
|
<summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
|
|
<param name="relationName">The name of the <see cref="T:System.Data.DataRelation" />. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the parent table of the relation.</param>
|
|
<param name="parentTableNamespace">The name of the parent table namespace.</param>
|
|
<param name="childTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</param>
|
|
<param name="childTableNamespace">The name of the child table namespace.</param>
|
|
<param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the parent <see cref="T:System.Data.DataTable" /> of the relation.</param>
|
|
<param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the child <see cref="T:System.Data.DataTable" /> of the relation.</param>
|
|
<param name="nested">A value that indicates whether relationships are nested.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.#ctor(System.String,System.String,System.String,System.String[],System.String[],System.Boolean)">
|
|
<summary>This constructor is provided for design time support in the Visual Studio environment.</summary>
|
|
<param name="relationName">The name of the relation. If <see langword="null" /> or an empty string (""), a default name will be given when the created object is added to the <see cref="T:System.Data.DataRelationCollection" />.</param>
|
|
<param name="parentTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the parent table of the relation.</param>
|
|
<param name="childTableName">The name of the <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</param>
|
|
<param name="parentColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the parent <see cref="T:System.Data.DataTable" /> of the relation.</param>
|
|
<param name="childColumnNames">An array of <see cref="T:System.Data.DataColumn" /> object names in the child <see cref="T:System.Data.DataTable" /> of the relation.</param>
|
|
<param name="nested">A value that indicates whether relationships are nested.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.CheckStateForProperty">
|
|
<summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<exception cref="T:System.Data.DataException">The parent and child tables belong to different <see cref="T:System.Data.DataSet" /> objects.
|
|
-Or-
|
|
One or more pairs of parent and child <see cref="T:System.Data.DataColumn" /> objects have mismatched data types.
|
|
-Or-
|
|
The parent and child <see cref="T:System.Data.DataColumn" /> objects are identical.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ChildColumns">
|
|
<summary>Gets the child <see cref="T:System.Data.DataColumn" /> objects of this relation.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ChildKeyConstraint">
|
|
<summary>Gets the <see cref="T:System.Data.ForeignKeyConstraint" /> for the relation.</summary>
|
|
<returns>A <see langword="ForeignKeyConstraint" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ChildTable">
|
|
<summary>Gets the child table of this relation.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that is the child table of the relation.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.DataSet">
|
|
<summary>Gets the <see cref="T:System.Data.DataSet" /> to which the <see cref="T:System.Data.DataRelation" /> belongs.</summary>
|
|
<returns>A <see cref="T:System.Data.DataSet" /> to which the <see cref="T:System.Data.DataRelation" /> belongs.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ExtendedProperties">
|
|
<summary>Gets the collection that stores customized properties.</summary>
|
|
<returns>A <see cref="T:System.Data.PropertyCollection" /> that contains customized properties.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.Nested">
|
|
<summary>Gets or sets a value that indicates whether <see cref="T:System.Data.DataRelation" /> objects are nested.</summary>
|
|
<returns>
|
|
<see langword="true" />, if <see cref="T:System.Data.DataRelation" /> objects are nested; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="pcevent">Parameter reference.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ParentColumns">
|
|
<summary>Gets an array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of this <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of this <see cref="T:System.Data.DataRelation" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ParentKeyConstraint">
|
|
<summary>Gets the <see cref="T:System.Data.UniqueConstraint" /> that guarantees that values in the parent column of a <see cref="T:System.Data.DataRelation" /> are unique.</summary>
|
|
<returns>A <see cref="T:System.Data.UniqueConstraint" /> that makes sure that values in a parent column are unique.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.ParentTable">
|
|
<summary>Gets the parent <see cref="T:System.Data.DataTable" /> of this <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that is the parent table of this relation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.RaisePropertyChanging(System.String)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="name">Parameter reference.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataRelation.RelationName">
|
|
<summary>Gets or sets the name used to retrieve a <see cref="T:System.Data.DataRelation" /> from the <see cref="T:System.Data.DataRelationCollection" />.</summary>
|
|
<returns>The name of the a <see cref="T:System.Data.DataRelation" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<see langword="null" /> or empty string ("") was passed into a <see cref="T:System.Data.DataColumn" /> that is a <see cref="T:System.Data.DataRelation" />.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The <see cref="T:System.Data.DataRelation" /> belongs to a collection that already contains a <see cref="T:System.Data.DataRelation" /> with the same name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelation.ToString">
|
|
<summary>Gets the <see cref="P:System.Data.DataRelation.RelationName" />, if one exists.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.DataRelation.RelationName" /> property.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataRelationCollection">
|
|
<summary>Represents the collection of <see cref="T:System.Data.DataRelation" /> objects for this <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRelationCollection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with a specified parent and child column, and adds it to the collection.</summary>
|
|
<param name="parentColumn">The parent column of the relation.</param>
|
|
<param name="childColumn">The child column of the relation.</param>
|
|
<returns>The created relation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified parent and child columns, and adds it to the collection.</summary>
|
|
<param name="parentColumns">The parent columns of the relation.</param>
|
|
<param name="childColumns">The child columns of the relation.</param>
|
|
<returns>The created relation.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> argument is a null value.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.Data.DataRelation)">
|
|
<summary>Adds a <see cref="T:System.Data.DataRelation" /> to the <see cref="T:System.Data.DataRelationCollection" />.</summary>
|
|
<param name="relation">The <see langword="DataRelation" /> to add to the collection.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> parameter is a null value.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the specified name. (The comparison is not case sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, and parent and child columns, and adds it to the collection.</summary>
|
|
<param name="name">The name of the relation.</param>
|
|
<param name="parentColumn">The parent column of the relation.</param>
|
|
<param name="childColumn">The child column of the relation.</param>
|
|
<returns>The created relation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn,System.Data.DataColumn,System.Boolean)">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, parent and child columns, with optional constraints according to the value of the <paramref name="createConstraints" /> parameter, and adds it to the collection.</summary>
|
|
<param name="name">The name of the relation.</param>
|
|
<param name="parentColumn">The parent column of the relation.</param>
|
|
<param name="childColumn">The child column of the relation.</param>
|
|
<param name="createConstraints">
|
|
<see langword="true" /> to create constraints; otherwise <see langword="false" />. (The default is <see langword="true" />).</param>
|
|
<returns>The created relation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name and arrays of parent and child columns, and adds it to the collection.</summary>
|
|
<param name="name">The name of the <see langword="DataRelation" /> to create.</param>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<param name="childColumns">An array of child <see langword="DataColumn" /> objects.</param>
|
|
<returns>The created <see langword="DataRelation" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Add(System.String,System.Data.DataColumn[],System.Data.DataColumn[],System.Boolean)">
|
|
<summary>Creates a <see cref="T:System.Data.DataRelation" /> with the specified name, arrays of parent and child columns, and value specifying whether to create a constraint, and adds it to the collection.</summary>
|
|
<param name="name">The name of the <see langword="DataRelation" /> to create.</param>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> objects.</param>
|
|
<param name="childColumns">An array of child <see langword="DataColumn" /> objects.</param>
|
|
<param name="createConstraints">
|
|
<see langword="true" /> to create a constraint; otherwise <see langword="false" />.</param>
|
|
<returns>The created relation.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The relation name is a null value.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation has entered an invalid state since it was created.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.AddCore(System.Data.DataRelation)">
|
|
<summary>Performs verification on the table.</summary>
|
|
<param name="relation">The relation to check.</param>
|
|
<exception cref="T:System.ArgumentNullException">The relation is null.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation already belongs to this collection, or it belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The collection already has a relation with the same name. (The comparison is not case sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.AddRange(System.Data.DataRelation[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.DataRelation" /> array to the end of the collection.</summary>
|
|
<param name="relations">The array of <see cref="T:System.Data.DataRelation" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.CanRemove(System.Data.DataRelation)">
|
|
<summary>Verifies whether the specified <see cref="T:System.Data.DataRelation" /> can be removed from the collection.</summary>
|
|
<param name="relation">The relation to perform the check against.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataRelation" /> can be removed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Clear">
|
|
<summary>Clears the collection of any relations.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataRelationCollection.CollectionChanged">
|
|
<summary>Occurs when the collection has changed.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Contains(System.String)">
|
|
<summary>Verifies whether a <see cref="T:System.Data.DataRelation" /> with the specific name (case insensitive) exists in the collection.</summary>
|
|
<param name="name">The name of the relation to find.</param>
|
|
<returns>
|
|
<see langword="true" />, if a relation with the specified name exists; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.CopyTo(System.Data.DataRelation[],System.Int32)">
|
|
<summary>Copies the collection of <see cref="T:System.Data.DataRelation" /> objects starting at the specified index.</summary>
|
|
<param name="array">The array of <see cref="T:System.Data.DataRelation" /> objects to copy the collection to.</param>
|
|
<param name="index">The index to start from.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.GetDataSet">
|
|
<summary>This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>The referenced DataSet.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.IndexOf(System.Data.DataRelation)">
|
|
<summary>Gets the index of the specified <see cref="T:System.Data.DataRelation" /> object.</summary>
|
|
<param name="relation">The relation to search for.</param>
|
|
<returns>The 0-based index of the relation, or -1 if the relation is not found in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.IndexOf(System.String)">
|
|
<summary>Gets the index of the <see cref="T:System.Data.DataRelation" /> specified by name.</summary>
|
|
<param name="relationName">The name of the relation to find.</param>
|
|
<returns>The zero-based index of the relation with the specified name, or -1 if the relation does not exist in the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRelationCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.DataRelation" /> object at the specified index.</summary>
|
|
<param name="index">The zero-based index to find.</param>
|
|
<returns>The <see cref="T:System.Data.DataRelation" />, or a null value if the specified <see cref="T:System.Data.DataRelation" /> does not exist.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRelationCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.DataRelation" /> object specified by name.</summary>
|
|
<param name="name">The name of the relation to find.</param>
|
|
<returns>The named <see cref="T:System.Data.DataRelation" />, or a null value if the specified <see cref="T:System.Data.DataRelation" /> does not exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event.</summary>
|
|
<param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event.</summary>
|
|
<param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Remove(System.Data.DataRelation)">
|
|
<summary>Removes the specified relation from the collection.</summary>
|
|
<param name="relation">The relation to remove.</param>
|
|
<exception cref="T:System.ArgumentNullException">The relation is a null value.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation does not belong to the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.Remove(System.String)">
|
|
<summary>Removes the relation with the specified name from the collection.</summary>
|
|
<param name="name">The name of the relation to remove.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">The collection does not have a relation with the specified name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the relation at the specified index from the collection.</summary>
|
|
<param name="index">The index of the relation to remove.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a relation at the specified index.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRelationCollection.RemoveCore(System.Data.DataRelation)">
|
|
<summary>Performs a verification on the specified <see cref="T:System.Data.DataRelation" /> object.</summary>
|
|
<param name="relation">The <see langword="DataRelation" /> object to verify.</param>
|
|
<exception cref="T:System.ArgumentNullException">The collection does not have a relation at the specified index.</exception>
|
|
<exception cref="T:System.ArgumentException">The specified relation does not belong to this collection, or it belongs to another collection.</exception>
|
|
</member>
|
|
<member name="T:System.Data.DataRow">
|
|
<summary>Represents a row of data in a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.#ctor(System.Data.DataRowBuilder)">
|
|
<summary>Initializes a new instance of the DataRow. Constructs a row from the builder. Only for internal usage.</summary>
|
|
<param name="builder">builder</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.AcceptChanges">
|
|
<summary>Commits all the changes made to this row since the last time <see cref="M:System.Data.DataRow.AcceptChanges" /> was called.</summary>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.BeginEdit">
|
|
<summary>Starts an edit operation on a <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
<exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">The method was called upon a deleted row.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.CancelEdit">
|
|
<summary>Cancels the current edit on the row.</summary>
|
|
<exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.ClearErrors">
|
|
<summary>Clears the errors for the row. This includes the <see cref="P:System.Data.DataRow.RowError" /> and errors set with <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.Delete">
|
|
<summary>Deletes the <see cref="T:System.Data.DataRow" />.</summary>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">The <see cref="T:System.Data.DataRow" /> has already been deleted.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.EndEdit">
|
|
<summary>Ends the edit occurring on the row.</summary>
|
|
<exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
<exception cref="T:System.Data.ConstraintException">The edit broke a constraint.</exception>
|
|
<exception cref="T:System.Data.ReadOnlyException">The row belongs to the table and the edit tried to change the value of a read-only column.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">The edit tried to put a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation)">
|
|
<summary>Gets the child rows of this <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The relation is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetChildRows(System.Data.DataRelation,System.Data.DataRowVersion)">
|
|
<summary>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetChildRows(System.String)">
|
|
<summary>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetChildRows(System.String,System.Data.DataRowVersion)">
|
|
<summary>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of the <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetColumnError(System.Data.DataColumn)">
|
|
<summary>Gets the error description of the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
|
|
<returns>The text of the error description.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetColumnError(System.Int32)">
|
|
<summary>Gets the error description for the column specified by index.</summary>
|
|
<param name="columnIndex">The zero-based index of the column.</param>
|
|
<returns>The text of the error description.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetColumnError(System.String)">
|
|
<summary>Gets the error description for a column, specified by name.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<returns>The text of the error description.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetColumnsInError">
|
|
<summary>Gets an array of columns that have errors.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects that contain errors.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation)">
|
|
<summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> does not belong to the <see cref="T:System.Data.DataTable" />.
|
|
-or-
|
|
The row is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">This row does not belong to the child table of the <see cref="T:System.Data.DataRelation" /> object.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRow(System.Data.DataRelation,System.Data.DataRowVersion)">
|
|
<summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
|
|
<returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.
|
|
-or-
|
|
The <paramref name="relation" /> does not belong to this table's parent relations.</exception>
|
|
<exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRow(System.String)">
|
|
<summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
|
|
<returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRow(System.String,System.Data.DataRowVersion)">
|
|
<summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation)">
|
|
<summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRows(System.Data.DataRelation,System.Data.DataRowVersion)">
|
|
<summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRows(System.String)">
|
|
<summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.GetParentRows(System.String,System.Data.DataRowVersion)">
|
|
<summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
<param name="relationName">The <see cref="P:System.Data.DataRelation.RelationName" /> of a <see cref="T:System.Data.DataRelation" />.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
<exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.HasErrors">
|
|
<summary>Gets a value that indicates whether there are errors in a row.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the row contains an error; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.HasVersion(System.Data.DataRowVersion)">
|
|
<summary>Gets a value that indicates whether a specified version exists.</summary>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version.</param>
|
|
<returns>
|
|
<see langword="true" /> if the version exists; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn)">
|
|
<summary>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn" /> contains a null value.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.IsNull(System.Data.DataColumn,System.Data.DataRowVersion)">
|
|
<summary>Gets a value that indicates whether the specified <see cref="T:System.Data.DataColumn" /> and <see cref="T:System.Data.DataRowVersion" /> contains a null value.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.IsNull(System.Int32)">
|
|
<summary>Gets a value that indicates whether the column at the specified index contains a null value.</summary>
|
|
<param name="columnIndex">The zero-based index of the column.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.IsNull(System.String)">
|
|
<summary>Gets a value that indicates whether the named column contains a null value.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<returns>
|
|
<see langword="true" /> if the column contains a null value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.Data.DataColumn)">
|
|
<summary>Gets or sets the data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" /> that contains the data.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.ArgumentException">The column does not belong to this table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="column" /> is null.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
|
|
<exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.Data.DataColumn,System.Data.DataRowVersion)">
|
|
<summary>Gets the specified version of data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" /> that contains information about the column.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.ArgumentException">The column does not belong to the table.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="column" /> argument contains null.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.Int32)">
|
|
<summary>Gets or sets the data stored in the column specified by index.</summary>
|
|
<param name="columnIndex">The zero-based index of the column.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
|
|
<exception cref="T:System.InvalidCastException">Occurs when you set the value and the new value's <see cref="T:System.Type" /> does not match <see cref="P:System.Data.DataColumn.DataType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.Int32,System.Data.DataRowVersion)">
|
|
<summary>Gets the data stored in the column, specified by index and version of the data to retrieve.</summary>
|
|
<param name="columnIndex">The zero-based index of the column.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range.</exception>
|
|
<exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.String)">
|
|
<summary>Gets or sets the data stored in the column specified by name.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">Occurs when you try to set a value on a deleted row.</exception>
|
|
<exception cref="T:System.InvalidCastException">Occurs when you set a value and its <see cref="T:System.Type" /> does not match <see cref="P:System.Data.DataColumn.DataType" />.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">Occurs when you try to insert a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is set to <see langword="false" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Item(System.String,System.Data.DataRowVersion)">
|
|
<summary>Gets the specified version of data stored in the named column.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
<returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
<exception cref="T:System.ArgumentException">The column specified by <paramref name="columnName" /> cannot be found.</exception>
|
|
<exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
|
|
<exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">The row was deleted.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.ItemArray">
|
|
<summary>Gets or sets all the values for this row through an array.</summary>
|
|
<returns>An array of type <see cref="T:System.Object" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
|
|
<exception cref="T:System.InvalidCastException">A value in the array does not match its <see cref="P:System.Data.DataColumn.DataType" /> in its respective <see cref="T:System.Data.DataColumn" />.</exception>
|
|
<exception cref="T:System.Data.ConstraintException">An edit broke a constraint.</exception>
|
|
<exception cref="T:System.Data.ReadOnlyException">An edit tried to change the value of a read-only column.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">An edit tried to put a null value in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> of the <see cref="T:System.Data.DataColumn" /> object is <see langword="false" />.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">The row has been deleted.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.RejectChanges">
|
|
<summary>Rejects all changes made to the row since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
|
|
<exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.RowError">
|
|
<summary>Gets or sets the custom error description for a row.</summary>
|
|
<returns>The text describing an error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.RowState">
|
|
<summary>Gets the current state of the row with regard to its relationship to the <see cref="T:System.Data.DataRowCollection" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowState" /> values.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetAdded">
|
|
<summary>Changes the <see cref="P:System.Data.DataRow.RowState" /> of a <see cref="T:System.Data.DataRow" /> to <see langword="Added" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetColumnError(System.Data.DataColumn,System.String)">
|
|
<summary>Sets the error description for a column specified as a <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to set the error description for.</param>
|
|
<param name="error">The error description.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)">
|
|
<summary>Sets the error description for a column specified by index.</summary>
|
|
<param name="columnIndex">The zero-based index of the column.</param>
|
|
<param name="error">The error description.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetColumnError(System.String,System.String)">
|
|
<summary>Sets the error description for a column specified by name.</summary>
|
|
<param name="columnName">The name of the column.</param>
|
|
<param name="error">The error description.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetModified">
|
|
<summary>Changes the <see cref="P:System.Data.DataRow.RowState" /> of a <see cref="T:System.Data.DataRow" /> to <see langword="Modified" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetNull(System.Data.DataColumn)">
|
|
<summary>Sets the value of the specified <see cref="T:System.Data.DataColumn" /> to a null value.</summary>
|
|
<param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow)">
|
|
<summary>Sets the parent row of a <see cref="T:System.Data.DataRow" /> with specified new parent <see cref="T:System.Data.DataRow" />.</summary>
|
|
<param name="parentRow">The new parent <see cref="T:System.Data.DataRow" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRow.SetParentRow(System.Data.DataRow,System.Data.DataRelation)">
|
|
<summary>Sets the parent row of a <see cref="T:System.Data.DataRow" /> with specified new parent <see cref="T:System.Data.DataRow" /> and <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="parentRow">The new parent <see cref="T:System.Data.DataRow" />.</param>
|
|
<param name="relation">The relation <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
<exception cref="T:System.Data.RowNotInTableException">One of the rows does not belong to a table</exception>
|
|
<exception cref="T:System.ArgumentNullException">One of the rows is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The relation does not belong to the <see cref="T:System.Data.DataRelationCollection" /> of the <see cref="T:System.Data.DataSet" /> object.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The relation's child <see cref="T:System.Data.DataTable" /> is not the table this row belongs to.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRow.Table">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> for which this row has a schema.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> to which this row belongs.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataRowAction">
|
|
<summary>Describes an action performed on a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Add">
|
|
<summary>The row has been added to the table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Change">
|
|
<summary>The row has changed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.ChangeCurrentAndOriginal">
|
|
<summary>The original and the current versions of the row have been changed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.ChangeOriginal">
|
|
<summary>The original version of the row has been changed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Commit">
|
|
<summary>The changes to the row have been committed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Delete">
|
|
<summary>The row was deleted from the table.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Nothing">
|
|
<summary>The row has not changed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowAction.Rollback">
|
|
<summary>The most recent change to the row has been rolled back.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataRowBuilder">
|
|
<summary>The <see langword="DataRowBuilder" /> type supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataRowChangeEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)" />, and <see cref="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)" /> events.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowChangeEventArgs.#ctor(System.Data.DataRow,System.Data.DataRowAction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataRowChangeEventArgs" /> class.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> upon which an action is occuring.</param>
|
|
<param name="action">One of the <see cref="T:System.Data.DataRowAction" /> values.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataRowChangeEventArgs.Action">
|
|
<summary>Gets the action that has occurred on a <see cref="T:System.Data.DataRow" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowAction" /> values.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowChangeEventArgs.Row">
|
|
<summary>Gets the row upon which an action has occurred.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> upon which an action has occurred.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataRowChangeEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowDeleting" />, and <see cref="E:System.Data.DataTable.RowDeleted" /> events of a <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataRowCollection">
|
|
<summary>Represents a collection of rows for a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Add(System.Data.DataRow)">
|
|
<summary>Adds the specified <see cref="T:System.Data.DataRow" /> to the <see cref="T:System.Data.DataRowCollection" /> object.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to add.</param>
|
|
<exception cref="T:System.ArgumentNullException">The row is null.</exception>
|
|
<exception cref="T:System.ArgumentException">The row either belongs to another table or already belongs to this table.</exception>
|
|
<exception cref="T:System.Data.ConstraintException">The addition invalidates a constraint.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">The addition tries to put a null in a <see cref="T:System.Data.DataColumn" /> where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Add(System.Object[])">
|
|
<summary>Creates a row using specified values and adds it to the <see cref="T:System.Data.DataRowCollection" />.</summary>
|
|
<param name="values">The array of values that are used to create the new row.</param>
|
|
<returns>None.</returns>
|
|
<exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
|
|
<exception cref="T:System.InvalidCastException">A value does not match its respective column type.</exception>
|
|
<exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">Trying to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Clear">
|
|
<summary>Clears the collection of all rows.</summary>
|
|
<exception cref="T:System.Data.InvalidConstraintException">A <see cref="T:System.Data.ForeignKeyConstraint" /> is enforced on the <see cref="T:System.Data.DataRowCollection" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Contains(System.Object)">
|
|
<summary>Gets a value that indicates whether the primary key of any row in the collection contains the specified value.</summary>
|
|
<param name="key">The value of the primary key to test for.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains a <see cref="T:System.Data.DataRow" /> with the specified primary key value; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Contains(System.Object[])">
|
|
<summary>Gets a value that indicates whether the primary key columns of any row in the collection contain the values specified in the object array.</summary>
|
|
<param name="keys">An array of primary key values to test for.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataRowCollection" /> contains a <see cref="T:System.Data.DataRow" /> with the specified key values; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies all the <see cref="T:System.Data.DataRow" /> objects from the collection into the given array, starting at the given destination array index.</summary>
|
|
<param name="ar">The one-dimensional array that is the destination of the elements copied from the <see langword="DataRowCollection" />. The array must have zero-based indexing.</param>
|
|
<param name="index">The zero-based index in the array at which copying begins.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.CopyTo(System.Data.DataRow[],System.Int32)">
|
|
<summary>Copies all the <see cref="T:System.Data.DataRow" /> objects from the collection into the given array, starting at the given destination array index.</summary>
|
|
<param name="array">The one-dimensional array that is the destination of the elements copied from the <see langword="DataRowCollection" />. The array must have zero-based indexing.</param>
|
|
<param name="index">The zero-based index in the array at which copying begins.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataRowCollection.Count">
|
|
<summary>Gets the total number of <see cref="T:System.Data.DataRow" /> objects in this collection.</summary>
|
|
<returns>The total number of <see cref="T:System.Data.DataRow" /> objects in this collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Find(System.Object)">
|
|
<summary>Gets the row specified by the primary key value.</summary>
|
|
<param name="key">The primary key value of the <see cref="T:System.Data.DataRow" /> to find.</param>
|
|
<returns>A <see cref="T:System.Data.DataRow" /> that contains the primary key value specified; otherwise a null value if the primary key value does not exist in the <see cref="T:System.Data.DataRowCollection" />.</returns>
|
|
<exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Find(System.Object[])">
|
|
<summary>Gets the row that contains the specified primary key values.</summary>
|
|
<param name="keys">An array of primary key values to find. The type of the array is <see langword="Object" />.</param>
|
|
<returns>A <see cref="T:System.Data.DataRow" /> object that contains the primary key values specified; otherwise a null value if the primary key value does not exist in the <see cref="T:System.Data.DataRowCollection" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">No row corresponds to that index value.</exception>
|
|
<exception cref="T:System.Data.MissingPrimaryKeyException">The table does not have a primary key.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.GetEnumerator">
|
|
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for this collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for this collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.IndexOf(System.Data.DataRow)">
|
|
<summary>Gets the index of the specified <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
<param name="row">The <see langword="DataRow" /> to search for.</param>
|
|
<returns>The zero-based index of the row, or -1 if the row is not found in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.InsertAt(System.Data.DataRow,System.Int32)">
|
|
<summary>Inserts a new row into the collection at the specified location.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to add.</param>
|
|
<param name="pos">The (zero-based) location in the collection where you want to add the <see langword="DataRow" />.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">The <paramref name="pos" /> is less than 0.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataRowCollection.Item(System.Int32)">
|
|
<summary>Gets the row at the specified index.</summary>
|
|
<param name="index">The zero-based index of the row to return.</param>
|
|
<returns>The specified <see cref="T:System.Data.DataRow" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.Remove(System.Data.DataRow)">
|
|
<summary>Removes the specified <see cref="T:System.Data.DataRow" /> from the collection.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataRowCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the row at the specified index from the collection.</summary>
|
|
<param name="index">The index of the row to remove.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataRowState">
|
|
<summary>Gets the state of a <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowState.Added">
|
|
<summary>The row has been added to a <see cref="T:System.Data.DataRowCollection" />, and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowState.Deleted">
|
|
<summary>The row was deleted using the <see cref="M:System.Data.DataRow.Delete" /> method of the <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowState.Detached">
|
|
<summary>The row has been created but is not part of any <see cref="T:System.Data.DataRowCollection" />. A <see cref="T:System.Data.DataRow" /> is in this state immediately after it has been created and before it is added to a collection, or if it has been removed from a collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowState.Modified">
|
|
<summary>The row has been modified and <see cref="M:System.Data.DataRow.AcceptChanges" /> has not been called.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowState.Unchanged">
|
|
<summary>The row has not changed since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataRowVersion">
|
|
<summary>Describes the version of a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowVersion.Current">
|
|
<summary>The row contains current values.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowVersion.Default">
|
|
<summary>The default version of <see cref="T:System.Data.DataRowState" />. For a <see langword="DataRowState" /> value of <see langword="Added" />, <see langword="Modified" /> or <see langword="Deleted" />, the default version is <see langword="Current" />. For a <see cref="T:System.Data.DataRowState" /> value of <see langword="Detached" />, the version is <see langword="Proposed" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowVersion.Original">
|
|
<summary>The row contains its original values.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataRowVersion.Proposed">
|
|
<summary>The row contains a proposed value.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataRowView">
|
|
<summary>Represents a customized view of a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.BeginEdit">
|
|
<summary>Begins an edit procedure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.CancelEdit">
|
|
<summary>Cancels an edit procedure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation)">
|
|
<summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified child <see cref="T:System.Data.DataRelation" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> object.</param>
|
|
<returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.CreateChildView(System.Data.DataRelation,System.Boolean)">
|
|
<summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified <see cref="T:System.Data.DataRelation" /> and parent.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> object.</param>
|
|
<param name="followParent">The parent object.</param>
|
|
<returns>A <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.CreateChildView(System.String)">
|
|
<summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified child <see cref="T:System.Data.DataRelation" /> name.</summary>
|
|
<param name="relationName">A string containing the <see cref="T:System.Data.DataRelation" /> name.</param>
|
|
<returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.CreateChildView(System.String,System.Boolean)">
|
|
<summary>Returns a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" /> with the specified <see cref="T:System.Data.DataRelation" /> name and parent.</summary>
|
|
<param name="relationName">A string containing the <see cref="T:System.Data.DataRelation" /> name.</param>
|
|
<param name="followParent">The parent</param>
|
|
<returns>a <see cref="T:System.Data.DataView" /> for the child <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.DataView">
|
|
<summary>Gets the <see cref="T:System.Data.DataView" /> to which this row belongs.</summary>
|
|
<returns>The <see langword="DataView" /> to which this row belongs.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.Delete">
|
|
<summary>Deletes a row.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.EndEdit">
|
|
<summary>Commits changes to the underlying <see cref="T:System.Data.DataRow" /> and ends the editing session that was begun with <see cref="M:System.Data.DataRowView.BeginEdit" />. Use <see cref="M:System.Data.DataRowView.CancelEdit" /> to discard the changes made to the <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.Equals(System.Object)">
|
|
<summary>Gets a value indicating whether the current <see cref="T:System.Data.DataRowView" /> is identical to the specified object.</summary>
|
|
<param name="other">An <see cref="T:System.Object" /> to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if <paramref name="object" /> is a <see cref="T:System.Data.DataRowView" /> and it returns the same row as the current <see cref="T:System.Data.DataRowView" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.GetHashCode">
|
|
<summary>Returns the hash code of the <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
<returns>A 32-bit signed integer hash code 1, which represents Boolean <see langword="true" /> if the value of this instance is nonzero; otherwise the integer zero, which represents Boolean <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.IsEdit">
|
|
<summary>Indicates whether the row is in edit mode.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the row is in edit mode; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.IsNew">
|
|
<summary>Indicates whether a <see cref="T:System.Data.DataRowView" /> is new.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the row is new; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.Item(System.Int32)">
|
|
<summary>Gets or sets a value in a specified column.</summary>
|
|
<param name="ndx">The specified column.</param>
|
|
<returns>The value of the column.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.Item(System.String)">
|
|
<summary>Gets or sets a value in a specified column.</summary>
|
|
<param name="property">String that contains the specified column.</param>
|
|
<returns>The value of the column.</returns>
|
|
</member>
|
|
<member name="E:System.Data.DataRowView.PropertyChanged">
|
|
<summary>Event that is raised when a <see cref="T:System.Data.DataRowView" /> property is changed.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.Row">
|
|
<summary>Gets the <see cref="T:System.Data.DataRow" /> being viewed.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> being viewed by the <see cref="T:System.Data.DataRowView" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.RowVersion">
|
|
<summary>Gets the current version description of the <see cref="T:System.Data.DataRow" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. Possible values for the <see cref="P:System.Data.DataRowView.RowVersion" /> property are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
|
|
<summary>Returns a collection of custom attributes for this instance of a component.</summary>
|
|
<returns>An AttributeCollection containing the attributes for this object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
|
|
<summary>Returns the class name of this instance of a component.</summary>
|
|
<returns>The class name of this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
|
|
<summary>Returns the name of this instance of a component.</summary>
|
|
<returns>The name of this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
|
|
<summary>Returns a type converter for this instance of a component.</summary>
|
|
<returns>The type converter for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
|
|
<summary>Returns the default event for this instance of a component.</summary>
|
|
<returns>The default event for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
|
|
<summary>Returns the default property for this instance of a component.</summary>
|
|
<returns>The default property for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
|
|
<summary>Returns an editor of the specified type for this instance of a component.</summary>
|
|
<param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for this object.</param>
|
|
<returns>An <see cref="T:System.Object" /> of the specified type that is the editor for this object, or <see langword="null" /> if the editor cannot be found.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
|
|
<summary>Returns the events for this instance of a component.</summary>
|
|
<returns>The events for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
|
|
<summary>Returns the events for this instance of a component with specified attributes.</summary>
|
|
<param name="attributes">The attributes</param>
|
|
<returns>The events for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
|
|
<summary>Returns the properties for this instance of a component.</summary>
|
|
<returns>The properties for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
|
|
<summary>Returns the properties for this instance of a component with specified attributes.</summary>
|
|
<param name="attributes">The attributes.</param>
|
|
<returns>The properties for this instance of a component.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataRowView.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>Returns an object that contains the property described by the specified property descriptor.</summary>
|
|
<param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property whose owner is to be found.</param>
|
|
<returns>An <see cref="T:System.Object" /> that represents the owner of the specified property.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Error">
|
|
<summary>Gets a message that describes any validation errors for the object.</summary>
|
|
<returns>The validation error on the object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataRowView.System#ComponentModel#IDataErrorInfo#Item(System.String)">
|
|
<summary>Gets the error message for the property with the given name.</summary>
|
|
<param name="colName">The name of the property whose error message to get.</param>
|
|
<returns>The error message for the property. The default is an empty string ("").</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataSet">
|
|
<summary>Represents an in-memory cache of data.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class that has the given serialization information and context.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a given serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
|
|
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
|
|
<param name="ConstructSchema">The boolean value.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.#ctor(System.String)">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class with the given name.</summary>
|
|
<param name="dataSetName">The name of the <see cref="T:System.Data.DataSet" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.AcceptChanges">
|
|
<summary>Commits all the changes made to this <see cref="T:System.Data.DataSet" /> since it was loaded or since the last time <see cref="M:System.Data.DataSet.AcceptChanges" /> was called.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.BeginInit">
|
|
<summary>Begins the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.CaseSensitive">
|
|
<summary>Gets or sets a value indicating whether string comparisons within <see cref="T:System.Data.DataTable" /> objects are case-sensitive.</summary>
|
|
<returns>
|
|
<see langword="true" /> if string comparisons are case-sensitive; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Clear">
|
|
<summary>Clears the <see cref="T:System.Data.DataSet" /> of any data by removing all rows in all tables.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Clone">
|
|
<summary>Copies the structure of the <see cref="T:System.Data.DataSet" />, including all <see cref="T:System.Data.DataTable" /> schemas, relations, and constraints. Does not copy any data.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataSet" /> with the same schema as the current <see cref="T:System.Data.DataSet" />, but none of the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Copy">
|
|
<summary>Copies both the structure and data for this <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataSet" /> with the same structure (table schemas, relations, and constraints) and data as this <see cref="T:System.Data.DataSet" />.
|
|
|
|
If these classes have been subclassed, the copy will also be of the same subclasses.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.CreateDataReader">
|
|
<summary>Returns a <see cref="T:System.Data.DataTableReader" /> with one result set per <see cref="T:System.Data.DataTable" />, in the same sequence as the tables appear in the <see cref="P:System.Data.DataSet.Tables" /> collection.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTableReader" /> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable" /> instances contained within the source <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.CreateDataReader(System.Data.DataTable[])">
|
|
<summary>Returns a <see cref="T:System.Data.DataTableReader" /> with one result set per <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="dataTables">An array of DataTables providing the order of the result sets to be returned in the <see cref="T:System.Data.DataTableReader" />.</param>
|
|
<returns>A <see cref="T:System.Data.DataTableReader" /> containing one or more result sets, corresponding to the <see cref="T:System.Data.DataTable" /> instances contained within the source <see cref="T:System.Data.DataSet" />. The returned result sets are in the order specified by the <paramref name="dataTables" /> parameter.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.DataSetName">
|
|
<summary>Gets or sets the name of the current <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.DefaultViewManager">
|
|
<summary>Gets a custom view of the data contained in the <see cref="T:System.Data.DataSet" /> to allow filtering, searching, and navigating using a custom <see cref="T:System.Data.DataViewManager" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataViewManager" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that a <see langword="DataSet" />'s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> is invoked with during deserialization in remoting scenarios.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that a <see langword="DataSet" />'s protected constructor <see cref="M:System.Data.DataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> is invoked with during deserialization in remoting scenarios.</param>
|
|
<returns>An <see cref="T:System.Data.SchemaSerializationMode" /> enumeration indicating whether schema information has been omitted from the payload.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.DetermineSchemaSerializationMode(System.Xml.XmlReader)">
|
|
<summary>Determines the <see cref="P:System.Data.DataSet.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> instance that is passed during deserialization of the <see cref="T:System.Data.DataSet" />.</param>
|
|
<returns>An <see cref="T:System.Data.SchemaSerializationMode" /> enumeration indicating whether schema information has been omitted from the payload.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.EndInit">
|
|
<summary>Ends the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.EnforceConstraints">
|
|
<summary>Gets or sets a value indicating whether constraint rules are followed when attempting any update operation.</summary>
|
|
<returns>
|
|
<see langword="true" /> if rules are enforced; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
<exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enforced.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.ExtendedProperties">
|
|
<summary>Gets the collection of customized user information associated with the <see langword="DataSet" />.</summary>
|
|
<returns>A <see cref="T:System.Data.PropertyCollection" /> with all custom user information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetChanges">
|
|
<summary>Gets a copy of the <see cref="T:System.Data.DataSet" /> that contains all changes made to it since it was loaded or since <see cref="M:System.Data.DataSet.AcceptChanges" /> was last called.</summary>
|
|
<returns>A copy of the changes from this <see cref="T:System.Data.DataSet" /> that can have actions performed on it and later be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no changed rows are found, the method returns <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetChanges(System.Data.DataRowState)">
|
|
<summary>Gets a copy of the <see cref="T:System.Data.DataSet" /> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataSet.AcceptChanges" /> was called, filtered by <see cref="T:System.Data.DataRowState" />.</summary>
|
|
<param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
|
|
<returns>A filtered copy of the <see cref="T:System.Data.DataSet" /> that can have actions performed on it, and subsequently be merged back in using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no rows of the desired <see cref="T:System.Data.DataRowState" /> are found, the method returns <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetDataSetSchema(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Gets a copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" /> for the DataSet.</summary>
|
|
<param name="schemaSet">The specified schema set.</param>
|
|
<returns>A copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data associated with the <see cref="T:System.Data.DataSet" />.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataSet" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetSchemaSerializable">
|
|
<summary>Returns a serializable <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</summary>
|
|
<returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetSerializationData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Deserializes the table data from the binary or XML stream.</summary>
|
|
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance.</param>
|
|
<param name="context">The streaming context.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetXml">
|
|
<summary>Returns the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>A string that is a representation of the data stored in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.GetXmlSchema">
|
|
<summary>Returns the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>String that is the XML Schema for the XML representation of the data stored in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.HasChanges">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet" /> has changes, including new, deleted, or modified rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataSet" /> has changes; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.HasChanges(System.Data.DataRowState)">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Data.DataSet" /> has changes, including new, deleted, or modified rows, filtered by <see cref="T:System.Data.DataRowState" />.</summary>
|
|
<param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataSet" /> has changes; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.HasErrors">
|
|
<summary>Gets a value indicating whether there are errors in any of the <see cref="T:System.Data.DataTable" /> objects within this <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if any table contains an error; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.InferXmlSchema(System.IO.Stream,System.String[])">
|
|
<summary>Applies the XML schema from the specified <see cref="T:System.IO.Stream" /> to the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="stream">The <see langword="Stream" /> from which to read the schema.</param>
|
|
<param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.InferXmlSchema(System.IO.TextReader,System.String[])">
|
|
<summary>Applies the XML schema from the specified <see cref="T:System.IO.TextReader" /> to the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="reader">The <see langword="TextReader" /> from which to read the schema.</param>
|
|
<param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.InferXmlSchema(System.String,System.String[])">
|
|
<summary>Applies the XML schema from the specified file to the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="fileName">The name of the file (including the path) from which to read the schema.</param>
|
|
<param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.InferXmlSchema(System.Xml.XmlReader,System.String[])">
|
|
<summary>Applies the XML schema from the specified <see cref="T:System.Xml.XmlReader" /> to the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="reader">The <see langword="XMLReader" /> from which to read the schema.</param>
|
|
<param name="nsArray">An array of namespace Uniform Resource Identifier (URI) strings to be excluded from schema inference.</param>
|
|
</member>
|
|
<member name="E:System.Data.DataSet.Initialized">
|
|
<summary>Occurs after the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.InitializeDerivedDataSet">
|
|
<summary>Deserialize all of the tables data of the DataSet from the binary or XML stream.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.IsBinarySerialized(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Inspects the format of the serialized representation of the <see langword="DataSet" />.</summary>
|
|
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> represents a <see langword="DataSet" /> serialized in its binary format, <see langword="false" /> otherwise.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.IsInitialized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
|
|
<returns>
|
|
<see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])">
|
|
<summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of <see cref="T:System.Data.DataTable" /> instances to supply the schema and namespace information.</summary>
|
|
<param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
|
|
<param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see cref="T:System.Data.DataSet" /> will be combined with incoming rows that share the same primary key.</param>
|
|
<param name="tables">An array of <see cref="T:System.Data.DataTable" /> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.DataTable[])" /> method retrieves name and namespace information. Each of these tables must be a member of the <see cref="T:System.Data.DataTableCollection" /> contained by this <see cref="T:System.Data.DataSet" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])">
|
|
<summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of <see cref="T:System.Data.DataTable" /> instances to supply the schema and namespace information.</summary>
|
|
<param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
|
|
<param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see cref="T:System.Data.DataSet" /> will be combined with incoming rows that share the same primary key.</param>
|
|
<param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler" /> delegate to call when an error occurs while loading data.</param>
|
|
<param name="tables">An array of <see cref="T:System.Data.DataTable" /> instances, from which the <see cref="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler,System.Data.DataTable[])" /> method retrieves name and namespace information.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Load(System.Data.IDataReader,System.Data.LoadOption,System.String[])">
|
|
<summary>Fills a <see cref="T:System.Data.DataSet" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />, using an array of strings to supply the names for the tables within the <see langword="DataSet" />.</summary>
|
|
<param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
|
|
<param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> instances within the <see langword="DataSet" /> will be combined with incoming rows that share the same primary key.</param>
|
|
<param name="tables">An array of strings, from which the <see langword="Load" /> method retrieves table name information.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Locale">
|
|
<summary>Gets or sets the locale information used to compare strings within the table.</summary>
|
|
<returns>A <see cref="T:System.Globalization.CultureInfo" /> that contains data about the user's machine locale. The default is <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataRow[])">
|
|
<summary>Merges an array of <see cref="T:System.Data.DataRow" /> objects into the current <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="rows">The array of <see langword="DataRow" /> objects to be merged into the <see langword="DataSet" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataRow[],System.Boolean,System.Data.MissingSchemaAction)">
|
|
<summary>Merges an array of <see cref="T:System.Data.DataRow" /> objects into the current <see cref="T:System.Data.DataSet" />, preserving or discarding changes in the <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
|
|
<param name="rows">The array of <see cref="T:System.Data.DataRow" /> objects to be merged into the <see langword="DataSet" />.</param>
|
|
<param name="preserveChanges">
|
|
<see langword="true" /> to preserve changes in the <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
|
|
<param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataSet)">
|
|
<summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema into the current <see langword="DataSet" />.</summary>
|
|
<param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
|
|
<exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enabled.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean)">
|
|
<summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema into the current <see langword="DataSet" />, preserving or discarding any changes in this <see langword="DataSet" /> according to the given argument.</summary>
|
|
<param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
|
|
<param name="preserveChanges">
|
|
<see langword="true" /> to preserve changes in the current <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataSet,System.Boolean,System.Data.MissingSchemaAction)">
|
|
<summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema with the current <see langword="DataSet" />, preserving or discarding changes in the current <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
|
|
<param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
|
|
<param name="preserveChanges">
|
|
<see langword="true" /> to preserve changes in the current <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
|
|
<param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataTable)">
|
|
<summary>Merges a specified <see cref="T:System.Data.DataTable" /> and its schema into the current <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> whose data and schema will be merged.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="table" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
|
|
<summary>Merges a specified <see cref="T:System.Data.DataTable" /> and its schema into the current <see langword="DataSet" />, preserving or discarding changes in the <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
|
|
<param name="table">The <see langword="DataTable" /> whose data and schema will be merged.</param>
|
|
<param name="preserveChanges">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
<param name="missingSchemaAction">
|
|
<see langword="true" /> to preserve changes in the <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="E:System.Data.DataSet.MergeFailed">
|
|
<summary>Occurs when a target and source <see cref="T:System.Data.DataRow" /> have the same primary key value, and <see cref="P:System.Data.DataSet.EnforceConstraints" /> is set to true.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Namespace">
|
|
<summary>Gets or sets the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The namespace of the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The namespace already has data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
|
|
<summary>Raises the <see cref="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)" /> event.</summary>
|
|
<param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.OnRemoveRelation(System.Data.DataRelation)">
|
|
<summary>Occurs when a <see cref="T:System.Data.DataRelation" /> object is removed from a <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="relation">The <see cref="T:System.Data.DataRelation" /> being removed.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.OnRemoveTable(System.Data.DataTable)">
|
|
<summary>Occurs when a <see cref="T:System.Data.DataTable" /> is removed from a <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> being removed.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Prefix">
|
|
<summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The XML prefix for the <see cref="T:System.Data.DataSet" /> namespace.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.RaisePropertyChanging(System.String)">
|
|
<summary>Sends a notification that the specified <see cref="T:System.Data.DataSet" /> property is about to change.</summary>
|
|
<param name="name">The name of the property that is about to change.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.IO.Stream)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
|
|
<param name="stream">An object that derives from <see cref="T:System.IO.Stream" />.</param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.IO.Stream,System.Data.XmlReadMode)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
|
|
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
|
|
<param name="reader">The <see langword="TextReader" /> from which to read the schema and data.</param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.IO.TextReader,System.Data.XmlReadMode)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextReader" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
|
|
<param name="reader">The <see cref="T:System.IO.TextReader" /> from which to read.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.String)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified file.</summary>
|
|
<param name="fileName">The filename (including the path) from which to read.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.String,System.Data.XmlReadMode)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified file and <see cref="T:System.Data.XmlReadMode" />.</summary>
|
|
<param name="fileName">The filename (including the path) from which to read.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader,System.Data.XmlReadMode)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
|
|
<returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.Stream)">
|
|
<summary>Reads the XML schema from the specified <see cref="T:System.IO.Stream" /> into the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="stream">The <see cref="T:System.IO.Stream" /> from which to read.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXmlSchema(System.IO.TextReader)">
|
|
<summary>Reads the XML schema from the specified <see cref="T:System.IO.TextReader" /> into the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="reader">The <see cref="T:System.IO.TextReader" /> from which to read.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXmlSchema(System.String)">
|
|
<summary>Reads the XML schema from the specified file into the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="fileName">The file name (including the path) from which to read.</param>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Read" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXmlSchema(System.Xml.XmlReader)">
|
|
<summary>Reads the XML schema from the specified <see cref="T:System.Xml.XmlReader" /> into the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ReadXmlSerializable(System.Xml.XmlReader)">
|
|
<summary>Ignores attributes and returns an empty DataSet.</summary>
|
|
<param name="reader">The specified XML reader.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.RejectChanges">
|
|
<summary>Rolls back all the changes made to the <see cref="T:System.Data.DataSet" /> since it was created, or since the last time <see cref="M:System.Data.DataSet.AcceptChanges" /> was called.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Relations">
|
|
<summary>Gets the collection of relations that link tables and allow navigation from parent tables to child tables.</summary>
|
|
<returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains a collection of <see cref="T:System.Data.DataRelation" /> objects. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.RemotingFormat">
|
|
<summary>Gets or sets a <see cref="T:System.Data.SerializationFormat" /> for the <see cref="T:System.Data.DataSet" /> used during remoting.</summary>
|
|
<returns>A <see cref="T:System.Data.SerializationFormat" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.Reset">
|
|
<summary>Clears all tables and removes all relations, foreign constraints, and tables from the <see cref="T:System.Data.DataSet" />. Subclasses should override <see cref="M:System.Data.DataSet.Reset" /> to restore a <see cref="T:System.Data.DataSet" /> to its original state.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.SchemaSerializationMode">
|
|
<summary>Gets or sets a <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ShouldSerializeRelations">
|
|
<summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Relations" /> property should be persisted.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the property value has been changed from its default; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.ShouldSerializeTables">
|
|
<summary>Gets a value indicating whether <see cref="P:System.Data.DataSet.Tables" /> property should be persisted.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the property value has been changed from its default; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Site">
|
|
<summary>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.System#ComponentModel#IListSource#ContainsListCollection">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.System#ComponentModel#IListSource#GetList">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</summary>
|
|
<returns>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
<returns>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
|
|
<param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
|
|
<param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataSet.Tables">
|
|
<summary>Gets the collection of tables contained in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTableCollection" /> contained by this <see cref="T:System.Data.DataSet" />. An empty collection is returned if no <see cref="T:System.Data.DataTable" /> objects exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.IO.Stream)">
|
|
<summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
|
|
<param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.Stream" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter)">
|
|
<summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object with which to write.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="writer">A <see cref="T:System.IO.TextWriter" /> object used to write the document.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.String)">
|
|
<summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> to the specified file.</summary>
|
|
<param name="fileName">The file name (including the path) to which to write.</param>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.String,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="fileName">The file name (including the path) to which to write.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter)">
|
|
<summary>Writes the current data for the <see cref="T:System.Data.DataSet" /> to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream)">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.Stream" /> object.</summary>
|
|
<param name="stream">A <see cref="T:System.IO.Stream" /> object used to write to a file.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.Stream,System.Converter{System.Type,System.String})">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.Stream" /> object.</summary>
|
|
<param name="stream">A <see cref="T:System.IO.Stream" /> object to write to.</param>
|
|
<param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter)">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> object with which to write.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.IO.TextWriter,System.Converter{System.Type,System.String})">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.IO.TextWriter" />.</summary>
|
|
<param name="writer">A <see cref="T:System.IO.TextWriter" /> object to write to.</param>
|
|
<param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.String)">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to a file.</summary>
|
|
<param name="fileName">The file name (including the path) to which to write.</param>
|
|
<exception cref="T:System.Security.SecurityException">
|
|
<see cref="T:System.Security.Permissions.FileIOPermission" /> is not set to <see cref="F:System.Security.Permissions.FileIOPermissionAccess.Write" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.String,System.Converter{System.Type,System.String})">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to a file.</summary>
|
|
<param name="fileName">The name of the file to write to.</param>
|
|
<param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter)">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to an <see cref="T:System.Xml.XmlWriter" /> object.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write to.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataSet.WriteXmlSchema(System.Xml.XmlWriter,System.Converter{System.Type,System.String})">
|
|
<summary>Writes the <see cref="T:System.Data.DataSet" /> structure as an XML schema to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
<param name="writer">A <see cref="T:System.Xml.XmlWriter" /> object to write to.</param>
|
|
<param name="multipleTargetConverter">A delegate used to convert <see cref="T:System.Type" /> to string.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataSetDateTime">
|
|
<summary>Describes the serialization format for <see cref="T:System.DateTime" /> columns in a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataSetDateTime.Local">
|
|
<summary>
|
|
<see langword="DateTime" /> is always stored in Local. If <see cref="F:System.Data.DataSetDateTime.Utc" /> or <see cref="F:System.Data.DataSetDateTime.Unspecified" /> is assigned to a column in this mode, it is first converted into Local. Serialization in this mode is always performed in Local. There is an offset during serialization.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataSetDateTime.Unspecified">
|
|
<summary>
|
|
<see langword="DateTime" /> is always stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Utc" /> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified" />. Serialization in this mode does not cause an offset.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataSetDateTime.UnspecifiedLocal">
|
|
<summary>
|
|
<see langword="DateTime" /> is stored in Unspecified. If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Utc" /> is assigned to a column in this mode, it is first converted into <see cref="F:System.Data.DataSetDateTime.Unspecified" />. Serialization in this mode causes offset. This is the default behavior and is backward compatible. This option should be thought of as being Unspecified in storage but applying an offset that is similar to <see cref="F:System.Data.DataSetDateTime.Local" /> during serialization.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataSetDateTime.Utc">
|
|
<summary>
|
|
<see langword="DateTime" /> is stored in Universal Coordinated Time (UTC). If <see cref="F:System.Data.DataSetDateTime.Local" /> or <see cref="F:System.Data.DataSetDateTime.Unspecified" /> is assigned to a column in this mode, it is first converted into <see langword="Utc" /> format. Serialization in this mode is always performed in <see langword="Utc" />. There is no offset during serialization.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataSetSchemaImporterExtension">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSetSchemaImporterExtension.#ctor">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSetSchemaImporterExtension.ImportSchemaType(System.String,System.String,System.Xml.Schema.XmlSchemaObject,System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.XmlSchemaImporter,System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.Xml.Serialization.CodeGenerationOptions,System.CodeDom.Compiler.CodeDomProvider)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="name">
|
|
<paramref name="name" />
|
|
</param>
|
|
<param name="schemaNamespace">
|
|
<paramref name="schemaNamespace" />
|
|
</param>
|
|
<param name="context">
|
|
<paramref name="context" />
|
|
</param>
|
|
<param name="schemas">
|
|
<paramref name="schemas" />
|
|
</param>
|
|
<param name="importer">
|
|
<paramref name="importer" />
|
|
</param>
|
|
<param name="compileUnit">
|
|
<paramref name="compileUnit" />
|
|
</param>
|
|
<param name="mainNamespace">
|
|
<paramref name="mainNamespace" />
|
|
</param>
|
|
<param name="options">
|
|
<paramref name="options" />
|
|
</param>
|
|
<param name="codeProvider">
|
|
<paramref name="codeProvider" />
|
|
</param>
|
|
<returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataSetSchemaImporterExtension.ImportSchemaType(System.Xml.Schema.XmlSchemaType,System.Xml.Schema.XmlSchemaObject,System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.XmlSchemaImporter,System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.Xml.Serialization.CodeGenerationOptions,System.CodeDom.Compiler.CodeDomProvider)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="type">
|
|
<paramref name="type" />
|
|
</param>
|
|
<param name="context">
|
|
<paramref name="context" />
|
|
</param>
|
|
<param name="schemas">
|
|
<paramref name="schemas" />
|
|
</param>
|
|
<param name="importer">
|
|
<paramref name="importer" />
|
|
</param>
|
|
<param name="compileUnit">
|
|
<paramref name="compileUnit" />
|
|
</param>
|
|
<param name="mainNamespace">
|
|
<paramref name="mainNamespace" />
|
|
</param>
|
|
<param name="options">
|
|
<paramref name="options" />
|
|
</param>
|
|
<param name="codeProvider">
|
|
<paramref name="codeProvider" />
|
|
</param>
|
|
<returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataSysDescriptionAttribute">
|
|
<summary>Marks a property, event, or extender with a description. Visual designers can display this description when referencing the member.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataSysDescriptionAttribute.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataSysDescriptionAttribute" /> class using the specified description string.</summary>
|
|
<param name="description">The description string.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataSysDescriptionAttribute.Description">
|
|
<summary>Gets the text for the description.</summary>
|
|
<returns>The description string.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataTable">
|
|
<summary>Represents one table of in-memory data.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with no arguments.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a given serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class with the specified table name.</summary>
|
|
<param name="tableName">The name to give the table. If <paramref name="tableName" /> is <see langword="null" /> or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.#ctor(System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTable" /> class using the specified table name and namespace.</summary>
|
|
<param name="tableName">The name to give the table. If <paramref name="tableName" /> is <see langword="null" /> or an empty string, a default name is given when added to the <see cref="T:System.Data.DataTableCollection" />.</param>
|
|
<param name="tableNamespace">The namespace for the XML representation of the data stored in the <see langword="DataTable" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.AcceptChanges">
|
|
<summary>Commits all the changes made to this table since the last time <see cref="M:System.Data.DataTable.AcceptChanges" /> was called.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.BeginInit">
|
|
<summary>Begins the initialization of a <see cref="T:System.Data.DataTable" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.BeginLoadData">
|
|
<summary>Turns off notifications, index maintenance, and constraints while loading data.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.CaseSensitive">
|
|
<summary>Indicates whether string comparisons within the table are case-sensitive.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the comparison is case-sensitive; otherwise <see langword="false" />. The default is set to the parent <see cref="T:System.Data.DataSet" /> object's <see cref="P:System.Data.DataSet.CaseSensitive" /> property, or <see langword="false" /> if the <see cref="T:System.Data.DataTable" /> was created independently of a <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.ChildRelations">
|
|
<summary>Gets the collection of child relations for this <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains the child relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Clear">
|
|
<summary>Clears the <see cref="T:System.Data.DataTable" /> of all data.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Clone">
|
|
<summary>Clones the structure of the <see cref="T:System.Data.DataTable" />, including all <see cref="T:System.Data.DataTable" /> schemas and constraints.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> with the same schema as the current <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.ColumnChanged">
|
|
<summary>Occurs after a value has been changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.ColumnChanging">
|
|
<summary>Occurs when a value is being changed for the specified <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Columns">
|
|
<summary>Gets the collection of columns that belong to this table.</summary>
|
|
<returns>A <see cref="T:System.Data.DataColumnCollection" /> that contains the collection of <see cref="T:System.Data.DataColumn" /> objects for the table. An empty collection is returned if no <see cref="T:System.Data.DataColumn" /> objects exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Compute(System.String,System.String)">
|
|
<summary>Computes the given expression on the current rows that pass the filter criteria.</summary>
|
|
<param name="expression">The expression to compute.</param>
|
|
<param name="filter">The filter to limit the rows that evaluate in the expression.</param>
|
|
<returns>An <see cref="T:System.Object" />, set to the result of the computation. If the expression evaluates to null, the return value will be <see cref="F:System.DBNull.Value" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Constraints">
|
|
<summary>Gets the collection of constraints maintained by this table.</summary>
|
|
<returns>A <see cref="T:System.Data.ConstraintCollection" /> that contains the collection of <see cref="T:System.Data.Constraint" /> objects for the table. An empty collection is returned if no <see cref="T:System.Data.Constraint" /> objects exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Copy">
|
|
<summary>Copies both the structure and data for this <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> with the same structure (table schemas and constraints) and data as this <see cref="T:System.Data.DataTable" />.
|
|
If these classes have been derived, the copy will also be of the same derived classes.
|
|
<see cref="M:System.Data.DataTable.Copy" /> creates a new <see cref="T:System.Data.DataTable" /> with the same structure and data as the original <see cref="T:System.Data.DataTable" />. To copy the structure to a new <see cref="T:System.Data.DataTable" />, but not the data, use <see cref="M:System.Data.DataTable.Clone" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.CreateDataReader">
|
|
<summary>Returns a <see cref="T:System.Data.DataTableReader" /> corresponding to the data within this <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTableReader" /> containing one result set, corresponding to the source <see cref="T:System.Data.DataTable" /> instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.CreateInstance">
|
|
<summary>Creates a new instance of <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>The new expression.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.DataSet">
|
|
<summary>Gets the <see cref="T:System.Data.DataSet" /> to which this table belongs.</summary>
|
|
<returns>The <see cref="T:System.Data.DataSet" /> to which this table belongs.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.DefaultView">
|
|
<summary>Gets a customized view of the table that may include a filtered view, or a cursor position.</summary>
|
|
<returns>The <see cref="T:System.Data.DataView" /> associated with the <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.DisplayExpression">
|
|
<summary>Gets or sets the expression that returns a value used to represent this table in the user interface. The <see langword="DisplayExpression" /> property lets you display the name of this table in a user interface.</summary>
|
|
<returns>A display string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.EndInit">
|
|
<summary>Ends the initialization of a <see cref="T:System.Data.DataTable" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.EndLoadData">
|
|
<summary>Turns on notifications, index maintenance, and constraints after loading data.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.ExtendedProperties">
|
|
<summary>Gets the collection of customized user information.</summary>
|
|
<returns>A <see cref="T:System.Data.PropertyCollection" /> that contains custom user information.</returns>
|
|
</member>
|
|
<member name="F:System.Data.DataTable.fInitInProgress">
|
|
<summary>Checks whether initialization is in progress. The initialization occurs at run time.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetChanges">
|
|
<summary>Gets a copy of the <see cref="T:System.Data.DataTable" /> that contains all changes made to it since it was loaded or <see cref="M:System.Data.DataTable.AcceptChanges" /> was last called.</summary>
|
|
<returns>A copy of the changes from this <see cref="T:System.Data.DataTable" />, or <see langword="null" /> if no changes are found.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetChanges(System.Data.DataRowState)">
|
|
<summary>Gets a copy of the <see cref="T:System.Data.DataTable" /> containing all changes made to it since it was last loaded, or since <see cref="M:System.Data.DataTable.AcceptChanges" /> was called, filtered by <see cref="T:System.Data.DataRowState" />.</summary>
|
|
<param name="rowStates">One of the <see cref="T:System.Data.DataRowState" /> values.</param>
|
|
<returns>A filtered copy of the <see cref="T:System.Data.DataTable" /> that can have actions performed on it, and later be merged back in the <see cref="T:System.Data.DataTable" /> using <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" />. If no rows of the desired <see cref="T:System.Data.DataRowState" /> are found, the method returns <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetDataTableSchema(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>This method returns an <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance containing the Web Services Description Language (WSDL) that describes the <see cref="T:System.Data.DataTable" /> for Web Services.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance.</param>
|
|
<returns>The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetErrors">
|
|
<summary>Gets an array of <see cref="T:System.Data.DataRow" /> objects that contain errors.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects that have errors.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized data associated with the <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataTable" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetRowType">
|
|
<summary>Gets the row type.</summary>
|
|
<returns>The type of the <see cref="T:System.Data.DataRow" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.GetSchema">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
<returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.HasErrors">
|
|
<summary>Gets a value indicating whether there are errors in any of the rows in any of the tables of the <see cref="T:System.Data.DataSet" /> to which the table belongs.</summary>
|
|
<returns>
|
|
<see langword="true" /> if errors exist; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ImportRow(System.Data.DataRow)">
|
|
<summary>Copies a <see cref="T:System.Data.DataRow" /> into a <see cref="T:System.Data.DataTable" />, preserving any property settings, as well as original and current values.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to be imported.</param>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.Initialized">
|
|
<summary>Occurs after the <see cref="T:System.Data.DataTable" /> is initialized.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.IsInitialized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTable" /> is initialized.</summary>
|
|
<returns>
|
|
<see langword="true" /> to indicate the component has completed initialization; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Load(System.Data.IDataReader)">
|
|
<summary>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />. If the <see cref="T:System.Data.DataTable" /> already contains rows, the incoming data from the data source is merged with the existing rows.</summary>
|
|
<param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption)">
|
|
<summary>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" />. If the <see langword="DataTable" /> already contains rows, the incoming data from the data source is merged with the existing rows according to the value of the <paramref name="loadOption" /> parameter.</summary>
|
|
<param name="reader">An <see cref="T:System.Data.IDataReader" /> that provides one or more result sets.</param>
|
|
<param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> are combined with incoming rows that share the same primary key.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Load(System.Data.IDataReader,System.Data.LoadOption,System.Data.FillErrorEventHandler)">
|
|
<summary>Fills a <see cref="T:System.Data.DataTable" /> with values from a data source using the supplied <see cref="T:System.Data.IDataReader" /> using an error-handling delegate.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.IDataReader" /> that provides a result set.</param>
|
|
<param name="loadOption">A value from the <see cref="T:System.Data.LoadOption" /> enumeration that indicates how rows already in the <see cref="T:System.Data.DataTable" /> are combined with incoming rows that share the same primary key.</param>
|
|
<param name="errorHandler">A <see cref="T:System.Data.FillErrorEventHandler" /> delegate to call when an error occurs while loading data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Boolean)">
|
|
<summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
|
|
<param name="values">An array of values used to create the new row.</param>
|
|
<param name="fAcceptChanges">
|
|
<see langword="true" /> to accept changes; otherwise <see langword="false" />.</param>
|
|
<returns>The new <see cref="T:System.Data.DataRow" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
|
|
<exception cref="T:System.InvalidCastException">A value doesn't match its respective column type.</exception>
|
|
<exception cref="T:System.Data.ConstraintException">Adding the row invalidates a constraint.</exception>
|
|
<exception cref="T:System.Data.NoNullAllowedException">Attempting to put a null in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.LoadDataRow(System.Object[],System.Data.LoadOption)">
|
|
<summary>Finds and updates a specific row. If no matching row is found, a new row is created using the given values.</summary>
|
|
<param name="values">An array of values used to create the new row.</param>
|
|
<param name="loadOption">Used to determine how the array values are applied to the corresponding values in an existing row.</param>
|
|
<returns>The new <see cref="T:System.Data.DataRow" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Locale">
|
|
<summary>Gets or sets the locale information used to compare strings within the table.</summary>
|
|
<returns>A <see cref="T:System.Globalization.CultureInfo" /> that contains data about the user's machine locale. The default is the <see cref="T:System.Data.DataSet" /> object's <see cref="T:System.Globalization.CultureInfo" /> (returned by the <see cref="P:System.Data.DataSet.Locale" /> property) to which the <see cref="T:System.Data.DataTable" /> belongs; if the table doesn't belong to a <see cref="T:System.Data.DataSet" />, the default is the current system <see cref="T:System.Globalization.CultureInfo" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Merge(System.Data.DataTable)">
|
|
<summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean)">
|
|
<summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see langword="DataTable" />, indicating whether to preserve changes in the current <see langword="DataTable" />.</summary>
|
|
<param name="table">The <see langword="DataTable" /> to be merged with the current <see langword="DataTable" />.</param>
|
|
<param name="preserveChanges">
|
|
<see langword="true" />, to preserve changes in the current <see langword="DataTable" />; otherwise <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Merge(System.Data.DataTable,System.Boolean,System.Data.MissingSchemaAction)">
|
|
<summary>Merge the specified <see cref="T:System.Data.DataTable" /> with the current <see langword="DataTable" />, indicating whether to preserve changes and how to handle missing schema in the current <see langword="DataTable" />.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> to be merged with the current <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="preserveChanges">
|
|
<see langword="true" />, to preserve changes in the current <see cref="T:System.Data.DataTable" />; otherwise <see langword="false" />.</param>
|
|
<param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.MinimumCapacity">
|
|
<summary>Gets or sets the initial starting size for this table.</summary>
|
|
<returns>The initial starting size in rows of this table. The default is 50.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Namespace">
|
|
<summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>The namespace of the <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.NewRow">
|
|
<summary>Creates a new <see cref="T:System.Data.DataRow" /> with the same schema as the table.</summary>
|
|
<returns>A <see cref="T:System.Data.DataRow" /> with the same schema as the <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.NewRowArray(System.Int32)">
|
|
<summary>Returns an array of <see cref="T:System.Data.DataRow" />.</summary>
|
|
<param name="size">A <see cref="T:System.Int32" /> value that describes the size of the array.</param>
|
|
<returns>The new array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.NewRowFromBuilder(System.Data.DataRowBuilder)">
|
|
<summary>Creates a new row from an existing row.</summary>
|
|
<param name="builder">A <see cref="T:System.Data.DataRowBuilder" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.DataRow" /> derived class.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnColumnChanged(System.Data.DataColumnChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanged" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnColumnChanging(System.Data.DataColumnChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.ColumnChanging" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataColumnChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)">
|
|
<summary>Raises the <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> event.</summary>
|
|
<param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnRemoveColumn(System.Data.DataColumn)">
|
|
<summary>Notifies the <see cref="T:System.Data.DataTable" /> that a <see cref="T:System.Data.DataColumn" /> is being removed.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> being removed.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnRowChanged(System.Data.DataRowChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.RowChanged" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnRowChanging(System.Data.DataRowChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.RowChanging" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.RowDeleted" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.RowDeleting" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataRowChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnTableCleared(System.Data.DataTableClearEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.TableCleared" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnTableClearing(System.Data.DataTableClearEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.TableClearing" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.OnTableNewRow(System.Data.DataTableNewRowEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataTable.TableNewRow" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.ParentRelations">
|
|
<summary>Gets the collection of parent relations for this <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains the parent relations for the table. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Prefix">
|
|
<summary>Gets or sets the namespace for the XML representation of the data stored in the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>The prefix of the <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.PrimaryKey">
|
|
<summary>Gets or sets an array of columns that function as primary keys for the data table.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
|
|
<exception cref="T:System.Data.DataException">The key is a foreign key.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXml(System.IO.Stream)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.Stream" />.</summary>
|
|
<param name="stream">An object that derives from <see cref="T:System.IO.Stream" /></param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXml(System.IO.TextReader)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.IO.TextReader" /> that will be used to read the data.</param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXml(System.String)">
|
|
<summary>Reads XML schema and data into the <see cref="T:System.Data.DataTable" /> from the specified file.</summary>
|
|
<param name="fileName">The name of the file from which to read the data.</param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXml(System.Xml.XmlReader)">
|
|
<summary>Reads XML Schema and Data into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> that will be used to read the data.</param>
|
|
<returns>The <see cref="T:System.Data.XmlReadMode" /> used to read the data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.Stream)">
|
|
<summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified stream.</summary>
|
|
<param name="stream">The stream used to read the schema.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXmlSchema(System.IO.TextReader)">
|
|
<summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.IO.TextReader" /> used to read the schema information.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXmlSchema(System.String)">
|
|
<summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> from the specified file.</summary>
|
|
<param name="fileName">The name of the file from which to read the schema information.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXmlSchema(System.Xml.XmlReader)">
|
|
<summary>Reads an XML schema into the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the schema information.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ReadXmlSerializable(System.Xml.XmlReader)">
|
|
<summary>Reads from an XML stream.</summary>
|
|
<param name="reader">A <see cref="T:System.Xml.XmlReader" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.RejectChanges">
|
|
<summary>Rolls back all changes that have been made to the table since it was loaded, or the last time <see cref="M:System.Data.DataTable.AcceptChanges" /> was called.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.RemotingFormat">
|
|
<summary>Gets or sets the serialization format.</summary>
|
|
<returns>A <see cref="T:System.Data.SerializationFormat" /> enumeration specifying either <see langword="Binary" /> or <see langword="Xml" /> serialization.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Reset">
|
|
<summary>Resets the <see cref="T:System.Data.DataTable" /> to its original state. Reset removes all data, indexes, relations, and columns of the table. If a DataSet includes a DataTable, the table will still be part of the DataSet after the table is reset.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.RowChanged">
|
|
<summary>Occurs after a <see cref="T:System.Data.DataRow" /> has been changed successfully.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.RowChanging">
|
|
<summary>Occurs when a <see cref="T:System.Data.DataRow" /> is changing.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.RowDeleted">
|
|
<summary>Occurs after a row in the table has been deleted.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.RowDeleting">
|
|
<summary>Occurs before a row in the table is about to be deleted.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Rows">
|
|
<summary>Gets the collection of rows that belong to this table.</summary>
|
|
<returns>A <see cref="T:System.Data.DataRowCollection" /> that contains <see cref="T:System.Data.DataRow" /> objects; otherwise a null value if no <see cref="T:System.Data.DataRow" /> objects exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Select">
|
|
<summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Select(System.String)">
|
|
<summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria.</summary>
|
|
<param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Select(System.String,System.String)">
|
|
<summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter criteria, in the specified sort order.</summary>
|
|
<param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
|
|
<param name="sort">A string specifying the column and sort direction.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects matching the filter expression.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.Select(System.String,System.String,System.Data.DataViewRowState)">
|
|
<summary>Gets an array of all <see cref="T:System.Data.DataRow" /> objects that match the filter in the order of the sort that match the specified state.</summary>
|
|
<param name="filterExpression">The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].</param>
|
|
<param name="sort">A string specifying the column and sort direction.</param>
|
|
<param name="recordStates">One of the <see cref="T:System.Data.DataViewRowState" /> values.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.Site">
|
|
<summary>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>An <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.System#ComponentModel#IListSource#ContainsListCollection">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is a collection of <see cref="T:System.Collections.IList" /> objects; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.System#ComponentModel#IListSource#GetList">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IList" /> that can be bound to a data source from the object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
<returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
|
|
<param name="reader">An XmlReader.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
|
|
<param name="writer">An XmlWriter.</param>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.TableCleared">
|
|
<summary>Occurs after a <see cref="T:System.Data.DataTable" /> is cleared.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.TableClearing">
|
|
<summary>Occurs when a <see cref="T:System.Data.DataTable" /> is cleared.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTable.TableName">
|
|
<summary>Gets or sets the name of the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.DataTable" />.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<see langword="null" /> or empty string ("") is passed in and this table belongs to a collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">The table belongs to a collection that already has a table with the same name. (Comparison is case-sensitive).</exception>
|
|
</member>
|
|
<member name="E:System.Data.DataTable.TableNewRow">
|
|
<summary>Occurs when a new <see cref="T:System.Data.DataRow" /> is inserted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.ToString">
|
|
<summary>Gets the <see cref="P:System.Data.DataTable.TableName" /> and <see cref="P:System.Data.DataTable.DisplayExpression" />, if there is one as a concatenated string.</summary>
|
|
<returns>A string consisting of the <see cref="P:System.Data.DataTable.TableName" /> and the <see cref="P:System.Data.DataTable.DisplayExpression" /> values.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.Stream)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.Stream" />.</summary>
|
|
<param name="stream">The stream to which the data will be written.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Boolean)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.Stream" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="stream">The stream to which the data will be written.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="stream">The stream to which the data will be written.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.Stream,System.Data.XmlWriteMode,System.Boolean)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> to the specified file using the specified <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="stream">The stream to which the data will be written.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.TextWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write the content.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Boolean)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.IO.TextWriter" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write the content.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> used to write the document.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.IO.TextWriter,System.Data.XmlWriteMode,System.Boolean)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> used to write the document.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.String)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified file.</summary>
|
|
<param name="fileName">The file to which to write the XML data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.String,System.Boolean)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified file. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="fileName">The file to which to write the XML data.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified file and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="fileName">The name of the file to which the data will be written.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.String,System.Data.XmlWriteMode,System.Boolean)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified file and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="fileName">The name of the file to which the data will be written.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Boolean)">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataTable" /> as XML using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write the contents.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXml(System.Xml.XmlWriter,System.Data.XmlWriteMode,System.Boolean)">
|
|
<summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataTable" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />. To save the data for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
|
|
<param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the contents of the current table and all its descendants. If <see langword="false" /> (the default value), write the data for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified stream.</summary>
|
|
<param name="stream">The stream to which the XML schema will be written.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.Stream,System.Boolean)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified stream. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="stream">The stream to which the XML schema will be written.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.IO.TextWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.IO.TextWriter,System.Boolean)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.IO.TextWriter" />. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="writer">The <see cref="T:System.IO.TextWriter" /> with which to write.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.String)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified file.</summary>
|
|
<param name="fileName">The name of the file to use.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.String,System.Boolean)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema to the specified file. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="fileName">The name of the file to use.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to use.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTable.WriteXmlSchema(System.Xml.XmlWriter,System.Boolean)">
|
|
<summary>Writes the current data structure of the <see cref="T:System.Data.DataTable" /> as an XML schema using the specified <see cref="T:System.Xml.XmlWriter" />. To save the schema for the table and all its descendants, set the <paramref name="writeHierarchy" /> parameter to <see langword="true" />.</summary>
|
|
<param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the document.</param>
|
|
<param name="writeHierarchy">If <see langword="true" />, write the schema of the current table and all its descendants. If <see langword="false" /> (the default value), write the schema for the current table only.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataTableClearEventArgs">
|
|
<summary>Provides data for the <see cref="M:System.Data.DataTable.Clear" /> method.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTableClearEventArgs.#ctor(System.Data.DataTable)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTableClearEventArgs" /> class.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> whose rows are being cleared.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataTableClearEventArgs.Table">
|
|
<summary>Gets the table whose rows are being cleared.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> whose rows are being cleared.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTableClearEventArgs.TableName">
|
|
<summary>Gets the table name whose rows are being cleared.</summary>
|
|
<returns>A <see cref="T:System.String" /> indicating the table name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTableClearEventArgs.TableNamespace">
|
|
<summary>Gets the namespace of the table whose rows are being cleared.</summary>
|
|
<returns>A <see cref="T:System.String" /> indicating the namespace name.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataTableClearEventHandler">
|
|
<summary>Represents the method that handles the <see cref="M:System.Data.DataTable.Clear" /> method.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.DataTableClearEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataTableCollection">
|
|
<summary>Represents the collection of tables for the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Add">
|
|
<summary>Creates a new <see cref="T:System.Data.DataTable" /> object by using a default name and adds it to the collection.</summary>
|
|
<returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Add(System.Data.DataTable)">
|
|
<summary>Adds the specified <see langword="DataTable" /> to the collection.</summary>
|
|
<param name="table">The <see langword="DataTable" /> object to add.</param>
|
|
<exception cref="T:System.ArgumentNullException">The value specified for the table is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The table already belongs to this collection, or belongs to another collection.</exception>
|
|
<exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. The comparison is not case sensitive.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Add(System.String)">
|
|
<summary>Creates a <see cref="T:System.Data.DataTable" /> object by using the specified name and adds it to the collection.</summary>
|
|
<param name="name">The name to give the created <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
|
|
<exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Add(System.String,System.String)">
|
|
<summary>Creates a <see cref="T:System.Data.DataTable" /> object by using the specified name and adds it to the collection.</summary>
|
|
<param name="name">The name to give the created <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="tableNamespace">The namespace to give the created <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>The newly created <see cref="T:System.Data.DataTable" />.</returns>
|
|
<exception cref="T:System.Data.DuplicateNameException">A table in the collection has the same name. (The comparison is not case sensitive.)</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.AddRange(System.Data.DataTable[])">
|
|
<summary>Copies the elements of the specified <see cref="T:System.Data.DataTable" /> array to the end of the collection.</summary>
|
|
<param name="tables">The array of <see cref="T:System.Data.DataTable" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.CanRemove(System.Data.DataTable)">
|
|
<summary>Verifies whether the specified <see cref="T:System.Data.DataTable" /> object can be removed from the collection.</summary>
|
|
<param name="table">The <see langword="DataTable" /> in the collection to perform the check against.</param>
|
|
<returns>
|
|
<see langword="true" /> if the table can be removed; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Clear">
|
|
<summary>Clears the collection of all <see cref="T:System.Data.DataTable" /> objects.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTableCollection.CollectionChanged">
|
|
<summary>Occurs after the <see cref="T:System.Data.DataTableCollection" /> is changed because of <see cref="T:System.Data.DataTable" /> objects being added or removed.</summary>
|
|
</member>
|
|
<member name="E:System.Data.DataTableCollection.CollectionChanging">
|
|
<summary>Occurs while the <see cref="T:System.Data.DataTableCollection" /> is changing because of <see cref="T:System.Data.DataTable" /> objects being added or removed.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Contains(System.String)">
|
|
<summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable" /> object with the specified name exists in the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified table exists; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Contains(System.String,System.String)">
|
|
<summary>Gets a value that indicates whether a <see cref="T:System.Data.DataTable" /> object with the specified name and table namespace exists in the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified table exists; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.CopyTo(System.Data.DataTable[],System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.DataTableCollection" /> to a one-dimensional <see cref="T:System.Array" />, starting at the specified destination array index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> to copy the current <see cref="T:System.Data.DataTableCollection" /> object's elements into.</param>
|
|
<param name="index">The destination <see cref="T:System.Array" /> index to start copying into.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.IndexOf(System.Data.DataTable)">
|
|
<summary>Gets the index of the specified <see cref="T:System.Data.DataTable" /> object.</summary>
|
|
<param name="table">The <see langword="DataTable" /> to search for.</param>
|
|
<returns>The zero-based index of the table, or -1 if the table is not found in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.IndexOf(System.String)">
|
|
<summary>Gets the index in the collection of the <see cref="T:System.Data.DataTable" /> object with the specified name.</summary>
|
|
<param name="tableName">The name of the <see langword="DataTable" /> object to look for.</param>
|
|
<returns>The zero-based index of the <see langword="DataTable" /> with the specified name, or -1 if the table does not exist in the collection.
|
|
|
|
Returns -1 when two or more tables have the same name but different namespaces. The call does not succeed if there is any ambiguity when matching a table name to exactly one table.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.IndexOf(System.String,System.String)">
|
|
<summary>Gets the index in the collection of the specified <see cref="T:System.Data.DataTable" /> object.</summary>
|
|
<param name="tableName">The name of the <see cref="T:System.Data.DataTable" /> object to look for.</param>
|
|
<param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
|
|
<returns>The zero-based index of the <see cref="T:System.Data.DataTable" /> with the specified name, or -1 if the table does not exist in the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTableCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> object at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> with the specified index; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index value is greater than the number of items in the collection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> object with the specified name.</summary>
|
|
<param name="name">The name of the <see langword="DataTable" /> to find.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> with the specified name; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTableCollection.Item(System.String,System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> object with the specified name in the specified namespace.</summary>
|
|
<param name="name">The name of the <see langword="DataTable" /> to find.</param>
|
|
<param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> with the specified name; otherwise <see langword="null" /> if the <see cref="T:System.Data.DataTable" /> does not exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Remove(System.Data.DataTable)">
|
|
<summary>Removes the specified <see cref="T:System.Data.DataTable" /> object from the collection.</summary>
|
|
<param name="table">The <see langword="DataTable" /> to remove.</param>
|
|
<exception cref="T:System.ArgumentNullException">The value specified for the table is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The table does not belong to this collection.
|
|
-or-
|
|
The table is part of a relationship.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Remove(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.DataTable" /> object with the specified name from the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.DataTable" /> object to remove.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.Remove(System.String,System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.DataTable" /> object with the specified name from the collection.</summary>
|
|
<param name="name">The name of the <see cref="T:System.Data.DataTable" /> object to remove.</param>
|
|
<param name="tableNamespace">The name of the <see cref="T:System.Data.DataTable" /> namespace to look in.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a table with the specified name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.DataTable" /> object at the specified index from the collection.</summary>
|
|
<param name="index">The index of the <see langword="DataTable" /> to remove.</param>
|
|
<exception cref="T:System.ArgumentException">The collection does not have a table at the specified index.</exception>
|
|
</member>
|
|
<member name="T:System.Data.DataTableNewRowEventArgs">
|
|
<summary>Provides data for the <see cref="M:System.Data.DataTable.NewRow" /> method.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTableNewRowEventArgs.#ctor(System.Data.DataRow)">
|
|
<summary>Initializes a new instance of <see cref="T:System.Data.DataTableNewRowEventArgs" />.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> being added.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataTableNewRowEventArgs.Row">
|
|
<summary>Gets the row that is being added.</summary>
|
|
<returns>The <see cref="T:System.Data.DataRow" /> that is being added.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataTableNewRowEventHandler">
|
|
<summary>Represents the method that handles the <see cref="M:System.Data.DataTable.NewRow" /> method.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.DataTableNewRowEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataTableReader">
|
|
<summary>The <see cref="T:System.Data.DataTableReader" /> obtains the contents of one or more <see cref="T:System.Data.DataTable" /> objects in the form of one or more read-only, forward-only result sets.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader" /> class by using data from the supplied <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> from which the new <see cref="T:System.Data.DataTableReader" /> obtains its result set.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.#ctor(System.Data.DataTable[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataTableReader" /> class using the supplied array of <see cref="T:System.Data.DataTable" /> objects.</summary>
|
|
<param name="dataTables">The array of <see cref="T:System.Data.DataTable" /> objects that supplies the results for the new <see cref="T:System.Data.DataTableReader" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.Close">
|
|
<summary>Closes the current <see cref="T:System.Data.DataTableReader" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.Depth">
|
|
<summary>The depth of nesting for the current row of the <see cref="T:System.Data.DataTableReader" />.</summary>
|
|
<returns>The depth of nesting for the current row; always zero.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.FieldCount">
|
|
<summary>Returns the number of columns in the current row.</summary>
|
|
<returns>When not positioned in a valid result set, 0; otherwise the number of columns in the current row.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to retrieve the field count in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetBoolean(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.Boolean" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a <see langword="Boolean" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetByte(System.Int32)">
|
|
<summary>Gets the value of the specified column as a byte.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a byte.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of bytes starting at the specified column offset into the buffer as an array starting at the specified buffer offset.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the field from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
|
|
<param name="length">The maximum length to copy into the buffer.</param>
|
|
<returns>The actual number of bytes read.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a byte array.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetChar(System.Int32)">
|
|
<summary>Gets the value of the specified column as a character.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified field does not contain a character.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
|
|
<summary>Returns the value of the specified column as a character array.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the field from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of chars.</param>
|
|
<param name="bufferIndex">The index within the buffer at which to start placing the data.</param>
|
|
<param name="length">The maximum length to copy into the buffer.</param>
|
|
<returns>The actual number of characters read.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a character array.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetDataTypeName(System.Int32)">
|
|
<summary>Gets a string representing the data type of the specified column.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>A string representing the column's data type.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetDateTime(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a DateTime value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetDecimal(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.Decimal" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a <see langword="Decimal" /> value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetDouble(System.Int32)">
|
|
<summary>Gets the value of the column as a double-precision floating point number.</summary>
|
|
<param name="ordinal">The zero-based ordinal of the column.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see langword="DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a double-precision floating point number.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetEnumerator">
|
|
<summary>Returns an enumerator that can be used to iterate through the item collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that represents the item collection.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetFieldType(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetFloat(System.Int32)">
|
|
<summary>Gets the value of the specified column as a single-precision floating point number.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a single-precision floating point number.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetGuid(System.Int32)">
|
|
<summary>Gets the value of the specified column as a globally-unique identifier (GUID).</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a GUID.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetInt16(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a 16-bit signed integer.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetInt32(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a 32-bit signed integer value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetInt64(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a 64-bit signed integer value.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetName(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.String" />.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The name of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetOrdinal(System.String)">
|
|
<summary>Gets the column ordinal, given the name of the column.</summary>
|
|
<param name="name">The name of the column.</param>
|
|
<returns>The zero-based column ordinal.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetProviderSpecificFieldType(System.Int32)">
|
|
<summary>Gets the type of the specified column in provider-specific format.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetProviderSpecificValue(System.Int32)">
|
|
<summary>Gets the value of the specified column in provider-specific format.</summary>
|
|
<param name="ordinal">The zero-based number of the column whose value is retrieved.</param>
|
|
<returns>The value of the specified column in provider-specific format.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /></exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetProviderSpecificValues(System.Object[])">
|
|
<summary>Fills the supplied array with provider-specific type information for all the columns in the <see cref="T:System.Data.DataTableReader" />.</summary>
|
|
<param name="values">An array of objects to be filled in with type information for the columns in the <see cref="T:System.Data.DataTableReader" />.</param>
|
|
<returns>The number of column values copied into the array.</returns>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.DataTableReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.DataTableReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetString(System.Int32)">
|
|
<summary>Gets the value of the specified column as a string.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The specified column does not contain a string.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetValue(System.Int32)">
|
|
<summary>Gets the value of the specified column in its native format.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>The value of the specified column. This method returns <see langword="DBNull" /> for null columns.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access columns in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.GetValues(System.Object[])">
|
|
<summary>Populates an array of objects with the column values of the current row.</summary>
|
|
<param name="values">An array of <see cref="T:System.Object" /> into which to copy the column values from the <see cref="T:System.Data.DataTableReader" />.</param>
|
|
<returns>The number of column values copied into the array.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.HasRows">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader" /> contains one or more rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataTableReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to retrieve information about a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.IsClosed">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.DataTableReader" /> is closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.DataTableReader" /> is closed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.IsDBNull(System.Int32)">
|
|
<summary>Gets a value that indicates whether the column contains non-existent or missing values.</summary>
|
|
<param name="ordinal">The zero-based column ordinal</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.Item(System.Int32)">
|
|
<summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column in its native format.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 to <see cref="P:System.Data.DataTableReader.FieldCount" /> - 1.</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.Item(System.String)">
|
|
<summary>Gets the value of the specified column in its native format given the column name.</summary>
|
|
<param name="name">The name of the column.</param>
|
|
<returns>The value of the specified column in its native format.</returns>
|
|
<exception cref="T:System.ArgumentException">The name specified is not a valid column name.</exception>
|
|
<exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to retrieve data from a deleted row.</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.NextResult">
|
|
<summary>Advances the <see cref="T:System.Data.DataTableReader" /> to the next result set, if any.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there was another result set; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to navigate within a closed <see cref="T:System.Data.DataTableReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.DataTableReader.Read">
|
|
<summary>Advances the <see cref="T:System.Data.DataTableReader" /> to the next record.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there was another row to read; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access a column in a closed <see cref="T:System.Data.DataTableReader" /> .</exception>
|
|
</member>
|
|
<member name="P:System.Data.DataTableReader.RecordsAffected">
|
|
<summary>Gets the number of rows inserted, changed, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTableReader" /> does not support this property and always returns 0.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataView">
|
|
<summary>Represents a databindable, customized view of a <see cref="T:System.Data.DataTable" /> for sorting, filtering, searching, editing, and navigation. The <see cref="T:System.Data.DataView" /> does not store data, but instead represents a connected view of its corresponding <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataView" />'s data will affect the <see cref="T:System.Data.DataTable" />. Changes to the <see cref="T:System.Data.DataTable" />'s data will affect all <see cref="T:System.Data.DataView" />s associated with it.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.#ctor(System.Data.DataTable)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class with the specified <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> to add to the <see cref="T:System.Data.DataView" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.#ctor(System.Data.DataTable,System.String,System.String,System.Data.DataViewRowState)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataView" /> class with the specified <see cref="T:System.Data.DataTable" />, <see cref="P:System.Data.DataView.RowFilter" />, <see cref="P:System.Data.DataView.Sort" />, and <see cref="T:System.Data.DataViewRowState" />.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> to add to the <see cref="T:System.Data.DataView" />.</param>
|
|
<param name="RowFilter">A <see cref="P:System.Data.DataView.RowFilter" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
|
|
<param name="Sort">A <see cref="P:System.Data.DataView.Sort" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
|
|
<param name="RowState">A <see cref="T:System.Data.DataViewRowState" /> to apply to the <see cref="T:System.Data.DataView" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.AddNew">
|
|
<summary>Adds a new row to the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataRowView" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.AllowDelete">
|
|
<summary>Sets or gets a value that indicates whether deletes are allowed.</summary>
|
|
<returns>
|
|
<see langword="true" />, if deletes are allowed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.AllowEdit">
|
|
<summary>Gets or sets a value that indicates whether edits are allowed.</summary>
|
|
<returns>
|
|
<see langword="true" />, if edits are allowed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.AllowNew">
|
|
<summary>Gets or sets a value that indicates whether the new rows can be added by using the <see cref="M:System.Data.DataView.AddNew" /> method.</summary>
|
|
<returns>
|
|
<see langword="true" />, if new rows can be added; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.ApplyDefaultSort">
|
|
<summary>Gets or sets a value that indicates whether to use the default sort. The default sort is (ascending) by all primary keys as specified by <see cref="P:System.Data.DataTable.PrimaryKey" />.</summary>
|
|
<returns>
|
|
<see langword="true" />, if the default sort is used; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.BeginInit">
|
|
<summary>Starts the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Close">
|
|
<summary>Closes the <see cref="T:System.Data.DataView" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
|
|
<summary>Occurs after a <see cref="T:System.Data.DataColumnCollection" /> has been changed successfully.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies items into an array. Only for Web Forms Interfaces.</summary>
|
|
<param name="array">array to copy into.</param>
|
|
<param name="index">index to start at.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataView.Count">
|
|
<summary>Gets the number of records in the <see cref="T:System.Data.DataView" /> after <see cref="P:System.Data.DataView.RowFilter" /> and <see cref="P:System.Data.DataView.RowStateFilter" /> have been applied.</summary>
|
|
<returns>The number of records in the <see cref="T:System.Data.DataView" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.DataViewManager">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewManager" /> associated with this view.</summary>
|
|
<returns>The <see langword="DataViewManager" /> that created this view. If this is the default <see cref="T:System.Data.DataView" /> for a <see cref="T:System.Data.DataTable" />, the <see langword="DataViewManager" /> property returns the default <see langword="DataViewManager" /> for the <see langword="DataSet" />. Otherwise, if the <see langword="DataView" /> was created without a <see langword="DataViewManager" />, this property is <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Delete(System.Int32)">
|
|
<summary>Deletes a row at the specified index.</summary>
|
|
<param name="index">The index of the row to delete.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Dispose(System.Boolean)">
|
|
<summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Data.DataView" /> object.</summary>
|
|
<param name="disposing">
|
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.EndInit">
|
|
<summary>Ends the initialization of a <see cref="T:System.Data.DataView" /> that is used on a form or used by another component. The initialization occurs at runtime.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Equals(System.Data.DataView)">
|
|
<summary>Determines whether the specified <see cref="T:System.Data.DataView" /> instances are considered equal.</summary>
|
|
<param name="view">The <see cref="T:System.Data.DataView" /> to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two <see cref="T:System.Data.DataView" /> instances are equal; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Find(System.Object)">
|
|
<summary>Finds a row in the <see cref="T:System.Data.DataView" /> by the specified sort key value.</summary>
|
|
<param name="key">The object to search for.</param>
|
|
<returns>The index of the row in the <see cref="T:System.Data.DataView" /> that contains the sort key value specified; otherwise -1 if the sort key value does not exist.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Find(System.Object[])">
|
|
<summary>Finds a row in the <see cref="T:System.Data.DataView" /> by the specified sort key values.</summary>
|
|
<param name="key">An array of values, typed as <see cref="T:System.Object" />.</param>
|
|
<returns>The index of the position of the first row in the <see cref="T:System.Data.DataView" /> that matches the sort key values specified; otherwise -1 if there are no matching sort key values.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.FindRows(System.Object)">
|
|
<summary>Returns an array of <see cref="T:System.Data.DataRowView" /> objects whose columns match the specified sort key value.</summary>
|
|
<param name="key">The column value, typed as <see cref="T:System.Object" />, to search for.</param>
|
|
<returns>An array of <see langword="DataRowView" /> objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty <see langword="DataRowView" /> array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.FindRows(System.Object[])">
|
|
<summary>Returns an array of <see cref="T:System.Data.DataRowView" /> objects whose columns match the specified sort key value.</summary>
|
|
<param name="key">An array of column values, typed as <see cref="T:System.Object" />, to search for.</param>
|
|
<returns>An array of <see langword="DataRowView" /> objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty <see langword="DataRowView" /> array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.GetEnumerator">
|
|
<summary>Gets an enumerator for this <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for navigating through the list.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)">
|
|
<summary>Occurs after a <see cref="T:System.Data.DataView" /> has been changed successfully.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="E:System.Data.DataView.Initialized">
|
|
<summary>Occurs when initialization of the <see cref="T:System.Data.DataView" /> is completed.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataView.IsInitialized">
|
|
<summary>Gets a value that indicates whether the component is initialized.</summary>
|
|
<returns>
|
|
<see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.IsOpen">
|
|
<summary>Gets a value that indicates whether the data source is currently open and projecting views of data on the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>
|
|
<see langword="true" />, if the source is open; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.Item(System.Int32)">
|
|
<summary>Gets a row of data from a specified table.</summary>
|
|
<param name="recordIndex">The index of a record in the <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>A <see cref="T:System.Data.DataRowView" /> of the row that you want.</returns>
|
|
</member>
|
|
<member name="E:System.Data.DataView.ListChanged">
|
|
<summary>Occurs when the list managed by the <see cref="T:System.Data.DataView" /> changes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataView.ListChanged" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Open">
|
|
<summary>Opens a <see cref="T:System.Data.DataView" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.Reset">
|
|
<summary>Reserved for internal use only.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataView.RowFilter">
|
|
<summary>Gets or sets the expression used to filter which rows are viewed in the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>A string that specifies how rows are to be filtered.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.RowStateFilter">
|
|
<summary>Gets or sets the row state filter used in the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataViewRowState" /> values.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.Sort">
|
|
<summary>Gets or sets the sort column or columns, and sort order for the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>A string that contains the column name followed by "ASC" (ascending) or "DESC" (descending). Columns are sorted ascending by default. Multiple columns can be separated by commas.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#Collections#ICollection#IsSynchronized">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#Collections#ICollection#SyncRoot">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#Add(System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
<returns>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#Clear">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#Contains(System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
<returns>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#IndexOf(System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
<returns>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#Insert(System.Int32,System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
|
|
<param name="index">An <see cref="T:System.Int32" /> value.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> value to be inserted.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#Collections#IList#IsFixedSize">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#Collections#IList#IsReadOnly">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#Collections#IList#Item(System.Int32)">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
|
|
<param name="recordIndex">An <see cref="T:System.Int32" /> value.</param>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#Remove(System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> value.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#Collections#IList#RemoveAt(System.Int32)">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
|
|
<param name="index">An <see cref="T:System.Int32" /> value.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
|
|
<param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#AddNew">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
|
|
<returns>The item added to the list.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowEdit">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowNew">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#AllowRemove">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
|
|
<param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
<param name="direction">A <see cref="T:System.ComponentModel.ListSortDirection" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</summary>
|
|
<param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
<param name="key">An <see cref="T:System.Object" /> value.</param>
|
|
<returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#IsSorted">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)" />.</summary>
|
|
<param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingList#RemoveSort">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.RemoveSort" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortDirection">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SortProperty">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsChangeNotification">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSearching">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingList#SupportsSorting">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#ApplySort(System.ComponentModel.ListSortDescriptionCollection)">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.ApplySort(System.ComponentModel.ListSortDescriptionCollection)" />.</summary>
|
|
<param name="sorts">A <see cref="T:System.ComponentModel.ListSortDescriptionCollection" /> object.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#Filter">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.Filter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#IBindingListView#RemoveFilter">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingListView.RemoveFilter" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SortDescriptions">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SortDescriptions" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsAdvancedSorting">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsAdvancedSorting" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.System#ComponentModel#IBindingListView#SupportsFiltering">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingListView.SupportsFiltering" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])" />.</summary>
|
|
<param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the collection as bindable. This can be <see langword="null" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataView.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</summary>
|
|
<param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects.</param>
|
|
<returns>For a description of this member, see <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataView.Table">
|
|
<summary>Gets or sets the source <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that provides the data for this view.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.ToTable">
|
|
<summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.ToTable(System.Boolean,System.String[])">
|
|
<summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
|
|
<param name="distinct">If <see langword="true" />, the returned <see cref="T:System.Data.DataTable" /> contains rows that have distinct values for all its columns. The default value is <see langword="false" />.</param>
|
|
<param name="columnNames">A string array that contains a list of the column names to be included in the returned <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> contains the specified columns in the order they appear within this array.</param>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.ToTable(System.String)">
|
|
<summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
|
|
<param name="tableName">The name of the returned <see cref="T:System.Data.DataTable" />.</param>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.ToTable(System.String,System.Boolean,System.String[])">
|
|
<summary>Creates and returns a new <see cref="T:System.Data.DataTable" /> based on rows in an existing <see cref="T:System.Data.DataView" />.</summary>
|
|
<param name="tableName">The name of the returned <see cref="T:System.Data.DataTable" />.</param>
|
|
<param name="distinct">If <see langword="true" />, the returned <see cref="T:System.Data.DataTable" /> contains rows that have distinct values for all its columns. The default value is <see langword="false" />.</param>
|
|
<param name="columnNames">A string array that contains a list of the column names to be included in the returned <see cref="T:System.Data.DataTable" />. The <see langword="DataTable" /> contains the specified columns in the order they appear within this array.</param>
|
|
<returns>A new <see cref="T:System.Data.DataTable" /> instance that contains the requested rows and columns.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataView.UpdateIndex">
|
|
<summary>Reserved for internal use only.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataView.UpdateIndex(System.Boolean)">
|
|
<summary>Reserved for internal use only.</summary>
|
|
<param name="force">Reserved for internal use only.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataViewManager">
|
|
<summary>Contains a default <see cref="T:System.Data.DataViewSettingCollection" /> for each <see cref="T:System.Data.DataTable" /> in a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.#ctor(System.Data.DataSet)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DataViewManager" /> class for the specified <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">The name of the <see cref="T:System.Data.DataSet" /> to use.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.CreateDataView(System.Data.DataTable)">
|
|
<summary>Creates a <see cref="T:System.Data.DataView" /> for the specified <see cref="T:System.Data.DataTable" />.</summary>
|
|
<param name="table">The name of the <see cref="T:System.Data.DataTable" /> to use in the <see cref="T:System.Data.DataView" />.</param>
|
|
<returns>A <see cref="T:System.Data.DataView" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.DataSet">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DataSet" /> to use with the <see cref="T:System.Data.DataViewManager" />.</summary>
|
|
<returns>The <see cref="T:System.Data.DataSet" /> to use.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.DataViewSettingCollectionString">
|
|
<summary>Gets or sets a value that is used for code persistence.</summary>
|
|
<returns>A value that is used for code persistence.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.DataViewSettings">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewSettingCollection" /> for each <see cref="T:System.Data.DataTable" /> in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataViewSettingCollection" /> for each <see langword="DataTable" />.</returns>
|
|
</member>
|
|
<member name="E:System.Data.DataViewManager.ListChanged">
|
|
<summary>Occurs after a row is added to or deleted from a <see cref="T:System.Data.DataView" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
|
|
<summary>Raises the <see cref="E:System.Data.DataViewManager.ListChanged" /> event.</summary>
|
|
<param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.RelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
|
|
<summary>Raises a <see cref="E:System.Data.DataRelationCollection.CollectionChanged" /> event when a <see cref="T:System.Data.DataRelation" /> is added to or removed from the <see cref="T:System.Data.DataRelationCollection" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
|
|
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#ICollection#Count">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.Count" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.ICollection.Count" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#ICollection#IsSynchronized">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#ICollection#SyncRoot">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IEnumerable#GetEnumerator">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</summary>
|
|
<returns>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#Add(System.Object)">
|
|
<summary>Adds an item to the <see cref="T:System.Collections.IList" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
|
|
<returns>The position into which the new element was inserted.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#Clear">
|
|
<summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#Contains(System.Object)">
|
|
<summary>Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#IndexOf(System.Object)">
|
|
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
|
|
<returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#Insert(System.Int32,System.Object)">
|
|
<summary>Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
|
|
<param name="value">The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#IList#IsFixedSize">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#IList#IsReadOnly">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#Collections#IList#Item(System.Int32)">
|
|
<summary>Gets or sets the element at the specified index.</summary>
|
|
<param name="index">The zero-based index of the element to get or set.</param>
|
|
<returns>The element at the specified index.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#Remove(System.Object)">
|
|
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#Collections#IList#RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Collections.IList" /> item at the specified index.</summary>
|
|
<param name="index">The zero-based index of the item to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>Adds the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to the indexes used for searching.</summary>
|
|
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add to the indexes used for searching.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#AddNew">
|
|
<summary>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</summary>
|
|
<returns>For a description of this member, see <see cref="M:System.ComponentModel.IBindingList.AddNew" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowEdit">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowEdit" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowNew">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowNew" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#AllowRemove">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.AllowRemove" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
|
|
<summary>Sorts the list based on a <see cref="T:System.ComponentModel.PropertyDescriptor" /> and a <see cref="T:System.ComponentModel.ListSortDirection" />.</summary>
|
|
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to sort by.</param>
|
|
<param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#Find(System.ComponentModel.PropertyDescriptor,System.Object)">
|
|
<summary>Returns the index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</summary>
|
|
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to search on.</param>
|
|
<param name="key">The value of the property parameter to search for.</param>
|
|
<returns>The index of the row that has the given <see cref="T:System.ComponentModel.PropertyDescriptor" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#IsSorted">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.IsSorted" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>Removes the <see cref="T:System.ComponentModel.PropertyDescriptor" /> from the indexes used for searching.</summary>
|
|
<param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the indexes used for searching.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#IBindingList#RemoveSort">
|
|
<summary>Removes any sort applied using <see cref="M:System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortDirection">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortDirection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SortProperty">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SortProperty" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsChangeNotification">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSearching">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSearching" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewManager.System#ComponentModel#IBindingList#SupportsSorting">
|
|
<summary>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</summary>
|
|
<returns>For a description of this member, see <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties on each item used to bind data.</summary>
|
|
<param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the collection as bindable. This can be <see langword="null" />.</param>
|
|
<returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the properties on each item used to bind data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.System#ComponentModel#ITypedList#GetListName(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>Returns the name of the list.</summary>
|
|
<param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects, for which the list name is returned. This can be <see langword="null" />.</param>
|
|
<returns>The name of the list.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewManager.TableCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)">
|
|
<summary>Raises a <see cref="E:System.Data.DataTableCollection.CollectionChanged" /> event when a <see cref="T:System.Data.DataTable" /> is added to or removed from the <see cref="T:System.Data.DataTableCollection" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.DataViewRowState">
|
|
<summary>Describes the version of data in a <see cref="T:System.Data.DataRow" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.Added">
|
|
<summary>A new row.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.CurrentRows">
|
|
<summary>Current rows including unchanged, new, and modified rows. By default, <see cref="T:System.Data.DataViewRowState" /> is set to CurrentRows.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.Deleted">
|
|
<summary>A deleted row.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.ModifiedCurrent">
|
|
<summary>A current version of original data that has been modified (see <see langword="ModifiedOriginal" />).</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.ModifiedOriginal">
|
|
<summary>The original version of the data that was modified. (Although the data has since been modified, it is available as <see langword="ModifiedCurrent" />).</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.None">
|
|
<summary>None.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.OriginalRows">
|
|
<summary>Original rows including unchanged and deleted rows.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DataViewRowState.Unchanged">
|
|
<summary>An unchanged row.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DataViewSetting">
|
|
<summary>Represents the default settings for <see cref="P:System.Data.DataView.ApplyDefaultSort" />, <see cref="P:System.Data.DataView.DataViewManager" />, <see cref="P:System.Data.DataView.RowFilter" />, <see cref="P:System.Data.DataView.RowStateFilter" />, <see cref="P:System.Data.DataView.Sort" />, and <see cref="P:System.Data.DataView.Table" /> for DataViews created from the <see cref="T:System.Data.DataViewManager" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.ApplyDefaultSort">
|
|
<summary>Gets or sets a value indicating whether to use the default sort.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the default sort is used; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.DataViewManager">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewManager" /> that contains this <see cref="T:System.Data.DataViewSetting" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataViewManager" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.RowFilter">
|
|
<summary>Gets or sets the filter to apply in the <see cref="T:System.Data.DataView" />. See <see cref="P:System.Data.DataView.RowFilter" /> for a code sample using RowFilter.</summary>
|
|
<returns>A string that contains the filter to apply.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.RowStateFilter">
|
|
<summary>Gets or sets a value indicating whether to display Current, Deleted, Modified Current, ModifiedOriginal, New, Original, Unchanged, or no rows in the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>A value that indicates which rows to display.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.Sort">
|
|
<summary>Gets or sets a value indicating the sort to apply in the <see cref="T:System.Data.DataView" />.</summary>
|
|
<returns>The sort to apply in the <see cref="T:System.Data.DataView" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSetting.Table">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> to which the <see cref="T:System.Data.DataViewSetting" /> properties apply.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DataViewSettingCollection">
|
|
<summary>Contains a read-only collection of <see cref="T:System.Data.DataViewSetting" /> objects for each <see cref="T:System.Data.DataTable" /> in a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
|
|
<param name="ar">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
|
|
<param name="index">The index of the array at which to start inserting.</param>
|
|
</member>
|
|
<member name="M:System.Data.DataViewSettingCollection.CopyTo(System.Data.DataViewSetting[],System.Int32)">
|
|
<summary>Copies the collection objects to a one-dimensional <see cref="T:System.Array" /> instance starting at the specified index.</summary>
|
|
<param name="ar">The one-dimensional <see cref="T:System.Array" /> that is the destination of the values copied from the collection.</param>
|
|
<param name="index">The index of the array at which to start inserting.</param>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.Count">
|
|
<summary>Gets the number of <see cref="T:System.Data.DataViewSetting" /> objects in the <see cref="T:System.Data.DataViewSettingCollection" />.</summary>
|
|
<returns>The number of <see cref="T:System.Data.DataViewSetting" /> objects in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.DataViewSettingCollection.GetEnumerator">
|
|
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for the collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.DataViewSettingCollection" /> is read-only.</summary>
|
|
<returns>Always returns <see langword="true" /> to indicate the collection is read-only.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.IsSynchronized">
|
|
<summary>Gets a value that indicates whether access to the <see cref="T:System.Data.DataViewSettingCollection" /> is synchronized (thread-safe).</summary>
|
|
<returns>This property is always <see langword="false" />, unless overridden by a derived class.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.Item(System.Data.DataTable)">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewSetting" /> objects of the specified <see cref="T:System.Data.DataTable" /> from the collection.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewSetting" /> objects of the <see cref="T:System.Data.DataTable" /> specified by its index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.DataViewSetting" /> of the <see cref="T:System.Data.DataTable" /> specified by its name.</summary>
|
|
<param name="tableName">The name of the <see cref="T:System.Data.DataTable" /> to find.</param>
|
|
<returns>A collection of <see cref="T:System.Data.DataViewSetting" /> objects.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DataViewSettingCollection.SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Data.DataViewSettingCollection" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DBConcurrencyException">
|
|
<summary>The exception that is thrown by the <see cref="T:System.Data.Common.DataAdapter" /> during an insert, update, or delete operation if the number of rows affected equals zero.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
|
|
<param name="message">The text string describing the details of the exception.</param>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
|
|
<param name="message">The text string describing the details of the exception.</param>
|
|
<param name="inner">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.#ctor(System.String,System.Exception,System.Data.DataRow[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DBConcurrencyException" /> class.</summary>
|
|
<param name="message">The error message that explains the reason for this exception.</param>
|
|
<param name="inner">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
<param name="dataRows">An array containing the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception.</param>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[])">
|
|
<summary>Copies the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow" /> objects.</summary>
|
|
<param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow" /> objects to copy the <see cref="T:System.Data.DataRow" /> objects into.</param>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.CopyToRows(System.Data.DataRow[],System.Int32)">
|
|
<summary>Copies the <see cref="T:System.Data.DataRow" /> objects whose update failure generated this exception, to the specified array of <see cref="T:System.Data.DataRow" /> objects, starting at the specified destination array index.</summary>
|
|
<param name="array">The one-dimensional array of <see cref="T:System.Data.DataRow" /> objects to copy the <see cref="T:System.Data.DataRow" /> objects into.</param>
|
|
<param name="arrayIndex">The destination array index to start copying into.</param>
|
|
</member>
|
|
<member name="M:System.Data.DBConcurrencyException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Populates the aprcified serialization information object with the data needed to serialize the <see cref="T:System.Data.DBConcurrencyException" />.</summary>
|
|
<param name="si">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data associated with the <see cref="T:System.Data.DBConcurrencyException" />.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DBConcurrencyException" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.DBConcurrencyException.Row">
|
|
<summary>Gets or sets the value of the <see cref="T:System.Data.DataRow" /> that generated the <see cref="T:System.Data.DBConcurrencyException" />.</summary>
|
|
<returns>The value of the <see cref="T:System.Data.DataRow" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.DBConcurrencyException.RowCount">
|
|
<summary>Gets the number of rows whose update failed, generating this exception.</summary>
|
|
<returns>An integer containing a count of the number of rows whose update failed.</returns>
|
|
</member>
|
|
<member name="T:System.Data.DbType">
|
|
<summary>Specifies the data type of a field, a property, or a <see langword="Parameter" /> object of a .NET Framework data provider.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.AnsiString">
|
|
<summary>A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.AnsiStringFixedLength">
|
|
<summary>A fixed-length stream of non-Unicode characters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Binary">
|
|
<summary>A variable-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Boolean">
|
|
<summary>A simple type representing Boolean values of <see langword="true" /> or <see langword="false" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Byte">
|
|
<summary>An 8-bit unsigned integer ranging in value from 0 to 255.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Currency">
|
|
<summary>A currency value ranging from -2 63 (or -922,337,203,685,477.5808) to 2 63 -1 (or +922,337,203,685,477.5807) with an accuracy to a ten-thousandth of a currency unit.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Date">
|
|
<summary>A type representing a date value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.DateTime">
|
|
<summary>A type representing a date and time value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.DateTime2">
|
|
<summary>Date and time data. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.DateTimeOffset">
|
|
<summary>Date and time data with time zone awareness. Date value range is from January 1,1 AD through December 31, 9999 AD. Time value range is 00:00:00 through 23:59:59.9999999 with an accuracy of 100 nanoseconds. Time zone value range is -14:00 through +14:00.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Decimal">
|
|
<summary>A simple type representing values ranging from 1.0 x 10 -28 to approximately 7.9 x 10 28 with 28-29 significant digits.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Double">
|
|
<summary>A floating point type representing values ranging from approximately 5.0 x 10 -324 to 1.7 x 10 308 with a precision of 15-16 digits.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Guid">
|
|
<summary>A globally unique identifier (or GUID).</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Int16">
|
|
<summary>An integral type representing signed 16-bit integers with values between -32768 and 32767.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Int32">
|
|
<summary>An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Int64">
|
|
<summary>An integral type representing signed 64-bit integers with values between -9223372036854775808 and 9223372036854775807.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Object">
|
|
<summary>A general type representing any reference or value type not explicitly represented by another <see langword="DbType" /> value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.SByte">
|
|
<summary>An integral type representing signed 8-bit integers with values between -128 and 127.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Single">
|
|
<summary>A floating point type representing values ranging from approximately 1.5 x 10 -45 to 3.4 x 10 38 with a precision of 7 digits.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.String">
|
|
<summary>A type representing Unicode character strings.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.StringFixedLength">
|
|
<summary>A fixed-length string of Unicode characters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Time">
|
|
<summary>A type representing a SQL Server <see langword="DateTime" /> value. If you want to use a SQL Server <see langword="time" /> value, use <see cref="F:System.Data.SqlDbType.Time" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.UInt16">
|
|
<summary>An integral type representing unsigned 16-bit integers with values between 0 and 65535.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.UInt32">
|
|
<summary>An integral type representing unsigned 32-bit integers with values between 0 and 4294967295.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.UInt64">
|
|
<summary>An integral type representing unsigned 64-bit integers with values between 0 and 18446744073709551615.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.VarNumeric">
|
|
<summary>A variable-length numeric value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.DbType.Xml">
|
|
<summary>A parsed representation of an XML document or fragment.</summary>
|
|
</member>
|
|
<member name="T:System.Data.DeletedRowInaccessibleException">
|
|
<summary>Represents the exception that is thrown when an action is tried on a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DeletedRowInaccessibleException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.DeletedRowInaccessibleException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.DuplicateNameException">
|
|
<summary>Represents the exception that is thrown when a duplicate database object name is encountered during an add operation in a <see cref="T:System.Data.DataSet" /> -related object.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DuplicateNameException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.DuplicateNameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.DuplicateNameException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.DuplicateNameException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with the specified string and exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.EvaluateException">
|
|
<summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression" /> property of a <see cref="T:System.Data.DataColumn" /> cannot be evaluated.</summary>
|
|
</member>
|
|
<member name="M:System.Data.EvaluateException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.EvaluateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a particular serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.EvaluateException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.EvaluateException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.FillErrorEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.Common.DataAdapter.FillError" /> event of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.FillErrorEventArgs.#ctor(System.Data.DataTable,System.Object[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.FillErrorEventArgs" /> class.</summary>
|
|
<param name="dataTable">The <see cref="T:System.Data.DataTable" /> being updated.</param>
|
|
<param name="values">The values for the row being updated.</param>
|
|
</member>
|
|
<member name="P:System.Data.FillErrorEventArgs.Continue">
|
|
<summary>Gets or sets a value indicating whether to continue the fill operation despite the error.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the fill operation should continue; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.FillErrorEventArgs.DataTable">
|
|
<summary>Gets the <see cref="T:System.Data.DataTable" /> being updated when the error occurred.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> being updated.</returns>
|
|
</member>
|
|
<member name="P:System.Data.FillErrorEventArgs.Errors">
|
|
<summary>Gets the errors being handled.</summary>
|
|
<returns>The errors being handled.</returns>
|
|
</member>
|
|
<member name="P:System.Data.FillErrorEventArgs.Values">
|
|
<summary>Gets the values for the row being updated when the error occurred.</summary>
|
|
<returns>The values for the row being updated.</returns>
|
|
</member>
|
|
<member name="T:System.Data.FillErrorEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.Common.DataAdapter.FillError" /> event.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.FillErrorEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.ForeignKeyConstraint">
|
|
<summary>Represents an action restriction enforced on a set of columns in a primary key/foreign key relationship when a value or row is either deleted or updated.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn,System.Data.DataColumn)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified name, parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="constraintName">The name of the constraint.</param>
|
|
<param name="parentColumn">The parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<param name="childColumn">The child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.Data.DataColumn[],System.Data.DataColumn[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> class with the specified name, and arrays of parent and child <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="constraintName">The name of the <see cref="T:System.Data.ForeignKeyConstraint" />. If <see langword="null" /> or empty string, a default name will be given when added to the constraints collection.</param>
|
|
<param name="parentColumns">An array of parent <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<param name="childColumns">An array of child <see cref="T:System.Data.DataColumn" /> in the constraint.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.String,System.String,System.String[],System.String[],System.Data.AcceptRejectRule,System.Data.Rule,System.Data.Rule)">
|
|
<summary>This constructor is provided for design time support in the Visual Studio environment. <see cref="T:System.Data.ForeignKeyConstraint" /> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])" />. Tables and columns with the specified names must exist at the time the method is called, or if <see cref="M:System.Data.DataTable.BeginInit" /> has been called prior to calling this constructor, the tables and columns with the specified names must exist at the time that <see cref="M:System.Data.DataTable.EndInit" /> is called.</summary>
|
|
<param name="constraintName">The name of the constraint.</param>
|
|
<param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable" /> that contains parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="parentTableNamespace">The name of the <see cref="P:System.Data.DataTable.Namespace" />.</param>
|
|
<param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, <see langword="Cascade" />, and <see langword="Default" />.</param>
|
|
<param name="deleteRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is deleted. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
|
|
<param name="updateRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is updated. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.#ctor(System.String,System.String,System.String[],System.String[],System.Data.AcceptRejectRule,System.Data.Rule,System.Data.Rule)">
|
|
<summary>This constructor is provided for design time support in the Visual Studio environment. <see cref="T:System.Data.ForeignKeyConstraint" /> objects created by using this constructor must then be added to the collection via <see cref="M:System.Data.ConstraintCollection.AddRange(System.Data.Constraint[])" />. Tables and columns with the specified names must exist at the time the method is called, or if <see cref="M:System.Data.DataTable.BeginInit" /> has been called prior to calling this constructor, the tables and columns with the specified names must exist at the time that <see cref="M:System.Data.DataTable.EndInit" /> is called.</summary>
|
|
<param name="constraintName">The name of the constraint.</param>
|
|
<param name="parentTableName">The name of the parent <see cref="T:System.Data.DataTable" /> that contains parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="parentColumnNames">An array of the names of parent <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="childColumnNames">An array of the names of child <see cref="T:System.Data.DataColumn" /> objects in the constraint.</param>
|
|
<param name="acceptRejectRule">One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, <see langword="Cascade" />, and <see langword="Default" />.</param>
|
|
<param name="deleteRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is deleted. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
|
|
<param name="updateRule">One of the <see cref="T:System.Data.Rule" /> values to use when a row is updated. The default is <see langword="Cascade" />. Possible values include: <see langword="None" />, <see langword="Cascade" />, <see langword="SetNull" />, <see langword="SetDefault" />, and <see langword="Default" />.</param>
|
|
<exception cref="T:System.ArgumentNullException">One or both of the columns is <see langword="null" />.</exception>
|
|
<exception cref="T:System.Data.InvalidConstraintException">The columns have different data types.
|
|
-Or -
|
|
The tables don't belong to the same <see cref="T:System.Data.DataSet" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.AcceptRejectRule">
|
|
<summary>Indicates the action that should take place across this constraint when <see cref="M:System.Data.DataTable.AcceptChanges" /> is invoked.</summary>
|
|
<returns>One of the <see cref="T:System.Data.AcceptRejectRule" /> values. Possible values include <see langword="None" />, and <see langword="Cascade" />. The default is <see langword="None" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.Columns">
|
|
<summary>Gets the child columns of this constraint.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the child columns of the constraint.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.DeleteRule">
|
|
<summary>Gets or sets the action that occurs across this constraint when a row is deleted.</summary>
|
|
<returns>One of the <see cref="T:System.Data.Rule" /> values. The default is <see langword="Cascade" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.Equals(System.Object)">
|
|
<summary>Gets a value indicating whether the current <see cref="T:System.Data.ForeignKeyConstraint" /> is identical to the specified object.</summary>
|
|
<param name="key">The object to which this <see cref="T:System.Data.ForeignKeyConstraint" /> is compared. Two <see cref="T:System.Data.ForeignKeyConstraint" /> are equal if they constrain the same columns.</param>
|
|
<returns>
|
|
<see langword="true" />, if the objects are identical; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ForeignKeyConstraint.GetHashCode">
|
|
<summary>Gets the hash code of this instance of the <see cref="T:System.Data.ForeignKeyConstraint" /> object.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.RelatedColumns">
|
|
<summary>The parent columns of this constraint.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects that are the parent columns of the constraint.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.RelatedTable">
|
|
<summary>Gets the parent table of this constraint.</summary>
|
|
<returns>The parent <see cref="T:System.Data.DataTable" /> of this constraint.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.Table">
|
|
<summary>Gets the child table of this constraint.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that is the child table in the constraint.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ForeignKeyConstraint.UpdateRule">
|
|
<summary>Gets or sets the action that occurs across this constraint on when a row is updated.</summary>
|
|
<returns>One of the <see cref="T:System.Data.Rule" /> values. The default is <see langword="Cascade" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IColumnMapping">
|
|
<summary>Associates a data source column with a <see cref="T:System.Data.DataSet" /> column, and is implemented by the <see cref="T:System.Data.Common.DataColumnMapping" /> class, which is used in common by .NET Framework data providers.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IColumnMapping.DataSetColumn">
|
|
<summary>Gets or sets the name of the column within the <see cref="T:System.Data.DataSet" /> to map to.</summary>
|
|
<returns>The name of the column within the <see cref="T:System.Data.DataSet" /> to map to. The name is not case sensitive.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IColumnMapping.SourceColumn">
|
|
<summary>Gets or sets the name of the column within the data source to map from. The name is case-sensitive.</summary>
|
|
<returns>The case-sensitive name of the column in the data source.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IColumnMappingCollection">
|
|
<summary>Contains a collection of DataColumnMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataColumnMappingCollection" />, which is used in common by .NET Framework data providers.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IColumnMappingCollection.Add(System.String,System.String)">
|
|
<summary>Adds a ColumnMapping object to the ColumnMapping collection using the source column and <see cref="T:System.Data.DataSet" /> column names.</summary>
|
|
<param name="sourceColumnName">The case-sensitive name of the source column.</param>
|
|
<param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column.</param>
|
|
<returns>The ColumnMapping object that was added to the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IColumnMappingCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether the <see cref="T:System.Data.Common.DataColumnMappingCollection" /> contains a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name.</summary>
|
|
<param name="sourceColumnName">The case-sensitive name of the source column.</param>
|
|
<returns>
|
|
<see langword="true" /> if a <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name exists, otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IColumnMappingCollection.GetByDataSetColumn(System.String)">
|
|
<summary>Gets the ColumnMapping object with the specified <see cref="T:System.Data.DataSet" /> column name.</summary>
|
|
<param name="dataSetColumnName">The name of the <see cref="T:System.Data.DataSet" /> column within the collection.</param>
|
|
<returns>The ColumnMapping object with the specified <see langword="DataSet" /> column name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IColumnMappingCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.Common.DataColumnMapping" /> object with the specified source column name. The name is case-sensitive.</summary>
|
|
<param name="sourceColumnName">The case-sensitive name of the source column.</param>
|
|
<returns>The zero-based location of the <see langword="DataColumnMapping" /> object with the specified source column name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IColumnMappingCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</summary>
|
|
<param name="index">The <see langword="SourceColumn" /> name of the <see langword="IColumnMapping" /> object to find.</param>
|
|
<returns>The <see langword="IColumnMapping" /> object with the specified <see langword="SourceColumn" /> name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IColumnMappingCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.IColumnMapping" /> object with the specified <see cref="P:System.Data.IColumnMapping.SourceColumn" /> name from the collection.</summary>
|
|
<param name="sourceColumnName">The case-sensitive <see langword="SourceColumn" /> name.</param>
|
|
<exception cref="T:System.IndexOutOfRangeException">A <see cref="T:System.Data.Common.DataColumnMapping" /> object does not exist with the specified <see langword="SourceColumn" /> name.</exception>
|
|
</member>
|
|
<member name="T:System.Data.IDataAdapter">
|
|
<summary>Allows an object to implement a DataAdapter, and represents a set of methods and mapping action-related properties that are used to fill and update a <see cref="T:System.Data.DataSet" /> and update a data source.
|
|
<see cref="T:System.Data.IDbDataAdapter" /> instances are for data sources that are (or resemble) relational databases with textual commands (like Transact-SQL), while <see cref="T:System.Data.IDataAdapter" /> instances could can use any type of data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDataAdapter.Fill(System.Data.DataSet)">
|
|
<summary>Adds or updates rows in the <see cref="T:System.Data.DataSet" /> to match those in the data source using the <see cref="T:System.Data.DataSet" /> name, and creates a <see cref="T:System.Data.DataTable" /> named "Table".</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if necessary, schema.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)">
|
|
<summary>Adds a <see cref="T:System.Data.DataTable" /> named "Table" to the specified <see cref="T:System.Data.DataSet" /> and configures the schema to match that in the data source based on the specified <see cref="T:System.Data.SchemaType" />.</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> to be filled with the schema from the data source.</param>
|
|
<param name="schemaType">One of the <see cref="T:System.Data.SchemaType" /> values.</param>
|
|
<returns>An array of <see cref="T:System.Data.DataTable" /> objects that contain schema information returned from the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataAdapter.GetFillParameters">
|
|
<summary>Gets the parameters set by the user when executing an SQL SELECT statement.</summary>
|
|
<returns>An array of <see cref="T:System.Data.IDataParameter" /> objects that contains the parameters set by the user.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataAdapter.MissingMappingAction">
|
|
<summary>Indicates or specifies whether unmapped source tables or columns are passed with their source names in order to be filtered or to raise an error.</summary>
|
|
<returns>One of the <see cref="T:System.Data.MissingMappingAction" /> values. The default is <see langword="Passthrough" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingMappingAction" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataAdapter.MissingSchemaAction">
|
|
<summary>Indicates or specifies whether missing source tables, columns, and their relationships are added to the dataset schema, ignored, or cause an error to be raised.</summary>
|
|
<returns>One of the <see cref="T:System.Data.MissingSchemaAction" /> values. The default is <see langword="Add" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value set is not one of the <see cref="T:System.Data.MissingSchemaAction" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataAdapter.TableMappings">
|
|
<summary>Indicates how a source table is mapped to a dataset table.</summary>
|
|
<returns>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataAdapter.Update(System.Data.DataSet)">
|
|
<summary>Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified <see cref="T:System.Data.DataSet" /> from a <see cref="T:System.Data.DataTable" /> named "Table".</summary>
|
|
<param name="dataSet">The <see cref="T:System.Data.DataSet" /> used to update the data source.</param>
|
|
<returns>The number of rows successfully updated from the <see cref="T:System.Data.DataSet" />.</returns>
|
|
<exception cref="T:System.Data.DBConcurrencyException">An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.</exception>
|
|
</member>
|
|
<member name="T:System.Data.IDataParameter">
|
|
<summary>Represents a parameter to a Command object, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns; and is implemented by .NET Framework data providers that access data sources.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.DbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.String" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.Direction">
|
|
<summary>Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.IsNullable">
|
|
<summary>Gets a value indicating whether the parameter accepts null values.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null values are accepted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.ParameterName">
|
|
<summary>Gets or sets the name of the <see cref="T:System.Data.IDataParameter" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.IDataParameter" />. The default is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.SourceColumn">
|
|
<summary>Gets or sets the name of the source column that is mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.IDataParameter.Value" />.</summary>
|
|
<returns>The name of the source column that is mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.SourceVersion">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when loading <see cref="P:System.Data.IDataParameter.Value" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set one of the <see cref="T:System.Data.DataRowVersion" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameter.Value">
|
|
<summary>Gets or sets the value of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IDataParameterCollection">
|
|
<summary>Collects all parameters relevant to a Command object and their mappings to <see cref="T:System.Data.DataSet" /> columns, and is implemented by .NET Framework data providers that access data sources.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDataParameterCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether a parameter in the collection has the specified name.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains the parameter; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataParameterCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.IDataParameter" /> within the collection.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<returns>The zero-based location of the <see cref="T:System.Data.IDataParameter" /> within the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataParameterCollection.Item(System.String)">
|
|
<summary>Gets or sets the parameter at the specified index.</summary>
|
|
<param name="parameterName">The name of the parameter to retrieve.</param>
|
|
<returns>An <see cref="T:System.Object" /> at the specified index.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataParameterCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.IDataParameter" /> from the collection.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
</member>
|
|
<member name="T:System.Data.IDataReader">
|
|
<summary>Provides a means of reading one or more forward-only streams of result sets obtained by executing a command at a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDataReader.Close">
|
|
<summary>Closes the <see cref="T:System.Data.IDataReader" /> Object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDataReader.Depth">
|
|
<summary>Gets a value indicating the depth of nesting for the current row.</summary>
|
|
<returns>The level of nesting.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataReader.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.IDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.IDataReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataReader.IsClosed">
|
|
<summary>Gets a value indicating whether the data reader is closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the data reader is closed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataReader.NextResult">
|
|
<summary>Advances the data reader to the next result, when reading the results of batch SQL statements.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataReader.Read">
|
|
<summary>Advances the <see cref="T:System.Data.IDataReader" /> to the next record.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDataReader.RecordsAffected">
|
|
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IDataRecord">
|
|
<summary>Provides access to the column values within each row for a <see langword="DataReader" />, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDataRecord.FieldCount">
|
|
<summary>Gets the number of columns in the current row.</summary>
|
|
<returns>When not positioned in a valid recordset, 0; otherwise, the number of columns in the current record. The default is -1.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetBoolean(System.Int32)">
|
|
<summary>Gets the value of the specified column as a Boolean.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetByte(System.Int32)">
|
|
<summary>Gets the 8-bit unsigned integer value of the specified column.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The 8-bit unsigned integer value of the specified column.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<param name="fieldOffset">The index within the field from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferoffset">The index for <paramref name="buffer" /> to start the read operation.</param>
|
|
<param name="length">The number of bytes to read.</param>
|
|
<returns>The actual number of bytes read.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetChar(System.Int32)">
|
|
<summary>Gets the character value of the specified column.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The character value of the specified column.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<param name="fieldoffset">The index within the row from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferoffset">The index for <paramref name="buffer" /> to start the read operation.</param>
|
|
<param name="length">The number of bytes to read.</param>
|
|
<returns>The actual number of characters read.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetData(System.Int32)">
|
|
<summary>Returns an <see cref="T:System.Data.IDataReader" /> for the specified column ordinal.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The <see cref="T:System.Data.IDataReader" /> for the specified column ordinal.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetDataTypeName(System.Int32)">
|
|
<summary>Gets the data type information for the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The data type information for the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetDateTime(System.Int32)">
|
|
<summary>Gets the date and time data value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The date and time data value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetDecimal(System.Int32)">
|
|
<summary>Gets the fixed-position numeric value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The fixed-position numeric value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetDouble(System.Int32)">
|
|
<summary>Gets the double-precision floating point number of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The double-precision floating point number of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetFieldType(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Type" /> information corresponding to the type of <see cref="T:System.Object" /> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)" />.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The <see cref="T:System.Type" /> information corresponding to the type of <see cref="T:System.Object" /> that would be returned from <see cref="M:System.Data.IDataRecord.GetValue(System.Int32)" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetFloat(System.Int32)">
|
|
<summary>Gets the single-precision floating point number of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The single-precision floating point number of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetGuid(System.Int32)">
|
|
<summary>Returns the GUID value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The GUID value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetInt16(System.Int32)">
|
|
<summary>Gets the 16-bit signed integer value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The 16-bit signed integer value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetInt32(System.Int32)">
|
|
<summary>Gets the 32-bit signed integer value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The 32-bit signed integer value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetInt64(System.Int32)">
|
|
<summary>Gets the 64-bit signed integer value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The 64-bit signed integer value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetName(System.Int32)">
|
|
<summary>Gets the name for the field to find.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The name of the field or the empty string (""), if there is no value to return.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetOrdinal(System.String)">
|
|
<summary>Return the index of the named field.</summary>
|
|
<param name="name">The name of the field to find.</param>
|
|
<returns>The index of the named field.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetString(System.Int32)">
|
|
<summary>Gets the string value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The string value of the specified field.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetValue(System.Int32)">
|
|
<summary>Return the value of the specified field.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>The <see cref="T:System.Object" /> which will contain the field value upon return.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.GetValues(System.Object[])">
|
|
<summary>Populates an array of objects with the column values of the current record.</summary>
|
|
<param name="values">An array of <see cref="T:System.Object" /> to copy the attribute fields into.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDataRecord.IsDBNull(System.Int32)">
|
|
<summary>Return whether the specified field is set to null.</summary>
|
|
<param name="i">The index of the field to find.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified field is set to null; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataRecord.Item(System.Int32)">
|
|
<summary>Gets the column located at the specified index.</summary>
|
|
<param name="i">The zero-based index of the column to get.</param>
|
|
<returns>The column located at the specified index as an <see cref="T:System.Object" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDataRecord.Item(System.String)">
|
|
<summary>Gets the column with the specified name.</summary>
|
|
<param name="name">The name of the column to find.</param>
|
|
<returns>The column with the specified name as an <see cref="T:System.Object" />.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found.</exception>
|
|
</member>
|
|
<member name="T:System.Data.IDbCommand">
|
|
<summary>Represents an SQL statement that is executed while connected to a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.Cancel">
|
|
<summary>Attempts to cancels the execution of an <see cref="T:System.Data.IDbCommand" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.CommandText">
|
|
<summary>Gets or sets the text command to run against the data source.</summary>
|
|
<returns>The text command to execute. The default value is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.CommandTimeout">
|
|
<summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
|
|
<returns>The time (in seconds) to wait for the command to execute. The default value is 30 seconds.</returns>
|
|
<exception cref="T:System.ArgumentException">The property value assigned is less than 0.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.CommandType">
|
|
<summary>Indicates or specifies how the <see cref="P:System.Data.IDbCommand.CommandText" /> property is interpreted.</summary>
|
|
<returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used by this instance of the <see cref="T:System.Data.IDbCommand" />.</summary>
|
|
<returns>The connection to the data source.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.CreateParameter">
|
|
<summary>Creates a new instance of an <see cref="T:System.Data.IDbDataParameter" /> object.</summary>
|
|
<returns>An <see langword="IDbDataParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.ExecuteNonQuery">
|
|
<summary>Executes an SQL statement against the <see langword="Connection" /> object of a .NET Framework data provider, and returns the number of rows affected.</summary>
|
|
<returns>The number of rows affected.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection does not exist.
|
|
-or-
|
|
The connection is not open.</exception>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.ExecuteReader">
|
|
<summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" /> and builds an <see cref="T:System.Data.IDataReader" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" />, and builds an <see cref="T:System.Data.IDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.ExecuteScalar">
|
|
<summary>Executes the query, and returns the first column of the first row in the resultset returned by the query. Extra columns or rows are ignored.</summary>
|
|
<returns>The first column of the first row in the resultset.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.Parameters">
|
|
<summary>Gets the <see cref="T:System.Data.IDataParameterCollection" />.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbCommand.Prepare">
|
|
<summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not set.
|
|
-or-
|
|
The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not <see cref="M:System.Data.OleDb.OleDbConnection.Open" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.Transaction">
|
|
<summary>Gets or sets the transaction within which the <see langword="Command" /> object of a .NET Framework data provider executes.</summary>
|
|
<returns>the <see langword="Command" /> object of a .NET Framework data provider executes. The default value is <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbCommand.UpdatedRowSource">
|
|
<summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the <see cref="M:System.Data.IDataAdapter.Update(System.Data.DataSet)" /> method of a <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values. The default is <see langword="Both" /> unless the command is automatically generated. Then the default is <see langword="None" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value entered was not one of the <see cref="T:System.Data.UpdateRowSource" /> values.</exception>
|
|
</member>
|
|
<member name="T:System.Data.IDbConnection">
|
|
<summary>Represents an open connection to a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.BeginTransaction">
|
|
<summary>Begins a database transaction.</summary>
|
|
<returns>An object representing the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.BeginTransaction(System.Data.IsolationLevel)">
|
|
<summary>Begins a database transaction with the specified <see cref="T:System.Data.IsolationLevel" /> value.</summary>
|
|
<param name="il">One of the <see cref="T:System.Data.IsolationLevel" /> values.</param>
|
|
<returns>An object representing the new transaction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.ChangeDatabase(System.String)">
|
|
<summary>Changes the current database for an open <see langword="Connection" /> object.</summary>
|
|
<param name="databaseName">The name of the database to use in place of the current database.</param>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.Close">
|
|
<summary>Closes the connection to the database.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDbConnection.ConnectionString">
|
|
<summary>Gets or sets the string used to open a database.</summary>
|
|
<returns>A string containing connection settings.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbConnection.ConnectionTimeout">
|
|
<summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.</summary>
|
|
<returns>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.CreateCommand">
|
|
<summary>Creates and returns a Command object associated with the connection.</summary>
|
|
<returns>A Command object associated with the connection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbConnection.Database">
|
|
<summary>Gets the name of the current database or the database to be used after a connection is opened.</summary>
|
|
<returns>The name of the current database or the name of the database to be used once a connection is open. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbConnection.Open">
|
|
<summary>Opens a database connection with the settings specified by the <see langword="ConnectionString" /> property of the provider-specific Connection object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDbConnection.State">
|
|
<summary>Gets the current state of the connection.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IDbDataAdapter">
|
|
<summary>Represents a set of command-related properties that are used to fill the <see cref="T:System.Data.DataSet" /> and update a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataAdapter.DeleteCommand">
|
|
<summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataAdapter.InsertCommand">
|
|
<summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataAdapter.SelectCommand">
|
|
<summary>Gets or sets an SQL statement used to select records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataAdapter.UpdateCommand">
|
|
<summary>Gets or sets an SQL statement used to update records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IDbDataParameter">
|
|
<summary>Used by the Visual Basic .NET Data Designers to represent a parameter to a Command object, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns.</summary>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataParameter.Precision">
|
|
<summary>Indicates the precision of numeric parameters.</summary>
|
|
<returns>The maximum number of digits used to represent the Value property of a data provider Parameter object. The default value is 0, which indicates that a data provider sets the precision for Value.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataParameter.Scale">
|
|
<summary>Indicates the scale of numeric parameters.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved. The default is 0.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbDataParameter.Size">
|
|
<summary>The size of the parameter.</summary>
|
|
<returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
|
|
</member>
|
|
<member name="T:System.Data.IDbTransaction">
|
|
<summary>Represents a transaction to be performed at a data source, and is implemented by .NET Framework data providers that access relational databases.</summary>
|
|
</member>
|
|
<member name="M:System.Data.IDbTransaction.Commit">
|
|
<summary>Commits the database transaction.</summary>
|
|
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
|
|
-or-
|
|
The connection is broken.</exception>
|
|
</member>
|
|
<member name="P:System.Data.IDbTransaction.Connection">
|
|
<summary>Specifies the Connection object to associate with the transaction.</summary>
|
|
<returns>The Connection object to associate with the transaction.</returns>
|
|
</member>
|
|
<member name="P:System.Data.IDbTransaction.IsolationLevel">
|
|
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default is <see langword="ReadCommitted" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.IDbTransaction.Rollback">
|
|
<summary>Rolls back a transaction from a pending state.</summary>
|
|
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
|
|
-or-
|
|
The connection is broken.</exception>
|
|
</member>
|
|
<member name="T:System.Data.InRowChangingEventException">
|
|
<summary>Represents the exception that is thrown when you call the <see cref="M:System.Data.DataRow.EndEdit" /> method within the <see cref="E:System.Data.DataTable.RowChanging" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InRowChangingEventException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InRowChangingEventException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.InRowChangingEventException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.InRowChangingEventException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.InternalDataCollectionBase">
|
|
<summary>Provides the base functionality for creating collections.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InternalDataCollectionBase.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InternalDataCollectionBase" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InternalDataCollectionBase.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.InternalDataCollectionBase" /> to a one-dimensional <see cref="T:System.Array" />, starting at the specified <see cref="T:System.Data.InternalDataCollectionBase" /> index.</summary>
|
|
<param name="ar">The one-dimensional <see cref="T:System.Array" /> to copy the current <see cref="T:System.Data.InternalDataCollectionBase" /> object's elements into.</param>
|
|
<param name="index">The destination <see cref="T:System.Array" /> index to start copying into.</param>
|
|
</member>
|
|
<member name="P:System.Data.InternalDataCollectionBase.Count">
|
|
<summary>Gets the total number of elements in a collection.</summary>
|
|
<returns>The total number of elements in a collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.InternalDataCollectionBase.GetEnumerator">
|
|
<summary>Gets an <see cref="T:System.Collections.IEnumerator" /> for the collection.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.InternalDataCollectionBase.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.InternalDataCollectionBase.IsSynchronized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.InternalDataCollectionBase" /> is synchonized.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the collection is synchronized; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.InternalDataCollectionBase.List">
|
|
<summary>Gets the items of the collection as a list.</summary>
|
|
<returns>An <see cref="T:System.Collections.ArrayList" /> that contains the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.InternalDataCollectionBase.SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize the collection.</summary>
|
|
<returns>The <see cref="T:System.Object" /> used to synchronize the collection.</returns>
|
|
</member>
|
|
<member name="T:System.Data.InvalidConstraintException">
|
|
<summary>Represents the exception that is thrown when incorrectly trying to create or access a relation.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InvalidConstraintException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InvalidConstraintException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.InvalidConstraintException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.InvalidConstraintException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.InvalidExpressionException">
|
|
<summary>Represents the exception that is thrown when you try to add a <see cref="T:System.Data.DataColumn" /> that contains an invalid <see cref="P:System.Data.DataColumn.Expression" /> to a <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InvalidExpressionException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.InvalidExpressionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a given serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.InvalidExpressionException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.InvalidExpressionException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.IsolationLevel">
|
|
<summary>Specifies the transaction locking behavior for the connection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.Chaos">
|
|
<summary>The pending changes from more highly isolated transactions cannot be overwritten.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.ReadCommitted">
|
|
<summary>Shared locks are held while the data is being read to avoid dirty reads, but the data can be changed before the end of the transaction, resulting in non-repeatable reads or phantom data.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.ReadUncommitted">
|
|
<summary>A dirty read is possible, meaning that no shared locks are issued and no exclusive locks are honored.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.RepeatableRead">
|
|
<summary>Locks are placed on all data that is used in a query, preventing other users from updating the data. Prevents non-repeatable reads but phantom rows are still possible.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.Serializable">
|
|
<summary>A range lock is placed on the <see cref="T:System.Data.DataSet" />, preventing other users from updating or inserting rows into the dataset until the transaction is complete.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.Snapshot">
|
|
<summary>Reduces blocking by storing a version of data that one application can read while another is modifying the same data. Indicates that from one transaction you cannot see changes made in other transactions, even if you requery.</summary>
|
|
</member>
|
|
<member name="F:System.Data.IsolationLevel.Unspecified">
|
|
<summary>A different isolation level than the one specified is being used, but the level cannot be determined.</summary>
|
|
</member>
|
|
<member name="T:System.Data.ITableMapping">
|
|
<summary>Associates a source table with a table in a <see cref="T:System.Data.DataSet" />, and is implemented by the <see cref="T:System.Data.Common.DataTableMapping" /> class, which is used in common by .NET Framework data providers.</summary>
|
|
</member>
|
|
<member name="P:System.Data.ITableMapping.ColumnMappings">
|
|
<summary>Gets the derived <see cref="T:System.Data.Common.DataColumnMappingCollection" /> for the <see cref="T:System.Data.DataTable" />.</summary>
|
|
<returns>A collection of data column mappings.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ITableMapping.DataSetTable">
|
|
<summary>Gets or sets the case-insensitive name of the table within the <see cref="T:System.Data.DataSet" />.</summary>
|
|
<returns>The case-insensitive name of the table within the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ITableMapping.SourceTable">
|
|
<summary>Gets or sets the case-sensitive name of the source table.</summary>
|
|
<returns>The case-sensitive name of the source table.</returns>
|
|
</member>
|
|
<member name="T:System.Data.ITableMappingCollection">
|
|
<summary>Contains a collection of TableMapping objects, and is implemented by the <see cref="T:System.Data.Common.DataTableMappingCollection" />, which is used in common by .NET Framework data providers.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ITableMappingCollection.Add(System.String,System.String)">
|
|
<summary>Adds a table mapping to the collection.</summary>
|
|
<param name="sourceTableName">The case-sensitive name of the source table.</param>
|
|
<param name="dataSetTableName">The name of the <see cref="T:System.Data.DataSet" /> table.</param>
|
|
<returns>A reference to the newly-mapped <see cref="T:System.Data.ITableMapping" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ITableMappingCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether the collection contains a table mapping with the specified source table name.</summary>
|
|
<param name="sourceTableName">The case-sensitive name of the source table.</param>
|
|
<returns>
|
|
<see langword="true" /> if a table mapping with the specified source table name exists, otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ITableMappingCollection.GetByDataSetTable(System.String)">
|
|
<summary>Gets the TableMapping object with the specified <see cref="T:System.Data.DataSet" /> table name.</summary>
|
|
<param name="dataSetTableName">The name of the <see langword="DataSet" /> table within the collection.</param>
|
|
<returns>The TableMapping object with the specified <see langword="DataSet" /> table name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ITableMappingCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the <see cref="T:System.Data.ITableMapping" /> object within the collection.</summary>
|
|
<param name="sourceTableName">The case-sensitive name of the source table.</param>
|
|
<returns>The zero-based location of the <see cref="T:System.Data.ITableMapping" /> object within the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.ITableMappingCollection.Item(System.String)">
|
|
<summary>Gets or sets the instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name.</summary>
|
|
<param name="index">The <see langword="SourceTable" /> name of the <see cref="T:System.Data.ITableMapping" />.</param>
|
|
<returns>The instance of <see cref="T:System.Data.ITableMapping" /> with the specified <see langword="SourceTable" /> name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.ITableMappingCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.ITableMapping" /> object with the specified <see cref="P:System.Data.ITableMapping.SourceTable" /> name from the collection.</summary>
|
|
<param name="sourceTableName">The case-sensitive name of the <see langword="SourceTable" />.</param>
|
|
</member>
|
|
<member name="T:System.Data.KeyRestrictionBehavior">
|
|
<summary>Identifies a list of connection string parameters identified by the <see langword="KeyRestrictions" /> property that are either allowed or not allowed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.KeyRestrictionBehavior.AllowOnly">
|
|
<summary>Default. Identifies the only additional connection string parameters that are allowed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.KeyRestrictionBehavior.PreventUsage">
|
|
<summary>Identifies additional connection string parameters that are not allowed.</summary>
|
|
</member>
|
|
<member name="T:System.Data.LoadOption">
|
|
<summary>Controls how the values from the data source will be applied to existing rows when using the <see cref="Overload:System.Data.DataTable.Load" /> or <see cref="Overload:System.Data.DataSet.Load" /> method.</summary>
|
|
</member>
|
|
<member name="F:System.Data.LoadOption.OverwriteChanges">
|
|
<summary>The incoming values for this row will be written to both the current value and the original value versions of the data for each column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.LoadOption.PreserveChanges">
|
|
<summary>The incoming values for this row will be written to the original value version of each column. The current version of the data in each column will not be changed. This is the default.</summary>
|
|
</member>
|
|
<member name="F:System.Data.LoadOption.Upsert">
|
|
<summary>The incoming values for this row will be written to the current version of each column. The original version of each column's data will not be changed.</summary>
|
|
</member>
|
|
<member name="T:System.Data.MappingType">
|
|
<summary>Specifies how a <see cref="T:System.Data.DataColumn" /> is mapped.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MappingType.Attribute">
|
|
<summary>The column is mapped to an XML attribute.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MappingType.Element">
|
|
<summary>The column is mapped to an XML element.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MappingType.Hidden">
|
|
<summary>The column is mapped to an internal structure.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MappingType.SimpleContent">
|
|
<summary>The column is mapped to an <see cref="T:System.Xml.XmlText" /> node.</summary>
|
|
</member>
|
|
<member name="T:System.Data.MergeFailedEventArgs">
|
|
<summary>Occurs when a target and source <see langword="DataRow" /> have the same primary key value, and the <see cref="P:System.Data.DataSet.EnforceConstraints" /> property is set to true.</summary>
|
|
</member>
|
|
<member name="M:System.Data.MergeFailedEventArgs.#ctor(System.Data.DataTable,System.String)">
|
|
<summary>Initializes a new instance of a <see cref="T:System.Data.MergeFailedEventArgs" /> class with the <see cref="T:System.Data.DataTable" /> and a description of the merge conflict.</summary>
|
|
<param name="table">The <see cref="T:System.Data.DataTable" /> object.</param>
|
|
<param name="conflict">A description of the merge conflict.</param>
|
|
</member>
|
|
<member name="P:System.Data.MergeFailedEventArgs.Conflict">
|
|
<summary>Returns a description of the merge conflict.</summary>
|
|
<returns>A description of the merge conflict.</returns>
|
|
</member>
|
|
<member name="P:System.Data.MergeFailedEventArgs.Table">
|
|
<summary>Returns the <see cref="T:System.Data.DataTable" /> object.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.MergeFailedEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.DataSet.MergeFailed" /> event.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The data for the event.</param>
|
|
</member>
|
|
<member name="T:System.Data.MissingMappingAction">
|
|
<summary>Determines the action that occurs when a mapping is missing from a source table or a source column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingMappingAction.Error">
|
|
<summary>An <see cref="T:System.InvalidOperationException" /> is generated if the specified column mapping is missing.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingMappingAction.Ignore">
|
|
<summary>The column or table not having a mapping is ignored. Returns <see langword="null" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingMappingAction.Passthrough">
|
|
<summary>The source column or source table is created and added to the <see cref="T:System.Data.DataSet" /> using its original name.</summary>
|
|
</member>
|
|
<member name="T:System.Data.MissingPrimaryKeyException">
|
|
<summary>Represents the exception that is thrown when you try to access a row in a table that has no primary key.</summary>
|
|
</member>
|
|
<member name="M:System.Data.MissingPrimaryKeyException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">A description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.MissingPrimaryKeyException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.MissingPrimaryKeyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.MissingSchemaAction">
|
|
<summary>Specifies the action to take when adding data to the <see cref="T:System.Data.DataSet" /> and the required <see cref="T:System.Data.DataTable" /> or <see cref="T:System.Data.DataColumn" /> is missing.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingSchemaAction.Add">
|
|
<summary>Adds the necessary columns to complete the schema.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingSchemaAction.AddWithKey">
|
|
<summary>Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a <see cref="T:System.Data.DataTable" />, see <see cref="M:System.Data.IDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" />.To function properly with the .NET Framework Data Provider for OLE DB, <see langword="AddWithKey" /> requires that the native OLE DB provider obtains necessary primary key information by setting the DBPROP_UNIQUEROWS property, and then determines which columns are primary key columns by examining DBCOLUMN_KEYCOLUMN in the IColumnsRowset. As an alternative, the user may explicitly set the primary key constraints on each <see cref="T:System.Data.DataTable" />. This ensures that incoming records that match existing records are updated instead of appended. When using <see langword="AddWithKey" />, the .NET Framework Data Provider for SQL Server appends a FOR BROWSE clause to the statement being executed. The user should be aware of potential side effects, such as interference with the use of SET FMTONLY ON statements. For more information, see SET FMTONLY (Transact-SQL).</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingSchemaAction.Error">
|
|
<summary>An <see cref="T:System.InvalidOperationException" /> is generated if the specified column mapping is missing.</summary>
|
|
</member>
|
|
<member name="F:System.Data.MissingSchemaAction.Ignore">
|
|
<summary>Ignores the extra columns.</summary>
|
|
</member>
|
|
<member name="T:System.Data.NoNullAllowedException">
|
|
<summary>Represents the exception that is thrown when you try to insert a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is set to <see langword="false" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.NoNullAllowedException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.NoNullAllowedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.NoNullAllowedException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.NoNullAllowedException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.NoNullAllowedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcCommand">
|
|
<summary>Represents an SQL statement or stored procedure to execute against a data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommand" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommand" /> class with the text of the query.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommand" /> class with the text of the query and an <see cref="T:System.Data.Odbc.OdbcConnection" /> object.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">An <see cref="T:System.Data.Odbc.OdbcConnection" /> object that represents the connection to a data source.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.#ctor(System.String,System.Data.Odbc.OdbcConnection,System.Data.Odbc.OdbcTransaction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommand" /> class with the text of the query, an <see cref="T:System.Data.Odbc.OdbcConnection" /> object, and the <see cref="P:System.Data.Odbc.OdbcCommand.Transaction" />.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">An <see cref="T:System.Data.Odbc.OdbcConnection" /> object that represents the connection to a data source.</param>
|
|
<param name="transaction">The transaction in which the <see cref="T:System.Data.Odbc.OdbcCommand" /> executes.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.Cancel">
|
|
<summary>Tries to cancel the execution of an <see cref="T:System.Data.Odbc.OdbcCommand" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.CommandText">
|
|
<summary>Gets or sets the SQL statement or stored procedure to execute against the data source.</summary>
|
|
<returns>The SQL statement or stored procedure to execute. The default value is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.CommandTimeout">
|
|
<summary>Gets or sets the wait time before terminating an 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.Odbc.OdbcCommand.CommandType">
|
|
<summary>Gets or sets a value that indicates how the <see cref="P:System.Data.Odbc.OdbcCommand.CommandText" /> property is interpreted.</summary>
|
|
<returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value was not a valid <see cref="T:System.Data.CommandType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcConnection" /> used by this instance of the <see cref="T:System.Data.Odbc.OdbcCommand" />.</summary>
|
|
<returns>The connection to a data source. The default is a null value.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.Odbc.OdbcCommand.Connection" /> property was changed while a transaction was in progress.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.CreateParameter">
|
|
<summary>Creates a new instance of an <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.DesignTimeVisible">
|
|
<summary>Gets or sets a value that indicates whether the command object should be visible in a customized interface control.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the command object should be visible in a control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.ExecuteNonQuery">
|
|
<summary>Executes an SQL statement against the <see cref="P:System.Data.Odbc.OdbcCommand.Connection" /> and returns the number of rows affected.</summary>
|
|
<returns>For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection does not exist.
|
|
-or-
|
|
The connection is not open.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.ExecuteReader">
|
|
<summary>Sends the <see cref="P:System.Data.Odbc.OdbcCommand.CommandText" /> to the <see cref="P:System.Data.Odbc.OdbcCommand.Connection" /> and builds an <see cref="T:System.Data.Odbc.OdbcDataReader" />.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Sends the <see cref="P:System.Data.Odbc.OdbcCommand.CommandText" /> to the <see cref="P:System.Data.Odbc.OdbcCommand.Connection" />, and builds an <see cref="T:System.Data.Odbc.OdbcDataReader" /> using one of the <see langword="CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see langword="System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.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 if the result set is empty.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.Parameters">
|
|
<summary>Gets the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure. The default is an empty collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.Prepare">
|
|
<summary>Creates a prepared or compiled version of the command at the data source.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.Odbc.OdbcCommand.Connection" /> is not set.
|
|
-or-
|
|
The <see cref="P:System.Data.Odbc.OdbcCommand.Connection" /> is not <see cref="M:System.Data.Odbc.OdbcConnection.Open" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.ResetCommandTimeout">
|
|
<summary>Resets the <see cref="P:System.Data.Odbc.OdbcCommand.CommandTimeout" /> property to the default value.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommand.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.Transaction">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcTransaction" /> within which the <see cref="T:System.Data.Odbc.OdbcCommand" /> executes.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcTransaction" />. The default is a null value.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommand.UpdatedRowSource">
|
|
<summary>Gets or sets a value that specifies how the Update method should apply command results to the DataRow.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcCommandBuilder">
|
|
<summary>Automatically generates single-table commands that are used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommandBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.#ctor(System.Data.Odbc.OdbcDataAdapter)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcCommandBuilder" /> class with the associated <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> object.</summary>
|
|
<param name="adapter">An <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> object to associate with this <see cref="T:System.Data.Odbc.OdbcCommandBuilder" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcCommandBuilder.DataAdapter">
|
|
<summary>Gets or sets an <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> object for which this <see cref="T:System.Data.Odbc.OdbcCommandBuilder" /> object will generate SQL statements.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> object that is associated with this <see cref="T:System.Data.Odbc.OdbcCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.DeriveParameters(System.Data.Odbc.OdbcCommand)">
|
|
<summary>Retrieves parameter information from the stored procedure specified in the <see cref="T:System.Data.Odbc.OdbcCommand" /> and populates the <see cref="P:System.Data.Odbc.OdbcCommand.Parameters" /> collection of the specified <see cref="T:System.Data.Odbc.OdbcCommand" /> object.</summary>
|
|
<param name="command">The <see cref="T:System.Data.Odbc.OdbcCommand" /> referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the <see cref="P:System.Data.Odbc.OdbcCommand.Parameters" /> collection of the <see cref="T:System.Data.Odbc.OdbcCommand" />.</param>
|
|
<exception cref="T:System.InvalidOperationException">The underlying ODBC driver does not support returning stored procedure parameter information, or the command text is not a valid stored procedure name, or the <see cref="T:System.Data.CommandType" /> specified was not <see langword="CommandType.StoredProcedure" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform deletions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetDeleteCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform deletions at the data source.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform insertions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetInsertCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform insertions at the data source.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform updates at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.GetUpdateCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform updates at the data source.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.Odbc.OdbcCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier. This includes correctly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The original unquoted identifier.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are correctly escaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.QuoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier. This includes correctly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The original unquoted identifier.</param>
|
|
<param name="connection">When a connection is passed, causes the managed wrapper to get the quote character from the ODBC driver, calling SQLGetInfo(SQL_IDENTIFIER_QUOTE_CHAR). When no connection is passed, the string is quoted using values from <see cref="P:System.Data.Common.DbCommandBuilder.QuotePrefix" /> and <see cref="P:System.Data.Common.DbCommandBuilder.QuoteSuffix" />.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are correctly escaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<returns>The unquoted identifier, with embedded quotes correctly unescaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcCommandBuilder.UnquoteIdentifier(System.String,System.Data.Odbc.OdbcConnection)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier, including correctly unescaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<param name="connection">The <see cref="T:System.Data.Odbc.OdbcConnection" />.</param>
|
|
<returns>The unquoted identifier, with embedded quotes correctly unescaped.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcConnection">
|
|
<summary>Represents an open connection to a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcConnection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcConnection" /> class with the specified connection string.</summary>
|
|
<param name="connectionString">The connection used to open the data source.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.BeginTransaction">
|
|
<summary>Starts a transaction at the data source.</summary>
|
|
<returns>An object representing the new transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">A transaction is currently active. Parallel transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.BeginTransaction(System.Data.IsolationLevel)">
|
|
<summary>Starts a transaction at the data source with the specified <see cref="T:System.Data.IsolationLevel" /> value.</summary>
|
|
<param name="isolevel">The transaction isolation level for this connection. If you do not specify an isolation level, the default isolation level for the driver is used.</param>
|
|
<returns>An object representing the new transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">A transaction is currently active. Parallel transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.ChangeDatabase(System.String)">
|
|
<summary>Changes the current database associated with an open <see cref="T:System.Data.Odbc.OdbcConnection" />.</summary>
|
|
<param name="value">The database name.</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.Odbc.OdbcException">Cannot change the database.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.Close">
|
|
<summary>Closes the connection to the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.ConnectionString">
|
|
<summary>Gets or sets the string used to open a data source.</summary>
|
|
<returns>The ODBC driver connection string that includes settings, such as the data source name, needed to establish the initial connection. The default value is an empty string (""). The maximum length is 1024 characters.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.ConnectionTimeout">
|
|
<summary>Gets or sets 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.Odbc.OdbcConnection.CreateCommand">
|
|
<summary>Creates and returns an <see cref="T:System.Data.Odbc.OdbcCommand" /> object associated with the <see cref="T:System.Data.Odbc.OdbcConnection" />.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcCommand" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.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. The default value is an empty string ("") until the connection is opened.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.DataSource">
|
|
<summary>Gets the server name or file name of the data source.</summary>
|
|
<returns>The server name or file name of the data source. The default value is an empty string ("") until the connection is opened.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.Driver">
|
|
<summary>Gets the name of the ODBC driver specified for the current connection.</summary>
|
|
<returns>The name of the ODBC driver. This typically is the DLL name (for example, Sqlsrv32.dll). The default value is an empty string ("") until the connection is opened.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.EnlistDistributedTransaction(System.EnterpriseServices.ITransaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.EnterpriseServices.ITransaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.EnlistTransaction(System.Transactions.Transaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.GetSchema">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Odbc.OdbcConnection" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.GetSchema(System.String)">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Odbc.OdbcConnection" /> using the specified name for the schema name.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.GetSchema(System.String,System.String[])">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.Odbc.OdbcConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<param name="restrictionValues">Specifies a set of restriction values for the requested schema.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="E:System.Data.Odbc.OdbcConnection.InfoMessage">
|
|
<summary>Occurs when the ODBC driver sends a warning or an informational message.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.Open">
|
|
<summary>Opens a connection to a data source with the property settings specified by the <see cref="P:System.Data.Odbc.OdbcConnection.ConnectionString" />.</summary>
|
|
<exception cref="T:System.NotSupportedException">The functionality of this method is unsupported in the base class and must be implemented in a derived class instead.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.ReleaseObjectPool">
|
|
<summary>Indicates that the ODBC Driver Manager environment handle can be released when the last underlying connection is released.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.ServerVersion">
|
|
<summary>Gets a string that contains the version of the server to which the client is connected.</summary>
|
|
<returns>The version of the connected server.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection is closed.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnection.State">
|
|
<summary>Gets the current state of the connection.</summary>
|
|
<returns>A bitwise combination of the <see cref="T:System.Data.ConnectionState" /> values. The default is <see langword="Closed" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnection.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcConnectionStringBuilder">
|
|
<summary>Provides a simple way to create and manage the contents of connection strings used by the <see cref="T:System.Data.Odbc.OdbcConnection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> class. The provided connection string provides the data for the instance's internal connection information.</summary>
|
|
<param name="connectionString">The basis for the object's internal connection information. Parsed into key/value pairs.</param>
|
|
<exception cref="T:System.ArgumentException">The connection string is incorrectly formatted (perhaps missing the required "=" within a key/value pair).</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.Clear">
|
|
<summary>Clears the contents of the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> instance.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.ContainsKey(System.String)">
|
|
<summary>Determines whether the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> contains a specific key.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> contains an element that has the specified key; otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnectionStringBuilder.Driver">
|
|
<summary>Gets or sets the name of the ODBC driver associated with the connection.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.Odbc.OdbcConnectionStringBuilder.Driver" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnectionStringBuilder.Dsn">
|
|
<summary>Gets or sets the name of the data source name (DSN) associated with the connection.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.Odbc.OdbcConnectionStringBuilder.Dsn" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnectionStringBuilder.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.ArgumentException">The connection string is incorrectly formatted (perhaps missing the required "=" within a key/value pair).</exception>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcConnectionStringBuilder.Keys">
|
|
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.Remove(System.String)">
|
|
<summary>Removes the entry with the specified key from the <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" /> 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.Odbc.OdbcConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the key existed within the connection string and was removed; <see langword="false" /> if the key did not exist.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
|
|
<summary>Retrieves a value corresponding to the supplied key from this <see cref="T:System.Data.Odbc.OdbcConnectionStringBuilder" />.</summary>
|
|
<param name="keyword">The key of the item to retrieve.</param>
|
|
<param name="value">The value corresponding to <paramref name="keyword" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if <paramref name="keyword" /> was found within the connection string; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcDataAdapter">
|
|
<summary>Represents a set of data commands and a connection to a data source that are used to fill the <see cref="T:System.Data.DataSet" /> and update the data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataAdapter.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.Data.Odbc.OdbcCommand)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> class with the specified SQL SELECT statement.</summary>
|
|
<param name="selectCommand">An <see cref="T:System.Data.Odbc.OdbcCommand" /> that is an SQL SELECT statement or stored procedure, and is set as the <see cref="P:System.Data.Odbc.OdbcDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.Data.Odbc.OdbcConnection)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> class with an SQL SELECT statement and an <see cref="T:System.Data.Odbc.OdbcConnection" />.</summary>
|
|
<param name="selectCommandText">A string that is a SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.Odbc.OdbcDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" />.</param>
|
|
<param name="selectConnection">An <see cref="T:System.Data.Odbc.OdbcConnection" /> that represents the connection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataAdapter.#ctor(System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" /> class with an SQL SELECT statement and a connection string.</summary>
|
|
<param name="selectCommandText">A string that is a SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.Odbc.OdbcDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.Odbc.OdbcDataAdapter" />.</param>
|
|
<param name="selectConnectionString">The connection string.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.DeleteCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to delete records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcCommand" /> used during an update operation to delete records in the data source that correspond to deleted rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.InsertCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to insert new records into the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcCommand" /> used during an update operation to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="E:System.Data.Odbc.OdbcDataAdapter.RowUpdated">
|
|
<summary>Occurs during an update operation after a command is executed against the data source.</summary>
|
|
</member>
|
|
<member name="E:System.Data.Odbc.OdbcDataAdapter.RowUpdating">
|
|
<summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> before a command is executed against the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.SelectCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to select records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcCommand" /> that is used during a fill operation to select records from data source for placement in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.DeleteCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during an update to delete records in the data source for deleted rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.InsertCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during an update to insert records from a data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.SelectCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during an update to select records from a data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.UpdateCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during an update to update records in the data source for modified rows in the data set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataAdapter.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataAdapter.UpdateCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to update records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcCommand" /> used during an update operation to update records in the data source that correspond to modified rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcDataReader">
|
|
<summary>Provides a way of reading a forward-only stream of data rows from a data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.Close">
|
|
<summary>Closes the <see cref="T:System.Data.Odbc.OdbcDataReader" /> object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.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.Odbc.OdbcDataReader.FieldCount">
|
|
<summary>Gets the number of columns in the current row.</summary>
|
|
<returns>When not positioned in a valid record set, 0; otherwise the number of columns in the current record. The default is -1.</returns>
|
|
<exception cref="T:System.NotSupportedException">There is no current connection to a data source.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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>A Boolean that is the value of the column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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.Odbc.OdbcDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the particular buffer offset.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the field where the read operation is to start.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferIndex">The index within the <paramref name="buffer" /> where the write operation is to start.</param>
|
|
<param name="length">The number of bytes to read.</param>
|
|
<returns>The actual number of bytes read.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetChar(System.Int32)">
|
|
<summary>Gets the value of the specified column as a character.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a character.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 particular buffer offset.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the row where the read operation is to start.</param>
|
|
<param name="buffer">The buffer into which to copy data.</param>
|
|
<param name="bufferIndex">The index within the <paramref name="buffer" /> where the write operation is to start.</param>
|
|
<param name="length">The number of characters to read.</param>
|
|
<returns>The actual number of characters read.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetDataTypeName(System.Int32)">
|
|
<summary>Gets the name of the source data type.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The name of the source data type.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetDate(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.DateTime" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetDateTime(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.DateTime" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetDecimal(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.Decimal" /> object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.Decimal" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a double-precision floating-point number.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetEnumerator">
|
|
<summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetFieldType(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a single-precision floating-point number.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a GUID.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a 16-bit signed integer.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a 32-bit signed integer.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.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 as a 64-bit signed integer.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetName(System.Int32)">
|
|
<summary>Gets the name of the specified column.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>A string that is the name of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetOrdinal(System.String)">
|
|
<summary>Gets the column ordinal, given the name of the column.</summary>
|
|
<param name="value">The name of the column.</param>
|
|
<returns>The zero-based column ordinal.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.Odbc.OdbcDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.Odbc.OdbcDataReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetString(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.String" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.String" />.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetTime(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.TimeSpan" /> object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a <see cref="T:System.TimeSpan" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetValue(System.Int32)">
|
|
<summary>Gets the value of the column at the specified ordinal in its native format.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value to return.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.GetValues(System.Object[])">
|
|
<summary>Populates an array of objects with the column values of the current row.</summary>
|
|
<param name="values">An array of type <see cref="T:System.Object" /> into which to copy the attribute columns.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.HasRows">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Odbc.OdbcDataReader" /> contains one or more rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcDataReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.IsClosed">
|
|
<summary>Indicates whether the <see cref="T:System.Data.Odbc.OdbcDataReader" /> is closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcDataReader" /> is closed; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.IsDBNull(System.Int32)">
|
|
<summary>Gets a value that indicates whether the column contains nonexistent or missing values.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.Item(System.Int32)">
|
|
<summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
|
|
<param name="i">The 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="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.Item(System.String)">
|
|
<summary>Gets the value of the specified column in its native format given the column name.</summary>
|
|
<param name="value">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="M:System.Data.Odbc.OdbcDataReader.NextResult">
|
|
<summary>Advances the <see cref="T:System.Data.Odbc.OdbcDataReader" /> to the next result when reading the results of batch SQL statements.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more result sets; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcDataReader.Read">
|
|
<summary>Advances the <see cref="T:System.Data.Odbc.OdbcDataReader" /> to the next record.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcDataReader.RecordsAffected">
|
|
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected, or the statement failed.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcError">
|
|
<summary>Collects information relevant to a warning or error returned by the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcError.Message">
|
|
<summary>Gets a short description of the error.</summary>
|
|
<returns>A description of the error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcError.NativeError">
|
|
<summary>Gets the data source-specific error information.</summary>
|
|
<returns>The data source-specific error information.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcError.Source">
|
|
<summary>Gets the name of the driver that generated the error.</summary>
|
|
<returns>The name of the driver that generated the error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcError.SQLState">
|
|
<summary>Gets the five-character error code that follows the ANSI SQL standard for the database.</summary>
|
|
<returns>The five-character error code, which identifies the source of the error if the error can be issued from more than one place.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcError.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.Odbc.OdbcErrorCollection">
|
|
<summary>Collects all errors generated by the <see cref="T:System.Data.Odbc.OdbcDataAdapter" />. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> into an array, starting at the specified index within the array.</summary>
|
|
<param name="array">The array into which to copy the elements.</param>
|
|
<param name="i">The starting index of <paramref name="array" />.</param>
|
|
<exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and the number of elements in the <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> is greater than the length of the array.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="array" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> is not valid for <paramref name="array" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcErrorCollection.CopyTo(System.Data.Odbc.OdbcError[],System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> to the specified <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> starting at the specified destination index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.Odbc.OdbcErrorCollection" />.</param>
|
|
<param name="i">A 32-bit integer that represents the index in the <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcErrorCollection.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.Odbc.OdbcErrorCollection.GetEnumerator">
|
|
<summary>Returns an object that implements the <see cref="T:System.Collections.IEnumerator" /> interface and that can iterate through the <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> objects in the <see cref="T:System.Data.Odbc.OdbcErrorCollection" />.</summary>
|
|
<returns>An object that implements the <see cref="T:System.Collections.IEnumerator" /> interface and that can iterate through the <see cref="T:System.Data.Odbc.OdbcErrorCollection" /> objects in the <see cref="T:System.Data.Odbc.OdbcErrorCollection" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcErrorCollection.Item(System.Int32)">
|
|
<summary>Gets the error at the specified index.</summary>
|
|
<param name="i">The zero-based index of the error to retrieve.</param>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcError" /> that contains the error at the specified index.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#IsSynchronized">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcErrorCollection.System#Collections#ICollection#SyncRoot">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcException">
|
|
<summary>The exception that is generated when a warning or error is returned by an ODBC data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcException.Errors">
|
|
<summary>Gets a collection of one or more <see cref="T:System.Data.Odbc.OdbcError" /> objects that give detailed information about exceptions generated by the .NET Framework Data Provider for ODBC.</summary>
|
|
<returns>The collected instances of the <see cref="T:System.Data.Odbc.OdbcError" /> class.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>This member overrides <see cref="M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />.</summary>
|
|
<param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="si" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcException.Source">
|
|
<summary>Gets the name of the ODBC driver that generated the error.</summary>
|
|
<returns>The name of the ODBC driver that generated the error.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcFactory">
|
|
<summary>Represents a set of methods for creating instances of the ODBC provider's implementation of the data source classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateCommand">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbCommand" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateCommandBuilder">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbCommandBuilder" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateConnection">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbConnection" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbConnection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateConnectionStringBuilder">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateDataAdapter">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbDataAdapter" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreateParameter">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbParameter" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcFactory.CreatePermission(System.Security.Permissions.PermissionState)">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Security.CodeAccessPermission" /> instance.</summary>
|
|
<param name="state">A member of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration.</param>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Security.CodeAccessPermission" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcFactory.Instance">
|
|
<summary>Gets an instance of the <see cref="T:System.Data.Odbc.OdbcFactory" />, which can be used to retrieve strongly-typed data objects.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcInfoMessageEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.Odbc.OdbcConnection.InfoMessage" /> event.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcInfoMessageEventArgs.Errors">
|
|
<summary>Gets the collection of warnings sent from the data source.</summary>
|
|
<returns>The collection of warnings sent from the data source.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcInfoMessageEventArgs.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="M:System.Data.Odbc.OdbcInfoMessageEventArgs.ToString">
|
|
<summary>Retrieves a string representation of the <see cref="E:System.Data.Odbc.OdbcConnection.InfoMessage" /> event.</summary>
|
|
<returns>A string representing the <see cref="E:System.Data.Odbc.OdbcConnection.InfoMessage" /> event.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcInfoMessageEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.Odbc.OdbcConnection.InfoMessage" /> event of an <see cref="T:System.Data.Odbc.OdbcConnection" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">An <see cref="T:System.Data.Odbc.OdbcInfoMessageEventArgs" /> object that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcMetaDataCollectionNames">
|
|
<summary>Provides a list of constants for use with the GetSchema method to retrieve metadata collections.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.Columns">
|
|
<summary>A constant for use with the GetSchema method that represents the Columns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.Indexes">
|
|
<summary>A constant for use with the GetSchema method that represents the Indexes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureColumns">
|
|
<summary>A constant for use with the GetSchema method that represents the ProcedureColumns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.ProcedureParameters">
|
|
<summary>A constant for use with the GetSchema method that represents the ProcedureParameters collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.Procedures">
|
|
<summary>A constant for use with the GetSchema method that represents the Procedures collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.Tables">
|
|
<summary>A constant for use with the GetSchema method that represents the Tables collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataCollectionNames.Views">
|
|
<summary>A constant for use with the GetSchema method that represents the Views collection.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcMetaDataColumnNames">
|
|
<summary>Provides static values that are used for the column names in the <see cref="T:System.Data.Odbc.OdbcMetaDataCollectionNames" /> objects contained in the <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> is created by the GetSchema method.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanFalseLiteral">
|
|
<summary>Used by the GetSchema method to create the BooleanFalseLiteral column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataColumnNames.BooleanTrueLiteral">
|
|
<summary>Used by the GetSchema method to create the BooleanTrueLiteral column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcMetaDataColumnNames.SQLType">
|
|
<summary>Used by the GetSchema method to create the SQLType column.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcParameter">
|
|
<summary>Represents a parameter to an <see cref="T:System.Data.Odbc.OdbcCommand" /> and optionally, its mapping to a <see cref="T:System.Data.DataColumn" />. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name and data type.</summary>
|
|
<param name="name">The name of the parameter.</param>
|
|
<param name="type">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="type" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name, data type, and length.</summary>
|
|
<param name="name">The name of the parameter.</param>
|
|
<param name="type">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="type" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name, data type, length, source column name, parameter direction, numeric precision, and other properties.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="odbcType">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="parameterDirection">One of the <see cref="T:System.Data.ParameterDirection" /> values.</param>
|
|
<param name="isNullable">
|
|
<see langword="true" /> if the value of the field can be null; otherwise <see langword="false" />.</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.Odbc.OdbcParameter.Value" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> is resolved.</param>
|
|
<param name="srcColumn">The name of the source column.</param>
|
|
<param name="srcVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.Odbc.OdbcParameter" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="type" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name, data type, length, source column name, parameter direction, numeric precision, and other properties.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="odbcType">One of the <see cref="P:System.Data.Odbc.OdbcParameter.OdbcType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="parameterDirection">One of the <see cref="T:System.Data.ParameterDirection" /> 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.Odbc.OdbcParameter.Value" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> is resolved.</param>
|
|
<param name="sourceColumn">The name of the source column.</param>
|
|
<param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="sourceColumnNullMapping">
|
|
<see langword="true" /> if the corresponding source column is nullable; <see langword="false" /> if it is not.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.Odbc.OdbcParameter" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="type" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name, data type, length, and source column name.</summary>
|
|
<param name="name">The name of the parameter.</param>
|
|
<param name="type">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="sourcecolumn">The name of the source column.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="type" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.#ctor(System.String,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcParameter" /> class that uses the parameter name and an <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</summary>
|
|
<param name="name">The name of the parameter.</param>
|
|
<param name="value">An <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.DbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="T:System.String" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.Direction">
|
|
<summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.IsNullable">
|
|
<summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null values are accepted; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.OdbcType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcType" /> of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcType" /> value that is the <see cref="T:System.Data.Odbc.OdbcType" /> of the parameter. The default is <see langword="Nchar" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.ParameterName">
|
|
<summary>Gets or sets the name of the <see cref="T:System.Data.Odbc.OdbcParameter" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.Odbc.OdbcParameter" />. The default is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.Precision">
|
|
<summary>Gets or sets the number of digits used to represent the <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> property.</summary>
|
|
<returns>The maximum number of digits used to represent the <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> property. The default value is 0, which indicates that the data provider sets the precision for <see cref="P:System.Data.Odbc.OdbcParameter.Value" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.ResetDbType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.Odbc.OdbcParameter" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.ResetOdbcType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.Odbc.OdbcParameter" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.Scale">
|
|
<summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> is resolved.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.Odbc.OdbcParameter.Value" /> is resolved. The default is 0.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.Size">
|
|
<summary>Gets or sets the maximum size of the data within the column.</summary>
|
|
<returns>The maximum size of the data within the column. The default value is inferred from the parameter value.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.SourceColumn">
|
|
<summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.Odbc.OdbcParameter.Value" />.</summary>
|
|
<returns>The name of the source column that will be used to set the value of this parameter. The default is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.SourceColumnNullMapping">
|
|
<summary>Sets or gets a value which indicates whether the source column is nullable. This lets <see cref="T:System.Data.Common.DbCommandBuilder" /> correctly generate Update statements for nullable columns.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.SourceVersion">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when you load <see cref="P:System.Data.Odbc.OdbcParameter.Value" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is Current.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameter.ToString">
|
|
<summary>Gets a string that contains the <see cref="P:System.Data.Odbc.OdbcParameter.ParameterName" />.</summary>
|
|
<returns>A string that contains the <see cref="P:System.Data.Odbc.OdbcParameter.ParameterName" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameter.Value">
|
|
<summary>Gets or sets the value of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcParameterCollection">
|
|
<summary>Represents a collection of parameters relevant to an <see cref="T:System.Data.Odbc.OdbcCommand" /> and their respective mappings to columns in a <see cref="T:System.Data.DataSet" />. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.Data.Odbc.OdbcParameter)">
|
|
<summary>Adds the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Odbc.OdbcParameter" /> to add to the collection.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.Odbc.OdbcParameter" /> specified in the <paramref name="value" /> parameter is already added to this or another <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.Object)">
|
|
<summary>Adds the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> object to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">A <see cref="T:System.Object" />.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType)">
|
|
<summary>Adds an <see cref="T:System.Data.Odbc.OdbcParameter" /> to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />, given the parameter name and data type.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="odbcType">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32)">
|
|
<summary>Adds an <see cref="T:System.Data.Odbc.OdbcParameter" /> to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />, given the parameter name, data type, and column length.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="odbcType">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<param name="size">The length of the column.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Data.Odbc.OdbcType,System.Int32,System.String)">
|
|
<summary>Adds an <see cref="T:System.Data.Odbc.OdbcParameter" /> to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> given the parameter name, data type, column length, and source column name.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="odbcType">One of the <see cref="T:System.Data.Odbc.OdbcType" /> values.</param>
|
|
<param name="size">The length of the column.</param>
|
|
<param name="sourceColumn">The name of the source column.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Add(System.String,System.Object)">
|
|
<summary>Adds an <see cref="T:System.Data.Odbc.OdbcParameter" /> to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> given the parameter name and value.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="value">The <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> of the <see cref="T:System.Data.Odbc.OdbcParameter" /> to add to the collection.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">The <paramref name="value" /> parameter is not an <see cref="T:System.Data.Odbc.OdbcParameter" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Array)">
|
|
<summary>Adds an array of values to the end of the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="values">The <see cref="T:System.Array" /> values to add.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.AddRange(System.Data.Odbc.OdbcParameter[])">
|
|
<summary>Adds an array of <see cref="T:System.Data.Odbc.OdbcParameter" /> values to the end of the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="values">An array of <see cref="T:System.Data.Odbc.OdbcParameter" /> objects to add to the collection.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.AddWithValue(System.String,System.Object)">
|
|
<summary>Adds a value to the end of the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="value">The value to be added.</param>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Clear">
|
|
<summary>Removes all <see cref="T:System.Data.Odbc.OdbcParameter" /> objects from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Data.Odbc.OdbcParameter)">
|
|
<summary>Determines whether the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> is in this <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Odbc.OdbcParameter" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcParameter" /> is in the collection; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Contains(System.Object)">
|
|
<summary>Determines whether the specified <see cref="T:System.Object" /> is in this <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> contains the value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Contains(System.String)">
|
|
<summary>Gets a value indicating whether an <see cref="T:System.Data.Odbc.OdbcParameter" /> object with the specified parameter name exists in the collection.</summary>
|
|
<param name="value">The name of the <see cref="T:System.Data.Odbc.OdbcParameter" /> object to find.</param>
|
|
<returns>
|
|
<see langword="true" /> if the collection contains the parameter; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.CopyTo(System.Data.Odbc.OdbcParameter[],System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> to the specified <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> starting at the specified destination index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.Count">
|
|
<summary>Returns an Integer that contains the number of elements in the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />. Read-only.</summary>
|
|
<returns>The number of elements in the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> as an Integer.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.GetEnumerator">
|
|
<summary>Returns an enumerator that iterates through the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Data.Odbc.OdbcParameter)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.Odbc.OdbcParameter" /> object in the collection to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.Object)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Object" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.Odbc.OdbcParameter" /> within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.Odbc.OdbcParameter" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.Odbc.OdbcParameter" /> with the specified case-sensitive name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Data.Odbc.OdbcParameter)">
|
|
<summary>Inserts a <see cref="T:System.Data.Odbc.OdbcParameter" /> object into the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index at which the object should be inserted.</param>
|
|
<param name="value">A <see cref="T:System.Data.Odbc.OdbcParameter" /> object to be inserted in the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts a <see cref="T:System.Object" /> into the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index at which the object should be inserted.</param>
|
|
<param name="value">A <see cref="T:System.Object" /> to be inserted in the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> has a fixed size. Read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> is read only, otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.IsSynchronized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> is synchronized. Read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.Item(System.Int32)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcParameter" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.Odbc.OdbcParameter" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index specified does not exist.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The name of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.Odbc.OdbcParameter" /> with the specified name.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The name specified does not exist.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Data.Odbc.OdbcParameter)">
|
|
<summary>Removes the <see cref="T:System.Data.Odbc.OdbcParameter" /> from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">A <see cref="T:System.Data.Odbc.OdbcParameter" /> object to remove from the collection.</param>
|
|
<exception cref="T:System.InvalidCastException">The parameter is not a <see cref="T:System.Data.Odbc.OdbcParameter" />.</exception>
|
|
<exception cref="T:System.SystemException">The parameter does not exist in the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.Remove(System.Object)">
|
|
<summary>Removes the <see cref="T:System.Object" /> object from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</summary>
|
|
<param name="value">A <see cref="T:System.Object" /> to be removed from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.Odbc.OdbcParameter" /> from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.Odbc.OdbcParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcParameterCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.Odbc.OdbcParameter" /> from the <see cref="T:System.Data.Odbc.OdbcParameterCollection" /> with the specified parameter name.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.Odbc.OdbcParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcParameterCollection.SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />. Read-only.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Data.Odbc.OdbcParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcPermission">
|
|
<summary>Enables the .NET Framework Data Provider for ODBC to help make sure that a user has a security level sufficient to access an ODBC data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermission.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcPermission" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcPermission" /> class with one of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcPermission" /> class.</summary>
|
|
<param name="state">One of the <see langword="System.Security.Permissions.PermissionState" /> values.</param>
|
|
<param name="allowBlankPassword">Indicates whether a blank password is allowed.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)">
|
|
<summary>Adds access for the specified connection string to the existing state of the permission.</summary>
|
|
<param name="connectionString">A permitted connection string.</param>
|
|
<param name="restrictions">String that identifies connection string parameters that are allowed or disallowed.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermission.Copy">
|
|
<summary>Returns the <see cref="T:System.Data.Odbc.OdbcPermission" /> as an <see cref="T:System.Security.IPermission" />.</summary>
|
|
<returns>A copy of the current permission object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcPermissionAttribute">
|
|
<summary>Associates a security action with a custom security attribute.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.Odbc.OdbcPermissionAttribute" /> class with one of the <see cref="T:System.Security.Permissions.SecurityAction" /> values.</summary>
|
|
<param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values representing an action that can be performed by using declarative security.</param>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcPermissionAttribute.CreatePermission">
|
|
<summary>Returns an <see cref="T:System.Data.Odbc.OdbcPermission" /> object that is configured according to the attribute properties.</summary>
|
|
<returns>An <see cref="T:System.Data.Odbc.OdbcPermission" /> object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcRowUpdatedEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.Odbc.OdbcDataAdapter.RowUpdated" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcRowUpdatedEventArgs.#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.Odbc.OdbcRowUpdatedEventArgs" /> class.</summary>
|
|
<param name="row">The <see langword="DataRow" /> sent through an update operation.</param>
|
|
<param name="command">The <see cref="T:System.Data.Odbc.OdbcCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcRowUpdatedEventArgs.Command">
|
|
<summary>Gets the <see cref="T:System.Data.Odbc.OdbcCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
|
|
<returns>The <see cref="T:System.Data.Odbc.OdbcCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcRowUpdatedEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.Odbc.OdbcDataAdapter.RowUpdated" /> event of an <see cref="T:System.Data.Odbc.OdbcDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.Odbc.OdbcRowUpdatedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcRowUpdatingEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.Odbc.OdbcDataAdapter.RowUpdating" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcRowUpdatingEventArgs.#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.Odbc.OdbcRowUpdatingEventArgs" /> class.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to update.</param>
|
|
<param name="command">The <see cref="T:System.Data.Odbc.OdbcCommand" /> to execute during the update operation.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcRowUpdatingEventArgs.Command">
|
|
<summary>Gets or sets the <see cref="T:System.Data.Odbc.OdbcCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
|
|
<returns>The <see cref="T:System.Data.Odbc.OdbcCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcRowUpdatingEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.Odbc.OdbcDataAdapter.RowUpdating" /> event of an <see cref="T:System.Data.Odbc.OdbcDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.Odbc.OdbcRowUpdatingEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcTransaction">
|
|
<summary>Represents an SQL transaction to be made at a data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcTransaction.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.Odbc.OdbcTransaction.Connection">
|
|
<summary>Gets the <see cref="T:System.Data.Odbc.OdbcConnection" /> object associated with the transaction, or <see langword="null" /> if the transaction is no longer valid.</summary>
|
|
<returns>The <see cref="T:System.Data.Odbc.OdbcConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Odbc.OdbcTransaction.IsolationLevel">
|
|
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default depends on the underlying ODBC driver.</returns>
|
|
</member>
|
|
<member name="M:System.Data.Odbc.OdbcTransaction.Rollback">
|
|
<summary>Rolls back a transaction from a pending state.</summary>
|
|
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
|
|
-or-
|
|
The connection is broken.</exception>
|
|
</member>
|
|
<member name="T:System.Data.Odbc.OdbcType">
|
|
<summary>Specifies the data type of a field, property, for use in an <see cref="T:System.Data.Odbc.OdbcParameter" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.BigInt">
|
|
<summary>Exact numeric value with precision 19 (if signed) or 20 (if unsigned) and scale 0 (signed: -2[63] <= n <= 2[63] - 1, unsigned:0 <= n <= 2[64] - 1) (SQL_BIGINT). This maps to <see cref="T:System.Int64" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Binary">
|
|
<summary>A stream of binary data (SQL_BINARY). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Bit">
|
|
<summary>Single bit binary data (SQL_BIT). This maps to <see cref="T:System.Boolean" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Char">
|
|
<summary>A fixed-length character string (SQL_CHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Date">
|
|
<summary>Date data in the format yyyymmdd (SQL_TYPE_DATE). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.DateTime">
|
|
<summary>Date data in the format yyyymmddhhmmss (SQL_TYPE_TIMESTAMP). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Decimal">
|
|
<summary>Signed, exact, numeric value with a precision of at least p and scale s, where 1 <= p <= 15 and s <= p. The maximum precision is driver-specific (SQL_DECIMAL). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Double">
|
|
<summary>Signed, approximate, numeric value with a binary precision 53 (zero or absolute value 10[-308] to 10[308]) (SQL_DOUBLE). This maps to <see cref="T:System.Double" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Image">
|
|
<summary>Variable length binary data. Maximum length is data source-dependent (SQL_LONGVARBINARY). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Int">
|
|
<summary>Exact numeric value with precision 10 and scale 0 (signed: -2[31] <= n <= 2[31] - 1, unsigned:0 <= n <= 2[32] - 1) (SQL_INTEGER). This maps to <see cref="T:System.Int32" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.NChar">
|
|
<summary>Unicode character string of fixed string length (SQL_WCHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.NText">
|
|
<summary>Unicode variable-length character data. Maximum length is data source-dependent. (SQL_WLONGVARCHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Numeric">
|
|
<summary>Signed, exact, numeric value with a precision p and scale s, where 1 <= p <= 15, and s <= p (SQL_NUMERIC). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.NVarChar">
|
|
<summary>A variable-length stream of Unicode characters (SQL_WVARCHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Real">
|
|
<summary>Signed, approximate, numeric value with a binary precision 24 (zero or absolute value 10[-38] to 10[38]).(SQL_REAL). This maps to <see cref="T:System.Single" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.SmallDateTime">
|
|
<summary>Data and time data in the format yyyymmddhhmmss (SQL_TYPE_TIMESTAMP). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.SmallInt">
|
|
<summary>Exact numeric value with precision 5 and scale 0 (signed: -32,768 <= n <= 32,767, unsigned: 0 <= n <= 65,535) (SQL_SMALLINT). This maps to <see cref="T:System.Int16" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Text">
|
|
<summary>Variable length character data. Maximum length is data source-dependent (SQL_LONGVARCHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Time">
|
|
<summary>Date data in the format hhmmss (SQL_TYPE_TIMES). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.Timestamp">
|
|
<summary>A stream of binary data (SQL_BINARY). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.TinyInt">
|
|
<summary>Exact numeric value with precision 3 and scale 0 (signed: -128 <= n <= 127, unsigned:0 <= n <= 255)(SQL_TINYINT). This maps to <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.UniqueIdentifier">
|
|
<summary>A fixed-length GUID (SQL_GUID). This maps to <see cref="T:System.Guid" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.VarBinary">
|
|
<summary>Variable length binary. The maximum is set by the user (SQL_VARBINARY). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Odbc.OdbcType.VarChar">
|
|
<summary>A variable-length stream character string (SQL_CHAR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbCommand">
|
|
<summary>Represents an SQL statement or stored procedure to execute against a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommand" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommand" /> class with the text of the query.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommand" /> class with the text of the query and an <see cref="T:System.Data.OleDb.OleDbConnection" />.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">An <see cref="T:System.Data.OleDb.OleDbConnection" /> that represents the connection to a data source.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.#ctor(System.String,System.Data.OleDb.OleDbConnection,System.Data.OleDb.OleDbTransaction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommand" /> class with the text of the query, an <see cref="T:System.Data.OleDb.OleDbConnection" />, and the <see cref="P:System.Data.OleDb.OleDbCommand.Transaction" />.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">An <see cref="T:System.Data.OleDb.OleDbConnection" /> that represents the connection to a data source.</param>
|
|
<param name="transaction">The transaction in which the <see cref="T:System.Data.OleDb.OleDbCommand" /> executes.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.Cancel">
|
|
<summary>Tries to cancel the execution of an <see cref="T:System.Data.OleDb.OleDbCommand" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.Clone">
|
|
<summary>Creates a new <see cref="T:System.Data.OleDb.OleDbCommand" /> object that is a copy of the current instance.</summary>
|
|
<returns>A new <see cref="T:System.Data.OleDb.OleDbCommand" /> object that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.CommandText">
|
|
<summary>Gets or sets the SQL statement or stored procedure to execute at the data source.</summary>
|
|
<returns>The SQL statement or stored procedure to execute. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.CommandTimeout">
|
|
<summary>Gets or sets the wait time before terminating an 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.OleDb.OleDbCommand.CommandType">
|
|
<summary>Gets or sets a value that indicates how the <see cref="P:System.Data.OleDb.OleDbCommand.CommandText" /> property is interpreted.</summary>
|
|
<returns>One of the <see cref="P:System.Data.OleDb.OleDbCommand.CommandType" /> values. The default is Text.</returns>
|
|
<exception cref="T:System.ArgumentException">The value was not a valid <see cref="P:System.Data.OleDb.OleDbCommand.CommandType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbConnection" /> used by this instance of the <see cref="T:System.Data.OleDb.OleDbCommand" />.</summary>
|
|
<returns>The connection to a data source. The default value is <see langword="null" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> property was changed while a transaction was in progress.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.CreateParameter">
|
|
<summary>Creates a new instance of an <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.DesignTimeVisible">
|
|
<summary>Gets or sets a value that indicates whether the command object should be visible in a customized Windows Forms Designer control.</summary>
|
|
<returns>A value that indicates whether the command object should be visible in a control. The default is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.ExecuteNonQuery">
|
|
<summary>Executes an SQL statement against the <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> and returns the number of rows affected.</summary>
|
|
<returns>The number of rows affected.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection does not exist.
|
|
-or-
|
|
The connection is not open.
|
|
-or-
|
|
Cannot execute a command within a transaction context that differs from the context in which the connection was originally enlisted.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.ExecuteReader">
|
|
<summary>Sends the <see cref="P:System.Data.OleDb.OleDbCommand.CommandText" /> to the <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> and builds an <see cref="T:System.Data.OleDb.OleDbDataReader" />.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Cannot execute a command within a transaction context that differs from the context in which the connection was originally enlisted.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Sends the <see cref="P:System.Data.OleDb.OleDbCommand.CommandText" /> to the <see cref="P:System.Data.OleDb.OleDbCommand.Connection" />, and builds an <see cref="T:System.Data.OleDb.OleDbDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Cannot execute a command within a transaction context that differs from the context in which the connection was originally enlisted.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.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 if the result set is empty.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Cannot execute a command within a transaction context that differs from the context in which the connection was originally enlisted.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.Parameters">
|
|
<summary>Gets the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<returns>The parameters of the SQL statement or stored procedure. The default is an empty collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.Prepare">
|
|
<summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not set.
|
|
-or-
|
|
The <see cref="P:System.Data.OleDb.OleDbCommand.Connection" /> is not open.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.ResetCommandTimeout">
|
|
<summary>Resets the <see cref="P:System.Data.OleDb.OleDbCommand.CommandTimeout" /> property to the default value.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader">
|
|
<summary>For a description of this member, see <see cref="M:System.Data.IDbCommand.ExecuteReader" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.System#Data#IDbCommand#ExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Executes the <see cref="P:System.Data.IDbCommand.CommandText" /> against the <see cref="P:System.Data.IDbCommand.Connection" />, and builds an <see cref="T:System.Data.IDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>An <see cref="T:System.Data.IDataReader" /> built using one of the <see cref="T:System.Data.CommandBehavior" /> values.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommand.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.Transaction">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbTransaction" /> within which the <see cref="T:System.Data.OleDb.OleDbCommand" /> executes.</summary>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbTransaction" />. The default value is <see langword="null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommand.UpdatedRowSource">
|
|
<summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the <see langword="Update" /> method of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values.</returns>
|
|
<exception cref="T:System.ArgumentException">The value entered was not one of the <see cref="T:System.Data.UpdateRowSource" /> values.</exception>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbCommandBuilder">
|
|
<summary>Automatically generates single-table commands that are used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated database. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommandBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.#ctor(System.Data.OleDb.OleDbDataAdapter)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbCommandBuilder" /> class with the associated <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> object.</summary>
|
|
<param name="adapter">An <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbCommandBuilder.DataAdapter">
|
|
<summary>Gets or sets an <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> object for which SQL statements are automatically generated.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.DeriveParameters(System.Data.OleDb.OleDbCommand)">
|
|
<summary>Retrieves parameter information from the stored procedure specified in the <see cref="T:System.Data.OleDb.OleDbCommand" /> and populates the <see cref="P:System.Data.OleDb.OleDbCommand.Parameters" /> collection of the specified <see cref="T:System.Data.OleDb.OleDbCommand" /> object.</summary>
|
|
<param name="command">The <see cref="T:System.Data.OleDb.OleDbCommand" /> referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the <see cref="P:System.Data.OleDb.OleDbCommand.Parameters" /> collection of the <see cref="T:System.Data.OleDb.OleDbCommand" />.</param>
|
|
<exception cref="T:System.InvalidOperationException">The underlying OLE DB provider does not support returning stored procedure parameter information, the command text is not a valid stored procedure name, or the <see cref="P:System.Data.OleDb.OleDbCommand.CommandType" /> specified was not <see langword="StoredProcedure" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform deletions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetDeleteCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform deletions at the data source.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform insertions at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetInsertCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform insertions at the data source.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform updates at the data source.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.GetUpdateCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform updates at the data source, optionally using columns for parameter names.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names, if it is possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.OleDb.OleDbCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier. This includes correctly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The original unquoted identifier.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are correctly escaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.QuoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier. This includes correctly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The unquoted identifier to be returned in quoted format.</param>
|
|
<param name="connection">When a connection is passed, causes the managed wrapper to get the quote character from the OLE DB provider. When no connection is passed, the string is quoted using values from <see cref="P:System.Data.Common.DbCommandBuilder.QuotePrefix" /> and <see cref="P:System.Data.Common.DbCommandBuilder.QuoteSuffix" />.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are correctly escaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<returns>The unquoted identifier, with embedded quotes correctly un-escaped.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbCommandBuilder.UnquoteIdentifier(System.String,System.Data.OleDb.OleDbConnection)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly un-escaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<param name="connection">The <see cref="T:System.Data.OleDb.OleDbConnection" />.</param>
|
|
<returns>The unquoted identifier, with embedded quotes correctly un-escaped.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbConnection">
|
|
<summary>Represents an open connection to a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbConnection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbConnection" /> class with the specified connection string.</summary>
|
|
<param name="connectionString">The connection used to open the database.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.BeginTransaction">
|
|
<summary>Starts a database transaction with the current <see cref="T:System.Data.IsolationLevel" /> value.</summary>
|
|
<returns>An object representing the new transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.BeginTransaction(System.Data.IsolationLevel)">
|
|
<summary>Starts a database transaction with the specified isolation level.</summary>
|
|
<param name="isolationLevel">The isolation level under which the transaction should run.</param>
|
|
<returns>An object representing the new transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Parallel transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.ChangeDatabase(System.String)">
|
|
<summary>Changes the current database for an open <see cref="T:System.Data.OleDb.OleDbConnection" />.</summary>
|
|
<param name="value">The database name.</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.OleDb.OleDbException">Cannot change the database.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.Close">
|
|
<summary>Closes the connection to the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnection.ConnectionString">
|
|
<summary>Gets or sets the string used to open a database.</summary>
|
|
<returns>The OLE DB provider connection string that includes the data source 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.OleDb.OleDbConnection.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.OleDb.OleDbConnection.CreateCommand">
|
|
<summary>Creates and returns an <see cref="T:System.Data.OleDb.OleDbCommand" /> object associated with the <see cref="T:System.Data.OleDb.OleDbConnection" />.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbCommand" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnection.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.OleDb.OleDbConnection.DataSource">
|
|
<summary>Gets the server name or file name of the data source.</summary>
|
|
<returns>The server name or file name of the data source. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.EnlistDistributedTransaction(System.EnterpriseServices.ITransaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.EnterpriseServices.ITransaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.EnlistTransaction(System.Transactions.Transaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.GetOleDbSchemaTable(System.Guid,System.Object[])">
|
|
<summary>Returns schema information from a data source as indicated by a GUID, and after it applies the specified restrictions.</summary>
|
|
<param name="schema">One of the <see cref="T:System.Data.OleDb.OleDbSchemaGuid" /> values that specifies the schema table to return.</param>
|
|
<param name="restrictions">An <see cref="T:System.Object" /> array of restriction values. These are applied in the order of the restriction columns. That is, the first restriction value applies to the first restriction column, the second restriction value applies to the second restriction column, and so on.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains the requested schema information.</returns>
|
|
<exception cref="T:System.Data.OleDb.OleDbException">The specified set of restrictions is invalid.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.OleDb.OleDbConnection" /> is closed.</exception>
|
|
<exception cref="T:System.ArgumentException">The specified schema rowset is not supported by the OLE DB provider.
|
|
-or-
|
|
The <paramref name="schema" /> parameter contains a value of <see cref="F:System.Data.OleDb.OleDbSchemaGuid.DbInfoLiterals" /> and the <paramref name="restrictions" /> parameter contains one or more restrictions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.GetSchema">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OleDb.OleDbConnection" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.GetSchema(System.String)">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OleDb.OleDbConnection" /> using the specified string for the schema name.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.GetSchema(System.String,System.String[])">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.OleDb.OleDbConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<param name="restrictionValues">Specifies a set of restriction values for the requested schema.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="E:System.Data.OleDb.OleDbConnection.InfoMessage">
|
|
<summary>Occurs when the provider sends a warning or an informational message.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.Open">
|
|
<summary>Opens a database connection with the property settings specified by the <see cref="P:System.Data.OleDb.OleDbConnection.ConnectionString" />.</summary>
|
|
<exception cref="T:System.InvalidOperationException">The connection is already open.</exception>
|
|
<exception cref="T:System.Data.OleDb.OleDbException">A connection-level error occurred while opening the connection.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnection.Provider">
|
|
<summary>Gets the name of the OLE DB provider specified in the "Provider= " clause of the connection string.</summary>
|
|
<returns>The name of the provider as specified in the "Provider= " clause of the connection string. The default value is an empty string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.ReleaseObjectPool">
|
|
<summary>Indicates that the <see cref="T:System.Data.OleDb.OleDbConnection" /> object pool can be released when the last underlying connection is released.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.ResetState">
|
|
<summary>Updates the <see cref="P:System.Data.OleDb.OleDbConnection.State" /> property of the <see cref="T:System.Data.OleDb.OleDbConnection" /> object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnection.ServerVersion">
|
|
<summary>Gets a string that contains the version of the server to which the client is connected.</summary>
|
|
<returns>The version of the connected server.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection is closed.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnection.State">
|
|
<summary>Gets the current state of the connection.</summary>
|
|
<returns>A bitwise combination of the <see cref="T:System.Data.ConnectionState" /> values. The default is Closed.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnection.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbConnectionStringBuilder">
|
|
<summary>Provides a simple way to create and manage the contents of connection strings used by the <see cref="T:System.Data.OleDb.OleDbConnection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> class. The provided connection string provides the data for the instance's internal connection information.</summary>
|
|
<param name="connectionString">The basis for the object's internal connection information. Parsed into key/value pairs.</param>
|
|
<exception cref="T:System.ArgumentException">The connection string is incorrectly formatted (perhaps missing the required "=" within a key/value pair).</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.Clear">
|
|
<summary>Clears the contents of the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> instance.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.ContainsKey(System.String)">
|
|
<summary>Determines whether the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> contains a specific key.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> contains an element that has the specified key; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.DataSource">
|
|
<summary>Gets or sets the name of the data source to connect to.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.OleDb.OleDbConnectionStringBuilder.DataSource" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.FileName">
|
|
<summary>Gets or sets the name of the Universal Data Link (UDL) file for connecting to the data source.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.OleDb.OleDbConnectionStringBuilder.FileName" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.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.ArgumentException">The connection string is incorrectly formatted (perhaps missing the required "=" within a key/value pair).</exception>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.Keys">
|
|
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.OleDbServices">
|
|
<summary>Gets or sets the value to be passed for the OLE DB Services key within the connection string.</summary>
|
|
<returns>The value corresponding to the OLE DB Services key within the connection string. By default, the value is -13.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.PersistSecurityInfo">
|
|
<summary>Gets or sets a Boolean value that indicates whether security-sensitive information, such as the password, is 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="P:System.Data.OleDb.OleDbConnectionStringBuilder.PersistSecurityInfo" /> property, or <see langword="false" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbConnectionStringBuilder.Provider">
|
|
<summary>Gets or sets a string that contains the name of the data provider associated with the internal connection string.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.OleDb.OleDbConnectionStringBuilder.Provider" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.Remove(System.String)">
|
|
<summary>Removes the entry with the specified key from the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> 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.OleDb.OleDbConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the key existed within the connection string and was removed, <see langword="false" /> if the key did not exist.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
|
|
<summary>Retrieves a value corresponding to the supplied key from the <see cref="T:System.Data.OleDb.OleDbConnectionStringBuilder" /> instance.</summary>
|
|
<param name="keyword">The key of the item to retrieve.</param>
|
|
<param name="value">The value corresponding to <paramref name="keyword" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if <paramref name="keyword" /> was found within the connection string; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> contains a null value (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbDataAdapter">
|
|
<summary>Represents a set of data commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet" /> and update the data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.Data.OleDb.OleDbCommand)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> class with the specified <see cref="T:System.Data.OleDb.OleDbCommand" /> as the <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" /> property.</summary>
|
|
<param name="selectCommand">An <see cref="T:System.Data.OleDb.OleDbCommand" /> that is a SELECT statement or stored procedure, and is set as the <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.Data.OleDb.OleDbConnection)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> class with a <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" />.</summary>
|
|
<param name="selectCommandText">A string that is an SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</param>
|
|
<param name="selectConnection">An <see cref="T:System.Data.OleDb.OleDbConnection" /> that represents the connection.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.#ctor(System.String,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" /> class with a <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" />.</summary>
|
|
<param name="selectCommandText">A string that is an SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</param>
|
|
<param name="selectConnectionString">The connection string.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.DeleteCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure for deleting records from the data set.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source that correspond to deleted rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataSet,System.Object,System.String)">
|
|
<summary>Adds or refreshes rows in the <see cref="T:System.Data.DataSet" /> to match those in an ADO <see langword="Recordset" /> or <see langword="Record" /> object using the specified <see cref="T:System.Data.DataSet" />, ADO object, and source table name.</summary>
|
|
<param name="dataSet">A <see cref="T:System.Data.DataSet" /> to fill with records and, if it is required, schema.</param>
|
|
<param name="ADODBRecordSet">An ADO <see langword="Recordset" /> or <see langword="Record" /> object.</param>
|
|
<param name="srcTable">The source table used for the table mappings.</param>
|
|
<returns>The number of rows successfully added to or refreshed in the <see cref="T:System.Data.DataSet" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
<exception cref="T:System.SystemException">The source table is invalid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.Fill(System.Data.DataTable,System.Object)">
|
|
<summary>Adds or refreshes rows in a <see cref="T:System.Data.DataTable" /> to match those in an ADO <see langword="Recordset" /> or <see langword="Record" /> object using the specified <see cref="T:System.Data.DataTable" /> and ADO objects.</summary>
|
|
<param name="dataTable">A <see cref="T:System.Data.DataTable" /> to fill with records and, if it is required, schema.</param>
|
|
<param name="ADODBRecordSet">An ADO <see langword="Recordset" /> or <see langword="Record" /> object.</param>
|
|
<returns>The number of rows successfully refreshed to the <see cref="T:System.Data.DataTable" />. This does not include rows affected by statements that do not return rows.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.InsertCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to insert new records into the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="E:System.Data.OleDb.OleDbDataAdapter.RowUpdated">
|
|
<summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> after a command is executed against the data source. The attempt to update is made. Therefore, the event occurs.</summary>
|
|
</member>
|
|
<member name="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating">
|
|
<summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> before a command is executed against the data source. The attempt to update is made. Therefore, the event occurs.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.SelectCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to select records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)" /> to select records from data source for placement in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#DeleteCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.DeleteCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during an update to delete records in the data source for deleted rows in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#InsertCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.InsertCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during an update to insert records from a data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#SelectCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.SelectCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during an update to select records from a data source for placement in the data set.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.System#Data#IDbDataAdapter#UpdateCommand">
|
|
<summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.UpdateCommand" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> used during an update to update records in the data source for modified rows in the data set.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataAdapter.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataAdapter.UpdateCommand">
|
|
<summary>Gets or sets an SQL statement or stored procedure used to update records in the data source.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source that correspond to modified rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbDataReader">
|
|
<summary>Provides a way of reading a forward-only stream of data rows from a data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.Close">
|
|
<summary>Closes the <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.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.OleDb.OleDbDataReader.FieldCount">
|
|
<summary>Gets the number of columns in the current row.</summary>
|
|
<returns>When not positioned in a valid recordset, 0; otherwise the number of columns in the current record. The default is -1.</returns>
|
|
<exception cref="T:System.NotSupportedException">There is no current connection to a data source.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetBoolean(System.Int32)">
|
|
<summary>Gets the value of the specified column as a Boolean.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetByte(System.Int32)">
|
|
<summary>Gets the value of the specified column as a byte.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column as a byte.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the field from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to read the stream of bytes.</param>
|
|
<param name="bufferIndex">The index within the <paramref name="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.OleDb.OleDbDataReader.GetChar(System.Int32)">
|
|
<summary>Gets the value of the specified column as a character.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.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="ordinal">The zero-based column ordinal.</param>
|
|
<param name="dataIndex">The index within the row from which to start the read operation.</param>
|
|
<param name="buffer">The buffer into which to copy data.</param>
|
|
<param name="bufferIndex">The index within the <paramref name="buffer" /> where the write operation is to start.</param>
|
|
<param name="length">The number of characters to read.</param>
|
|
<returns>The actual number of characters read.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetData(System.Int32)">
|
|
<summary>Returns an <see cref="T:System.Data.OleDb.OleDbDataReader" /> object for the requested column ordinal.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetDataTypeName(System.Int32)">
|
|
<summary>Gets the name of the source data type.</summary>
|
|
<param name="index">The zero-based column ordinal.</param>
|
|
<returns>The name of the back-end data type. For more information, see SQL Server data types or Access data types.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetDateTime(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetDecimal(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.Decimal" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetDouble(System.Int32)">
|
|
<summary>Gets the value of the specified column as a double-precision floating-point number.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetEnumerator">
|
|
<summary>Returns an <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the rows in the data reader.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetFieldType(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
|
|
<param name="index">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> that is the data type of the object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetFloat(System.Int32)">
|
|
<summary>Gets the value of the specified column as a single-precision floating-point number.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetGuid(System.Int32)">
|
|
<summary>Gets the value of the specified column as a globally unique identifier (GUID).</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetInt16(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetInt32(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetInt64(System.Int32)">
|
|
<summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetName(System.Int32)">
|
|
<summary>Gets the name of the specified column.</summary>
|
|
<param name="index">The zero-based column ordinal.</param>
|
|
<returns>The name of the specified column.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.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.OleDb.OleDbDataReader.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.OleDb.OleDbDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> is closed.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetString(System.Int32)">
|
|
<summary>Gets the value of the specified column as a string.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetTimeSpan(System.Int32)">
|
|
<summary>Gets the value of the specified column as a <see cref="T:System.TimeSpan" /> object.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value of the specified column.</returns>
|
|
<exception cref="T:System.InvalidCastException">The specified cast is not valid.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.GetValue(System.Int32)">
|
|
<summary>Gets the value of the column at the specified ordinal in its native format.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>The value to return.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.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" /> into which to copy the attribute columns.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> in the array.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.HasRows">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OleDb.OleDbDataReader" /> contains one or more rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbDataReader" /> contains one or more rows; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.IsClosed">
|
|
<summary>Indicates whether the data reader is closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbDataReader" /> is closed; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.IsDBNull(System.Int32)">
|
|
<summary>Gets a value that indicates whether the column contains nonexistent or missing values.</summary>
|
|
<param name="ordinal">The zero-based column ordinal.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.Item(System.Int32)">
|
|
<summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
|
|
<param name="index">The 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="P:System.Data.IDataRecord.FieldCount" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.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="M:System.Data.OleDb.OleDbDataReader.NextResult">
|
|
<summary>Advances the data reader to the next result, when reading the results of batch SQL statements.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more result sets; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbDataReader.Read">
|
|
<summary>Advances the <see cref="T:System.Data.OleDb.OleDbDataReader" /> to the next record.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.RecordsAffected">
|
|
<summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
|
|
<returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbDataReader.VisibleFieldCount">
|
|
<summary>Gets the number of fields in the <see cref="T:System.Data.OleDb.OleDbDataReader" /> that are not hidden.</summary>
|
|
<returns>The number of fields that are not hidden.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbEnumerator">
|
|
<summary>Provides a mechanism for enumerating all available OLE DB providers within the local network.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbEnumerator.#ctor">
|
|
<summary>Creates an instance of the <see cref="T:System.Data.OleDb.OleDbEnumerator" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbEnumerator.GetElements">
|
|
<summary>Retrieves a <see cref="T:System.Data.DataTable" /> that contains information about all visible OLE DB providers.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains information about the visible OLE DB providers.</returns>
|
|
<exception cref="T:System.InvalidCastException">The provider does not support ISourcesRowset.</exception>
|
|
<exception cref="T:System.Data.OleDb.OleDbException">Exception has occurred in the underlying provider.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbEnumerator.GetEnumerator(System.Type)">
|
|
<summary>Uses a specific OLE DB enumerator to return an <see cref="T:System.Data.OleDb.OleDbDataReader" /> that contains information about the currently installed OLE DB providers, without requiring an instance of the <see cref="T:System.Data.OleDb.OleDbEnumerator" /> class.</summary>
|
|
<param name="type">A <see cref="T:System.Type" />.</param>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbDataReader" /> that contains information about the requested OLE DB providers, using the specified OLE DB enumerator.</returns>
|
|
<exception cref="T:System.InvalidCastException">The provider does not support ISourcesRowset.</exception>
|
|
<exception cref="T:System.Data.OleDb.OleDbException">An exception has occurred in the underlying provider.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbEnumerator.GetRootEnumerator">
|
|
<summary>Returns an <see cref="T:System.Data.OleDb.OleDbDataReader" /> that contains information about the currently installed OLE DB providers, without requiring an instance of the <see cref="T:System.Data.OleDb.OleDbEnumerator" /> class.</summary>
|
|
<returns>A <see cref="T:System.Data.OleDb.OleDbDataReader" /> that contains information about the visible OLE DB providers.</returns>
|
|
<exception cref="T:System.InvalidCastException">The provider does not support ISourcesRowset.</exception>
|
|
<exception cref="T:System.Data.OleDb.OleDbException">Exception has occurred in the underlying provider.</exception>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbError">
|
|
<summary>Collects information relevant to a warning or error returned by the data source.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbError.Message">
|
|
<summary>Gets a short description of the error.</summary>
|
|
<returns>A short description of the error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbError.NativeError">
|
|
<summary>Gets the database-specific error information.</summary>
|
|
<returns>The database-specific error information.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbError.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.OleDb.OleDbError.SQLState">
|
|
<summary>Gets the five-character error code following the ANSI SQL standard for the database.</summary>
|
|
<returns>The five-character error code, which identifies the source of the error, if the error can be issued from more than one place.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbError.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.OleDb.OleDbErrorCollection">
|
|
<summary>Collects all errors generated by the .NET Framework Data Provider for OLE DB. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies the elements of the <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> into an <see cref="T:System.Array" />, starting at the specified index within the <see cref="T:System.Array" />.</summary>
|
|
<param name="array">The <see cref="T:System.Array" /> into which to copy the elements.</param>
|
|
<param name="index">The starting index of the <paramref name="array" />.</param>
|
|
<exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and the number of elements in the <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> is greater than the length of the <see cref="T:System.Array" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="array" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> is not valid for <paramref name="array" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbErrorCollection.CopyTo(System.Data.OleDb.OleDbError[],System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> to the specified <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> starting at the specified destination index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.OleDb.OleDbErrorCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.OleDb.OleDbErrorCollection" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbErrorCollection.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.OleDb.OleDbErrorCollection.GetEnumerator">
|
|
<summary>Exposes the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method, which supports a simple iteration over a collection by a .NET Framework data provider.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbErrorCollection.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>An <see cref="T:System.Data.OleDb.OleDbError" /> that contains the error at the specified index.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#IsSynchronized">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the collection is synchronized (thread safe); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbErrorCollection.System#Collections#ICollection#SyncRoot">
|
|
<summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
|
|
<returns>A <see cref="T:System.Object" /> that can be used to synchronize access to the collection.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbException">
|
|
<summary>The exception that is thrown when the underlying provider returns a warning or error for an OLE DB data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbException.ErrorCode">
|
|
<summary>Gets the HRESULT of the error.</summary>
|
|
<returns>The HRESULT of the error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbException.Errors">
|
|
<summary>Gets a collection of one or more <see cref="T:System.Data.OleDb.OleDbError" /> objects that give detailed information about exceptions generated by the .NET Framework Data Provider for OLE DB.</summary>
|
|
<returns>The collected instances of the <see cref="T:System.Data.OleDb.OleDbError" /> class.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>This member overrides <see cref="M:System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />.</summary>
|
|
<param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="si" /> parameter is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbFactory">
|
|
<summary>Represents a set of methods for creating instances of the OLEDB provider's implementation of the data source classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateCommand">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbCommand" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateCommandBuilder">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbCommandBuilder" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateConnection">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbConnection" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbConnection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateConnectionStringBuilder">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateDataAdapter">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbDataAdapter" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreateParameter">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Data.Common.DbParameter" /> instance.</summary>
|
|
<returns>A new strongly-typed instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbFactory.CreatePermission(System.Security.Permissions.PermissionState)">
|
|
<summary>Returns a strongly-typed <see cref="T:System.Security.CodeAccessPermission" /> instance.</summary>
|
|
<param name="state">A member of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration.</param>
|
|
<returns>A strongly-typed instance of <see cref="T:System.Security.CodeAccessPermission" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbFactory.Instance">
|
|
<summary>Gets an instance of the <see cref="T:System.Data.OleDb.OleDbFactory" />. This can be used to retrieve strongly-typed data objects.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbInfoMessageEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.OleDb.OleDbConnection.InfoMessage" /> event. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbInfoMessageEventArgs.ErrorCode">
|
|
<summary>Gets the HRESULT following the ANSI SQL standard for the database.</summary>
|
|
<returns>The HRESULT, which identifies the source of the error, if the error can be issued from more than one place.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbInfoMessageEventArgs.Errors">
|
|
<summary>Gets the collection of warnings sent from the data source.</summary>
|
|
<returns>The collection of warnings sent from the data source.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbInfoMessageEventArgs.Message">
|
|
<summary>Gets the full text of the error sent from the data source.</summary>
|
|
<returns>The full text of the error.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbInfoMessageEventArgs.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.OleDb.OleDbInfoMessageEventArgs.ToString">
|
|
<summary>Retrieves a string representation of the <see cref="E:System.Data.OleDb.OleDbConnection.InfoMessage" /> event.</summary>
|
|
<returns>A string representing the <see cref="E:System.Data.OleDb.OleDbConnection.InfoMessage" /> event.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbInfoMessageEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.OleDb.OleDbConnection.InfoMessage" /> event of an <see cref="T:System.Data.OleDb.OleDbConnection" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">An <see cref="T:System.Data.OleDb.OleDbInfoMessageEventArgs" /> object that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbLiteral">
|
|
<summary>Returns information about literals used in text commands, data values, and database objects.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Binary_Literal">
|
|
<summary>A binary literal in a text command. Maps to DBLITERAL_BINARY_LITERAL.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Catalog_Name">
|
|
<summary>A catalog name in a text command. Maps to DBLITERAL_CATALOG_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Catalog_Separator">
|
|
<summary>The character that separates the catalog name from the rest of the identifier in a text command. Maps to DBLITERAL_CATALOG_SEPARATOR.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Char_Literal">
|
|
<summary>A character literal in a text command. Maps to DBLITERAL_CHAR_LITERAL.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Column_Alias">
|
|
<summary>A column alias in a text command. Maps to DBLITERAL_COLUMN_ALIAS.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Column_Name">
|
|
<summary>A column name used in a text command or in a data-definition interface. Maps to DBLITERAL_COLUMN_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Correlation_Name">
|
|
<summary>A correlation name (table alias) in a text command. Maps to DBLITERAL_CORRELATION_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Cube_Name">
|
|
<summary>The name of a cube in a schema (or the catalog if the provider does not support schemas).</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Cursor_Name">
|
|
<summary>A cursor name in a text command. Maps to DBLITERAL_CURSOR_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Dimension_Name">
|
|
<summary>The name of the dimension. If a dimension is part of more than one cube, there is one row for each cube/dimension combination.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Prefix">
|
|
<summary>The character used in a LIKE clause to escape the character returned for the DBLITERAL_LIKE_PERCENT literal. For example, if a percent sign (%) is used to match zero or more characters and this is a backslash (\), the characters "abc\%%" match all character values that start with "abc%". Some SQL dialects support a clause (the ESCAPE clause) that can be used to override this value. Maps to DBLITERAL_ESCAPE_PERCENT_PREFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Escape_Percent_Suffix">
|
|
<summary>The escape character, if any, used to suffix the character returned for the DBLITERAL_LIKE_PERCENT literal. For example, if a percent sign (%) is used to match zero or more characters and percent signs are escaped by enclosing in open and close square brackets, DBLITERAL_ESCAPE_PERCENT_PREFIX is "[", DBLITERAL_ESCAPE_PERCENT_SUFFIX is "]", and the characters "abc[%]%" match all character values that start with "abc%". Providers that do not use a suffix character to escape the DBLITERAL_ESCAPE_PERCENT character do not return this literal value and can set the lt member of the DBLITERAL structure to DBLITERAL_INVALID if requested. Maps to DBLITERAL_ESCAPE_PERCENT_SUFFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Prefix">
|
|
<summary>The character used in a LIKE clause to escape the character returned for the DBLITERAL_LIKE_UNDERSCORE literal. For example, if an underscore () is used to match exactly one character and this is a backslash (\), the characters "abc\\ " match all character values that are five characters long and start with "abc\". Some SQL dialects support a clause (the ESCAPE clause) that can be used to override this value. Maps to DBLITERAL_ESCAPE_UNDERSCORE_PREFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Escape_Underscore_Suffix">
|
|
<summary>The character used in a LIKE clause to escape the character returned for the DBLITERAL_LIKE_UNDERSCORE literal. For example, if an underscore () is used to match exactly one character and this is a backslash (\), the characters "abc\\ " match all character values that are five characters long and start with "abc\". Some SQL dialects support a clause (the ESCAPE clause) that can be used to override this value. Maps to DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Hierarchy_Name">
|
|
<summary>The name of the hierarchy. If the dimension does not contain a hierarchy or has only one hierarchy, the current column contains a null value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Index_Name">
|
|
<summary>An index name used in a text command or in a data-definition interface. Maps to DBLITERAL_INDEX_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Invalid">
|
|
<summary>An invalid value. Maps to DBLITERAL_INVALID.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Level_Name">
|
|
<summary>Name of the cube to which the current level belongs.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Like_Percent">
|
|
<summary>The character used in a LIKE clause to match zero or more characters. For example, if this is a percent sign (%), the characters "abc%" match all character values that start with "abc". Maps to DBLITERAL_LIKE_PERCENT.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Like_Underscore">
|
|
<summary>The character used in a LIKE clause to match exactly one character. For example, if this is an underscore (), the characters "abc\" match all character values that are four characters long and start with "abc". Maps to DBLITERAL_LIKE_UNDERSCORE.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Member_Name">
|
|
<summary>The name of the member.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Procedure_Name">
|
|
<summary>A procedure name in a text command. Maps to DBLITERAL_PROCEDURE_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Property_Name">
|
|
<summary>The name of the property.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Quote_Prefix">
|
|
<summary>The character used in a text command as the opening quote for quoting identifiers that contain special characters. Maps to DBLITERAL_QUOTE_PREFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Quote_Suffix">
|
|
<summary>The character used in a text command as the closing quote for quoting identifiers that contain special characters. 1.x providers that use the same character as the prefix and suffix may not return this literal value and can set the member of the DBLITERAL structure to DBLITERAL_INVALID if requested. Maps to DBLITERAL_QUOTE_SUFFIX.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Schema_Name">
|
|
<summary>A schema name in a text command. Maps to DBLITERAL_SCHEMA_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Schema_Separator">
|
|
<summary>The character that separates the schema name from the rest of the identifier in a text command. Maps to DBLITERAL_SCHEMA_SEPARATOR.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Table_Name">
|
|
<summary>A table name used in a text command or in a data-definition interface. Maps to DBLITERAL_TABLE_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.Text_Command">
|
|
<summary>A text command, such as an SQL statement. Maps to DBLITERAL_TEXT_COMMAND.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.User_Name">
|
|
<summary>A user name in a text command. Maps to DBLITERAL_USER_NAME.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbLiteral.View_Name">
|
|
<summary>A view name in a text command. Maps to DBLITERAL_VIEW_NAME.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbMetaDataCollectionNames">
|
|
<summary>Provides a list of constants for use with the GetSchema method to retrieve metadata collections.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Catalogs">
|
|
<summary>A constant for use with the GetSchema method that represents the Catalogs collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Collations">
|
|
<summary>A constant for use with the GetSchema method that represents the Collations collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Columns">
|
|
<summary>A constant for use with the GetSchema method that represents the Columns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Indexes">
|
|
<summary>A constant for use with the GetSchema method that represents the Indexes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureColumns">
|
|
<summary>A constant for use with the GetSchema method that represents the ProcedureColumns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.ProcedureParameters">
|
|
<summary>A constant for use with the GetSchema method that represents the ProcedureParameters collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Procedures">
|
|
<summary>A constant for use with the GetSchema method that represents the Procedures collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Tables">
|
|
<summary>A constant for use with the GetSchema method that represents the Tables collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataCollectionNames.Views">
|
|
<summary>A constant for use with the GetSchema method that represents the Views collection.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbMetaDataColumnNames">
|
|
<summary>Provides static values that are used for the column names in the <see cref="T:System.Data.OleDb.OleDbMetaDataCollectionNames" /> objects contained in the <see cref="T:System.Data.DataTable" />. The <see cref="T:System.Data.DataTable" /> is created by the GetSchema method.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanFalseLiteral">
|
|
<summary>Used by the GetSchema method to create the BooleanFalseLiteral column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataColumnNames.BooleanTrueLiteral">
|
|
<summary>Used by the GetSchema method to create the BooleanTrueLiteral column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataColumnNames.DateTimeDigits">
|
|
<summary>Used by the GetSchema method to create the DateTimeDigits column.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbMetaDataColumnNames.NativeDataType">
|
|
<summary>Used by the GetSchema method to create the NativeDataType column.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbParameter">
|
|
<summary>Represents a parameter to an <see cref="T:System.Data.OleDb.OleDbCommand" /> and optionally its mapping to a <see cref="T:System.Data.DataSet" /> column. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name and data type.</summary>
|
|
<param name="name">The name of the parameter to map.</param>
|
|
<param name="dataType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dataType" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name, data type, and length.</summary>
|
|
<param name="name">The name of the parameter to map.</param>
|
|
<param name="dataType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dataType" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name, data type, length, source column name, parameter direction, numeric precision, and other properties.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="dbType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> values.</param>
|
|
<param name="isNullable">
|
|
<see langword="true" /> if the value of the field can be null; otherwise <see langword="false" />.</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.OleDb.OleDbParameter.Value" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved.</param>
|
|
<param name="srcColumn">The name of the source column.</param>
|
|
<param name="srcVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.OleDb.OleDbParameter" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dataType" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.Data.ParameterDirection,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name, data type, length, source column name, parameter direction, numeric precision, and other properties.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="dbType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> 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.OleDb.OleDbParameter.Value" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved.</param>
|
|
<param name="sourceColumn">The name of the source column.</param>
|
|
<param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="sourceColumnNullMapping">
|
|
<see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.OleDb.OleDbParameter" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dataType" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name, data type, length, and source column name.</summary>
|
|
<param name="name">The name of the parameter to map.</param>
|
|
<param name="dataType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="srcColumn">The name of the source column.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dataType" /> parameter is an invalid back-end data type.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.#ctor(System.String,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbParameter" /> class that uses the parameter name and the value of the new <see cref="T:System.Data.OleDb.OleDbParameter" />.</summary>
|
|
<param name="name">The name of the parameter to map.</param>
|
|
<param name="value">The value of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.DbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DbType" /> values. The default is <see cref="F:System.Data.DbType.String" />.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The property was not set to a valid <see cref="T:System.Data.DbType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.Direction">
|
|
<summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return-value parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.IsNullable">
|
|
<summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null values are accepted; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.OleDbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbType" /> of the parameter.</summary>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbType" /> of the parameter. The default is <see cref="F:System.Data.OleDb.OleDbType.VarWChar" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.ParameterName">
|
|
<summary>Gets or sets the name of the <see cref="T:System.Data.OleDb.OleDbParameter" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.OleDb.OleDbParameter" />. The default is an empty string ("").</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.Precision">
|
|
<summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> property.</summary>
|
|
<returns>The maximum number of digits used to represent the <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> property. The default value is 0, which indicates that the data provider sets the precision for <see cref="P:System.Data.OleDb.OleDbParameter.Value" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.ResetDbType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.OleDb.OleDbParameter" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.ResetOleDbType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.OleDb.OleDbParameter" />.</summary>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.Scale">
|
|
<summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> is resolved. The default is 0.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.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.OleDb.OleDbParameter.SourceColumn">
|
|
<summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:System.Data.OleDb.OleDbParameter.Value" />.</summary>
|
|
<returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet" />. The default is an empty string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.SourceColumnNullMapping">
|
|
<summary>Sets or gets a value which indicates whether the source column is nullable. This allows <see cref="T:System.Data.Common.DbCommandBuilder" /> to correctly generate Update statements for nullable columns.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.SourceVersion">
|
|
<summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when you load <see cref="P:System.Data.OleDb.OleDbParameter.Value" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set to one of the <see cref="T:System.Data.DataRowVersion" /> values.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.System#ICloneable#Clone">
|
|
<summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameter.ToString">
|
|
<summary>Gets a string that contains the <see cref="P:System.Data.OleDb.OleDbParameter.ParameterName" />.</summary>
|
|
<returns>A string that contains the <see cref="P:System.Data.OleDb.OleDbParameter.ParameterName" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameter.Value">
|
|
<summary>Gets or sets the value of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbParameterCollection">
|
|
<summary>Represents a collection of parameters relevant to an <see cref="T:System.Data.OleDb.OleDbCommand" /> as well as their respective mappings to columns in a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.Data.OleDb.OleDbParameter)">
|
|
<summary>Adds the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.OleDb.OleDbParameter" /> to add to the collection.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.OleDb.OleDbParameter" /> specified in the <paramref name="value" /> parameter is already added to this or another <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.Object)">
|
|
<summary>Adds the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> object to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">A <see cref="T:System.Object" />.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object in the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType)">
|
|
<summary>Adds an <see cref="T:System.Data.OleDb.OleDbParameter" /> to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />, given the parameter name and data type.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="oleDbType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32)">
|
|
<summary>Adds an <see cref="T:System.Data.OleDb.OleDbParameter" /> to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> given the parameter name, data type, and column length.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="oleDbType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the column.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Data.OleDb.OleDbType,System.Int32,System.String)">
|
|
<summary>Adds an <see cref="T:System.Data.OleDb.OleDbParameter" /> to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> given the parameter name, data type, column length, and source column name.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="oleDbType">One of the <see cref="T:System.Data.OleDb.OleDbType" /> values.</param>
|
|
<param name="size">The length of the column.</param>
|
|
<param name="sourceColumn">The name of the source column.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Add(System.String,System.Object)">
|
|
<summary>Adds an <see cref="T:System.Data.OleDb.OleDbParameter" /> to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> given the parameter name and value.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="value">The <see cref="P:System.Data.OleDb.OleDbParameter.Value" /> of the <see cref="T:System.Data.OleDb.OleDbParameter" /> to add to the collection.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">The <paramref name="value" /> parameter is not an <see cref="T:System.Data.OleDb.OleDbParameter" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Array)">
|
|
<summary>Adds an array of values to the end of the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="values">The <see cref="T:System.Array" /> values to add.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.AddRange(System.Data.OleDb.OleDbParameter[])">
|
|
<summary>Adds an array of <see cref="T:System.Data.OleDb.OleDbParameter" /> values to the end of the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="values">The <see cref="T:System.Data.OleDb.OleDbParameter" /> values to add.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.AddWithValue(System.String,System.Object)">
|
|
<summary>Adds a value to the end of the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="value">The value to be added.</param>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Clear">
|
|
<summary>Removes all <see cref="T:System.Data.OleDb.OleDbParameter" /> objects from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Data.OleDb.OleDbParameter)">
|
|
<summary>Determines whether the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> is in this <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.OleDb.OleDbParameter" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameter" /> is in the collection; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Contains(System.Object)">
|
|
<summary>Determines whether the specified <see cref="T:System.Object" /> is in this <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> contains <paramref name="value" />; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Contains(System.String)">
|
|
<summary>Determines whether the specified <see cref="T:System.String" /> is in this <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.String" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> contains the value; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Array,System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.CopyTo(System.Data.OleDb.OleDbParameter[],System.Int32)">
|
|
<summary>Copies all the elements of the current <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> to the specified <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> starting at the specified destination index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> at which copying starts.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.Count">
|
|
<summary>Returns an integer that contains the number of elements in the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />. Read-only.</summary>
|
|
<returns>The number of elements in the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> as an integer.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.GetEnumerator">
|
|
<summary>Returns an enumerator that iterates through the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Data.OleDb.OleDbParameter)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.OleDb.OleDbParameter" /> object in the collection to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> that is a <see cref="T:System.Data.OleDb.OleDbParameter" /> within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.Object)">
|
|
<summary>The location of the specified <see cref="T:System.Object" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> within the collection.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.IndexOf(System.String)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.OleDb.OleDbParameter" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.OleDb.OleDbParameter" /> with the specified case-sensitive name.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Data.OleDb.OleDbParameter)">
|
|
<summary>Inserts a <see cref="T:System.Data.OleDb.OleDbParameter" /> object into the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> 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.Data.OleDb.OleDbParameter" /> object to be inserted in the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts a <see cref="T:System.Object" /> into the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> 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.Object" /> to be inserted in the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> has a fixed size. Read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> has a fixed size; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> is read only; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.IsSynchronized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> is synchronized. Read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> is synchronized; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.Item(System.Int32)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbParameter" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbParameter" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The index specified does not exist.</exception>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.Item(System.String)">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The name of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbParameter" /> with the specified name.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The name specified does not exist.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Data.OleDb.OleDbParameter)">
|
|
<summary>Removes the <see cref="T:System.Data.OleDb.OleDbParameter" /> from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">An <see cref="T:System.Data.OleDb.OleDbParameter" /> object to remove from the collection.</param>
|
|
<exception cref="T:System.InvalidCastException">The parameter is not a <see cref="T:System.Data.OleDb.OleDbParameter" />.</exception>
|
|
<exception cref="T:System.SystemException">The parameter does not exist in the collection.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.Remove(System.Object)">
|
|
<summary>Removes the <see cref="T:System.Object" /> object from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" /> to be removed from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.Int32)">
|
|
<summary>Removes the <see cref="T:System.Data.OleDb.OleDbParameter" /> from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.OleDb.OleDbParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbParameterCollection.RemoveAt(System.String)">
|
|
<summary>Removes the <see cref="T:System.Data.OleDb.OleDbParameter" /> from the <see cref="T:System.Data.OleDb.OleDbParameterCollection" /> at the specified parameter name.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.OleDb.OleDbParameter" /> object to remove.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbParameterCollection.SyncRoot">
|
|
<summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />. Read-only.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Data.OleDb.OleDbParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbPermission">
|
|
<summary>Enables the .NET Framework Data Provider for OLE DB to help make sure that a user has a security level sufficient to access an OLE DB data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermission.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbPermission" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbPermission" /> class.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbPermission" /> class.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
<param name="allowBlankPassword">Indicates whether a blank password is allowed.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermission.Copy">
|
|
<summary>Returns the <see cref="T:System.Data.OleDb.OleDbPermission" /> as an <see cref="T:System.Security.IPermission" />.</summary>
|
|
<returns>A copy of the current permission object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbPermission.Provider">
|
|
<summary>This property has been marked as obsolete. Setting this property will have no effect.</summary>
|
|
<returns>This property has been marked as obsolete. Setting this property will have no effect.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbPermissionAttribute">
|
|
<summary>Associates a security action with a custom security attribute.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbPermissionAttribute" /> class.</summary>
|
|
<param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values representing an action that can be performed by using declarative security.</param>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbPermissionAttribute.CreatePermission">
|
|
<summary>Returns an <see cref="T:System.Data.OleDb.OleDbPermission" /> object that is configured according to the attribute properties.</summary>
|
|
<returns>An <see cref="T:System.Data.OleDb.OleDbPermission" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbPermissionAttribute.Provider">
|
|
<summary>Gets or sets a comma-delimited string that contains a list of supported providers.</summary>
|
|
<returns>A comma-delimited list of providers allowed by the security policy.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbRowUpdatedEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdated" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbRowUpdatedEventArgs.#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.OleDb.OleDbRowUpdatedEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbRowUpdatedEventArgs.Command">
|
|
<summary>Gets the <see cref="T:System.Data.OleDb.OleDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbRowUpdatedEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdated" /> event of an <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.OleDb.OleDbRowUpdatedEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbRowUpdatingEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbRowUpdatingEventArgs.#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.OleDb.OleDbRowUpdatingEventArgs" /> class.</summary>
|
|
<param name="dataRow">The <see cref="T:System.Data.DataRow" /> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbRowUpdatingEventArgs.Command">
|
|
<summary>Gets or sets the <see cref="T:System.Data.OleDb.OleDbCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbRowUpdatingEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.OleDb.OleDbDataAdapter.RowUpdating" /> event of an <see cref="T:System.Data.OleDb.OleDbDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.OleDb.OleDbRowUpdatingEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbSchemaGuid">
|
|
<summary>Returns the type of schema table specified by the <see cref="M:System.Data.OleDb.OleDbConnection.GetOleDbSchemaTable(System.Guid,System.Object[])" /> method.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbSchemaGuid.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.OleDb.OleDbSchemaGuid" /> class.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Assertions">
|
|
<summary>Returns the assertions defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Catalogs">
|
|
<summary>Returns the physical attributes associated with catalogs accessible from the data source. Returns the assertions defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Character_Sets">
|
|
<summary>Returns the character sets defined in the catalog that is accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints">
|
|
<summary>Returns the check constraints defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Check_Constraints_By_Table">
|
|
<summary>Returns the check constraints defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Collations">
|
|
<summary>Returns the character collations defined in the catalog that is accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Column_Domain_Usage">
|
|
<summary>Returns the columns defined in the catalog that are dependent on a domain defined in the catalog and owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Column_Privileges">
|
|
<summary>Returns the privileges on columns of tables defined in the catalog that are available to or granted by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Columns">
|
|
<summary>Returns the columns of tables (including views) defined in the catalog that is accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Column_Usage">
|
|
<summary>Returns the columns used by referential constraints, unique constraints, check constraints, and assertions, defined in the catalog and owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Constraint_Table_Usage">
|
|
<summary>Returns the tables that are used by referential constraints, unique constraints, check constraints, and assertions defined in the catalog and owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.DbInfoKeywords">
|
|
<summary>Returns a list of provider-specific keywords.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.DbInfoLiterals">
|
|
<summary>Returns a list of provider-specific literals used in text commands.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Foreign_Keys">
|
|
<summary>Returns the foreign key columns defined in the catalog by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Indexes">
|
|
<summary>Returns the indexes defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Key_Column_Usage">
|
|
<summary>Returns the columns defined in the catalog that is constrained as keys by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Primary_Keys">
|
|
<summary>Returns the primary key columns defined in the catalog by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Columns">
|
|
<summary>Returns information about the columns of rowsets returned by procedures.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Procedure_Parameters">
|
|
<summary>Returns information about the parameters and return codes of procedures.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Procedures">
|
|
<summary>Returns the procedures defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Provider_Types">
|
|
<summary>Returns the base data types supported by the .NET Framework Data Provider for OLE DB.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Referential_Constraints">
|
|
<summary>Returns the referential constraints defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.SchemaGuids">
|
|
<summary>Returns a list of schema rowsets, identified by their GUIDs, and a pointer to the descriptions of the restriction columns.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Schemata">
|
|
<summary>Returns the schema objects that are owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Sql_Languages">
|
|
<summary>Returns the conformance levels, options, and dialects supported by the SQL-implementation processing data defined in the catalog.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Statistics">
|
|
<summary>Returns the statistics defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Table_Constraints">
|
|
<summary>Returns the table constraints defined in the catalog that is owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Table_Privileges">
|
|
<summary>Returns the privileges on tables defined in the catalog that are available to, or granted by, a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Table_Statistics">
|
|
<summary>Describes the available set of statistics on tables in the provider.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Tables">
|
|
<summary>Returns the tables (including views) defined in the catalog that are accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Tables_Info">
|
|
<summary>Returns the tables (including views) that are accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Translations">
|
|
<summary>Returns the character translations defined in the catalog that is accessible to a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Trustee">
|
|
<summary>Identifies the trustees defined in the data source.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Usage_Privileges">
|
|
<summary>Returns the USAGE privileges on objects defined in the catalog that are available to or granted by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.View_Column_Usage">
|
|
<summary>Returns the columns on which viewed tables depend, as defined in the catalog and owned by a given user.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.View_Table_Usage">
|
|
<summary>Returns the tables on which viewed tables, defined in the catalog and owned by a given user, are dependent.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbSchemaGuid.Views">
|
|
<summary>Returns the views defined in the catalog that is accessible to a given user.</summary>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbTransaction">
|
|
<summary>Represents an SQL transaction to be made at a data source. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbTransaction.Begin">
|
|
<summary>Initiates a nested database transaction.</summary>
|
|
<returns>A nested database transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Nested transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbTransaction.Begin(System.Data.IsolationLevel)">
|
|
<summary>Initiates a nested database transaction and specifies the isolation level to use for the new transaction.</summary>
|
|
<param name="isolevel">The isolation level to use for the transaction.</param>
|
|
<returns>A nested database transaction.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Nested transactions are not supported.</exception>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbTransaction.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.OleDb.OleDbTransaction.Connection">
|
|
<summary>Gets the <see cref="T:System.Data.OleDb.OleDbConnection" /> object associated with the transaction, or <see langword="null" /> if the transaction is no longer valid.</summary>
|
|
<returns>The <see cref="T:System.Data.OleDb.OleDbConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="P:System.Data.OleDb.OleDbTransaction.IsolationLevel">
|
|
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default is <see langword="ReadCommitted" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.OleDb.OleDbTransaction.Rollback">
|
|
<summary>Rolls back a transaction from a pending state.</summary>
|
|
<exception cref="T:System.Exception">An error occurred while trying to commit the transaction.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.
|
|
-or-
|
|
The connection is broken.</exception>
|
|
</member>
|
|
<member name="T:System.Data.OleDb.OleDbType">
|
|
<summary>Specifies the data type of a field, a property, for use in an <see cref="T:System.Data.OleDb.OleDbParameter" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.BigInt">
|
|
<summary>A 64-bit signed integer (DBTYPE_I8). This maps to <see cref="T:System.Int64" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Binary">
|
|
<summary>A stream of binary data (DBTYPE_BYTES). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Boolean">
|
|
<summary>A Boolean value (DBTYPE_BOOL). This maps to <see cref="T:System.Boolean" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.BSTR">
|
|
<summary>A null-terminated character string of Unicode characters (DBTYPE_BSTR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Char">
|
|
<summary>A character string (DBTYPE_STR). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Currency">
|
|
<summary>A currency value ranging from -2 63 (or -922,337,203,685,477.5808) to 2 63 -1 (or +922,337,203,685,477.5807) with an accuracy to a ten-thousandth of a currency unit (DBTYPE_CY). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Date">
|
|
<summary>Date data, stored as a double (DBTYPE_DATE). The whole portion is the number of days since December 30, 1899, and the fractional portion is a fraction of a day. This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.DBDate">
|
|
<summary>Date data in the format yyyymmdd (DBTYPE_DBDATE). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.DBTime">
|
|
<summary>Time data in the format hhmmss (DBTYPE_DBTIME). This maps to <see cref="T:System.TimeSpan" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.DBTimeStamp">
|
|
<summary>Data and time data in the format yyyymmddhhmmss (DBTYPE_DBTIMESTAMP). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Decimal">
|
|
<summary>A fixed precision and scale numeric value between -10 38 -1 and 10 38 -1 (DBTYPE_DECIMAL). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Double">
|
|
<summary>A floating-point number within the range of -1.79E +308 through 1.79E +308 (DBTYPE_R8). This maps to <see cref="T:System.Double" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Empty">
|
|
<summary>No value (DBTYPE_EMPTY).</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Error">
|
|
<summary>A 32-bit error code (DBTYPE_ERROR). This maps to <see cref="T:System.Exception" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Filetime">
|
|
<summary>A 64-bit unsigned integer representing the number of 100-nanosecond intervals since January 1, 1601 (DBTYPE_FILETIME). This maps to <see cref="T:System.DateTime" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Guid">
|
|
<summary>A globally unique identifier (or GUID) (DBTYPE_GUID). This maps to <see cref="T:System.Guid" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.IDispatch">
|
|
<summary>A pointer to an <see langword="IDispatch" /> interface (DBTYPE_IDISPATCH). This maps to <see cref="T:System.Object" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Integer">
|
|
<summary>A 32-bit signed integer (DBTYPE_I4). This maps to <see cref="T:System.Int32" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.IUnknown">
|
|
<summary>A pointer to an <see langword="IUnknown" /> interface (DBTYPE_UNKNOWN). This maps to <see cref="T:System.Object" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.LongVarBinary">
|
|
<summary>A long binary value (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.LongVarChar">
|
|
<summary>A long string value (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.LongVarWChar">
|
|
<summary>A long null-terminated Unicode string value (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Numeric">
|
|
<summary>An exact numeric value with a fixed precision and scale (DBTYPE_NUMERIC). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.PropVariant">
|
|
<summary>An automation PROPVARIANT (DBTYPE_PROP_VARIANT). This maps to <see cref="T:System.Object" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Single">
|
|
<summary>A floating-point number within the range of -3.40E +38 through 3.40E +38 (DBTYPE_R4). This maps to <see cref="T:System.Single" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.SmallInt">
|
|
<summary>A 16-bit signed integer (DBTYPE_I2). This maps to <see cref="T:System.Int16" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.TinyInt">
|
|
<summary>A 8-bit signed integer (DBTYPE_I1). This maps to <see cref="T:System.SByte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.UnsignedBigInt">
|
|
<summary>A 64-bit unsigned integer (DBTYPE_UI8). This maps to <see cref="T:System.UInt64" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.UnsignedInt">
|
|
<summary>A 32-bit unsigned integer (DBTYPE_UI4). This maps to <see cref="T:System.UInt32" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.UnsignedSmallInt">
|
|
<summary>A 16-bit unsigned integer (DBTYPE_UI2). This maps to <see cref="T:System.UInt16" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.UnsignedTinyInt">
|
|
<summary>A 8-bit unsigned integer (DBTYPE_UI1). This maps to <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.VarBinary">
|
|
<summary>A variable-length stream of binary data (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to an <see cref="T:System.Array" /> of type <see cref="T:System.Byte" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.VarChar">
|
|
<summary>A variable-length stream of non-Unicode characters (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.Variant">
|
|
<summary>A special data type that can contain numeric, string, binary, or date data, and also the special values Empty and Null (DBTYPE_VARIANT). This type is assumed if no other is specified. This maps to <see cref="T:System.Object" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.VarNumeric">
|
|
<summary>A variable-length numeric value (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to <see cref="T:System.Decimal" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.VarWChar">
|
|
<summary>A variable-length, null-terminated stream of Unicode characters (<see cref="T:System.Data.OleDb.OleDbParameter" /> only). This maps to <see cref="T:System.String" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.OleDb.OleDbType.WChar">
|
|
<summary>A null-terminated stream of Unicode characters (DBTYPE_WSTR). This maps to <see cref="T:System.String" />.</summary>
|
|
</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.ParameterDirection">
|
|
<summary>Specifies the type of a parameter within a query relative to the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ParameterDirection.Input">
|
|
<summary>The parameter is an input parameter.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ParameterDirection.InputOutput">
|
|
<summary>The parameter is capable of both input and output.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ParameterDirection.Output">
|
|
<summary>The parameter is an output parameter.</summary>
|
|
</member>
|
|
<member name="F:System.Data.ParameterDirection.ReturnValue">
|
|
<summary>The parameter represents a return value from an operation such as a stored procedure, built-in function, or user-defined function.</summary>
|
|
</member>
|
|
<member name="T:System.Data.PropertyAttributes">
|
|
<summary>Specifies the attributes of a property.</summary>
|
|
</member>
|
|
<member name="F:System.Data.PropertyAttributes.NotSupported">
|
|
<summary>The property is not supported by the provider.</summary>
|
|
</member>
|
|
<member name="F:System.Data.PropertyAttributes.Optional">
|
|
<summary>The user does not need to specify a value for this property before the data source is initialized.</summary>
|
|
</member>
|
|
<member name="F:System.Data.PropertyAttributes.Read">
|
|
<summary>The user can read the property.</summary>
|
|
</member>
|
|
<member name="F:System.Data.PropertyAttributes.Required">
|
|
<summary>The user must specify a value for this property before the data source is initialized.</summary>
|
|
</member>
|
|
<member name="F:System.Data.PropertyAttributes.Write">
|
|
<summary>The user can write to the property.</summary>
|
|
</member>
|
|
<member name="T:System.Data.PropertyCollection">
|
|
<summary>Represents a collection of properties that can be added to <see cref="T:System.Data.DataColumn" />, <see cref="T:System.Data.DataSet" />, or <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.PropertyCollection.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.PropertyCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.PropertyCollection" /> class.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a given serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.PropertyCollection.Clone">
|
|
<summary>Creates a shallow copy of the <see cref="T:System.Data.PropertyCollection" /> object.</summary>
|
|
<returns>Returns <see cref="T:System.Object" />, a shallow copy of the <see cref="T:System.Data.PropertyCollection" /> object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.ReadOnlyException">
|
|
<summary>Represents the exception that is thrown when you try to change the value of a read-only column.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ReadOnlyException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.ReadOnlyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.ReadOnlyException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.ReadOnlyException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.RowNotInTableException">
|
|
<summary>Represents the exception that is thrown when you try to perform an operation on a <see cref="T:System.Data.DataRow" /> that is not in a <see cref="T:System.Data.DataTable" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.RowNotInTableException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.RowNotInTableException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.RowNotInTableException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.RowNotInTableException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.Rule">
|
|
<summary>Indicates the action that occurs when a <see cref="T:System.Data.ForeignKeyConstraint" /> is enforced.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Rule.Cascade">
|
|
<summary>Delete or update related rows. This is the default.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Rule.None">
|
|
<summary>No action taken on related rows.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Rule.SetDefault">
|
|
<summary>Set values in related rows to the value contained in the <see cref="P:System.Data.DataColumn.DefaultValue" /> property.</summary>
|
|
</member>
|
|
<member name="F:System.Data.Rule.SetNull">
|
|
<summary>Set values in related rows to <see langword="DBNull" />.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SchemaSerializationMode">
|
|
<summary>Indicates the schema serialization mode for a typed <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SchemaSerializationMode.ExcludeSchema">
|
|
<summary>Skips schema serialization for a typed <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SchemaSerializationMode.IncludeSchema">
|
|
<summary>Includes schema serialization for a typed <see cref="T:System.Data.DataSet" />. The default.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SchemaType">
|
|
<summary>Specifies how to handle existing schema mappings when performing a <see cref="M:System.Data.Common.DataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType)" /> operation.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SchemaType.Mapped">
|
|
<summary>Apply any existing table mappings to the incoming schema. Configure the <see cref="T:System.Data.DataSet" /> with the transformed schema.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SchemaType.Source">
|
|
<summary>Ignore any table mappings on the DataAdapter. Configure the <see cref="T:System.Data.DataSet" /> using the incoming schema without applying any transformations.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SerializationFormat">
|
|
<summary>Determines the serialization format for a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SerializationFormat.Binary">
|
|
<summary>Serialize as binary content. Available in ADO.NET 2.0 only.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SerializationFormat.Xml">
|
|
<summary>Serialize as XML content. The default.</summary>
|
|
</member>
|
|
<member name="T:System.Data.Sql.SqlDataSourceEnumerator">
|
|
<summary>Provides a mechanism for enumerating all available instances of SQL Server within the local network.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Sql.SqlDataSourceEnumerator.GetDataSources">
|
|
<summary>Retrieves a <see cref="T:System.Data.DataTable" /> containing information about all visible SQL Server 2000 or SQL Server 2005 instances.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> containing information about the visible SQL Server instances.</returns>
|
|
</member>
|
|
<member name="P:System.Data.Sql.SqlDataSourceEnumerator.Instance">
|
|
<summary>Gets an instance of the <see cref="T:System.Data.Sql.SqlDataSourceEnumerator" />, which can be used to retrieve information about available SQL Server instances.</summary>
|
|
<returns>An instance of the <see cref="T:System.Data.Sql.SqlDataSourceEnumerator" /> used to retrieve information about available SQL Server instances.</returns>
|
|
</member>
|
|
<member name="T:System.Data.Sql.SqlNotificationRequest">
|
|
<summary>Represents a request for notification for a given command.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Sql.SqlNotificationRequest.#ctor">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.Sql.SqlNotificationRequest" /> class with default values.</summary>
|
|
</member>
|
|
<member name="M:System.Data.Sql.SqlNotificationRequest.#ctor(System.String,System.String,System.Int32)">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.Sql.SqlNotificationRequest" /> class with a user-defined string that identifies a particular notification request, the name of a predefined SQL Server 2005 Service Broker service name, and the time-out period, measured in seconds.</summary>
|
|
<param name="userData">A string that contains an application-specific identifier for this notification. It is not used by the notifications infrastructure, but it allows you to associate notifications with the application state. The value indicated in this parameter is included in the Service Broker queue message.</param>
|
|
<param name="options">A string that contains the Service Broker service name where notification messages are posted, and it must include a database name or a Service Broker instance GUID that restricts the scope of the service name lookup to a particular database.
|
|
For more information about the format of the <paramref name="options" /> parameter, see <see cref="P:System.Data.Sql.SqlNotificationRequest.Options" />.</param>
|
|
<param name="timeout">The time, in seconds, to wait for a notification message.</param>
|
|
<exception cref="T:System.ArgumentNullException">The value of the <paramref name="options" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="options" /> or <paramref name="userData" /> parameter is longer than <see langword="uint16.MaxValue" /> or the value in the <paramref name="timeout" /> parameter is less than zero.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Sql.SqlNotificationRequest.Options">
|
|
<summary>Gets or sets the SQL Server Service Broker service name where notification messages are posted.</summary>
|
|
<returns>
|
|
<see langword="string" /> that contains the SQL Server 2005 Service Broker service name where notification messages are posted and the database or service broker instance GUID to scope the server name lookup.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The value is NULL.</exception>
|
|
<exception cref="T:System.ArgumentException">The value is longer than <see langword="uint16.MaxValue" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Sql.SqlNotificationRequest.Timeout">
|
|
<summary>Gets or sets a value that specifies how long SQL Server waits for a change to occur before the operation times out.</summary>
|
|
<returns>A signed integer value that specifies, in seconds, how long SQL Server waits for a change to occur before the operation times out.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The value is less than zero.</exception>
|
|
</member>
|
|
<member name="P:System.Data.Sql.SqlNotificationRequest.UserData">
|
|
<summary>Gets or sets an application-specific identifier for this notification.</summary>
|
|
<returns>A <see langword="string" /> value of the application-specific identifier for this notification.</returns>
|
|
<exception cref="T:System.ArgumentException">The value is longer than <see langword="uint16.MaxValue" />.</exception>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.ApplicationIntent">
|
|
<summary>Specifies a value for <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.ApplicationIntent" />. Possible values are <see langword="ReadWrite" /> and <see langword="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>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.ApplicationIntent.ReadWrite">
|
|
<summary>The application workload type when connecting to a server is read write.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.OnChangeEventHandler">
|
|
<summary>Handles the <see cref="E:System.Data.SqlClient.SqlDependency.OnChange" /> event that is fired when a notification is received for any of the commands associated with a <see cref="T:System.Data.SqlClient.SqlDependency" /> object.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.SqlClient.SqlNotificationEventArgs" /> object that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.PoolBlockingPeriod">
|
|
<summary>Specifies a value for the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.PoolBlockingPeriod" /> property.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.PoolBlockingPeriod.AlwaysBlock">
|
|
<summary>Blocking period ON for all SQL servers including Azure SQL servers.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.PoolBlockingPeriod.Auto">
|
|
<summary>Blocking period OFF for Azure SQL servers, but ON for all other SQL servers.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.PoolBlockingPeriod.NeverBlock">
|
|
<summary>Blocking period OFF for all SQL servers including Azure SQL servers.</summary>
|
|
</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SortOrder.Descending">
|
|
<summary>Rows are sorted in descending order.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SortOrder.Unspecified">
|
|
<summary>The default. No sort order is specified.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlAuthenticationInitializer">
|
|
<summary>Defines the core behavior of authentication initializers that can be registered in the app.config file and provides a base for derived classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationInitializer.#ctor">
|
|
<summary>Called from constructors in derived classes to initialize the <see cref="T:System.Data.SqlClient.SqlAuthenticationInitializer" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationInitializer.Initialize">
|
|
<summary>When overridden in a derived class, initializes the authentication initializer. This method is called by the <see cref="M:System.Data.SqlClient.SqlAuthenticationInitializer.#ctor" /> constructor during startup.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlAuthenticationMethod">
|
|
<summary>Describes the different SQL authentication methods that can be used by a client connecting to Azure SQL Database. For details, see Connecting to SQL Database By Using Azure Active Directory Authentication.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlAuthenticationMethod.ActiveDirectoryIntegrated">
|
|
<summary>The authentication method uses Active Directory Integrated. Use Active Directory Integrated to connect to a SQL Database using integrated Windows authentication.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlAuthenticationMethod.ActiveDirectoryInteractive">
|
|
<summary>The authentication method uses Active Directory Interactive. Available since the .NET Framework 4.7.2.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlAuthenticationMethod.ActiveDirectoryPassword">
|
|
<summary>The authentication method uses Active Directory Password. Use Active Directory Password to connect to a SQL Database using an Azure AD principal name and password.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlAuthenticationMethod.NotSpecified">
|
|
<summary>The authentication method is not specified.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlAuthenticationMethod.SqlPassword">
|
|
<summary>The authentication method is Sql Password.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlAuthenticationParameters">
|
|
<summary>Represents AD authentication parameters passed by a driver to authentication providers.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationParameters.#ctor(System.Data.SqlClient.SqlAuthenticationMethod,System.String,System.String,System.String,System.String,System.String,System.String,System.Guid)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlAuthenticationParameters" /> class using the specified authentication method, server name, database name, resource URI, authority URI, user login name/ID, user password and connection ID.</summary>
|
|
<param name="authenticationMethod">One of the enumeration values that specifies the authentication method.</param>
|
|
<param name="serverName">The server name.</param>
|
|
<param name="databaseName">The database name.</param>
|
|
<param name="resource">The resource URI.</param>
|
|
<param name="authority">The authority URI.</param>
|
|
<param name="userId">The user login name/ID.</param>
|
|
<param name="password">The user password.</param>
|
|
<param name="connectionId">The connection ID.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.AuthenticationMethod">
|
|
<summary>Gets the authentication method.</summary>
|
|
<returns>The authentication method.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.Authority">
|
|
<summary>Gets the authority URI.</summary>
|
|
<returns>The authority URI.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.ConnectionId">
|
|
<summary>Gets the connection ID.</summary>
|
|
<returns>The connection ID.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.DatabaseName">
|
|
<summary>Gets the database name.</summary>
|
|
<returns>The database name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.Password">
|
|
<summary>Gets the user password.</summary>
|
|
<returns>The user password.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.Resource">
|
|
<summary>Gets the resource URI.</summary>
|
|
<returns>The resource URI.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.ServerName">
|
|
<summary>Gets the server name.</summary>
|
|
<returns>The server name.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationParameters.UserId">
|
|
<summary>Gets the user login name/ID.</summary>
|
|
<returns>The user login name/ID.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlAuthenticationProvider">
|
|
<summary>Defines the core behavior of authentication providers and provides a base class for derived classes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.#ctor">
|
|
<summary>Called from constructors in derived classes to initialize the <see cref="T:System.Data.SqlClient.SqlAuthenticationProvider" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.AcquireTokenAsync(System.Data.SqlClient.SqlAuthenticationParameters)">
|
|
<summary>Acquires a security token from the authority.</summary>
|
|
<param name="parameters">The Active Directory authentication parameters passed by the driver to authentication providers.</param>
|
|
<returns>Represents an asynchronous operation that returns the AD authentication token.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.BeforeLoad(System.Data.SqlClient.SqlAuthenticationMethod)">
|
|
<summary>This method is called immediately before the provider is added to SQL drivers registry.</summary>
|
|
<param name="authenticationMethod">The authentication method.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.BeforeUnload(System.Data.SqlClient.SqlAuthenticationMethod)">
|
|
<summary>This method is called immediately before the provider is removed from the SQL drivers registry.</summary>
|
|
<param name="authenticationMethod">The authentication method.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.GetProvider(System.Data.SqlClient.SqlAuthenticationMethod)">
|
|
<summary>Gets an authentication provider by method.</summary>
|
|
<param name="authenticationMethod">The authentication method.</param>
|
|
<returns>The authentication provider or <see langword="null" /> if not found.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.IsSupported(System.Data.SqlClient.SqlAuthenticationMethod)">
|
|
<summary>Indicates whether the specified authentication method is supported.</summary>
|
|
<param name="authenticationMethod">The authentication method.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified authentication method is supported; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationProvider.SetProvider(System.Data.SqlClient.SqlAuthenticationMethod,System.Data.SqlClient.SqlAuthenticationProvider)">
|
|
<summary>Sets an authentication provider by method.</summary>
|
|
<param name="authenticationMethod">The authentication method.</param>
|
|
<param name="provider">The authentication provider.</param>
|
|
<returns>
|
|
<see langword="true" /> if the operation succeeded; otherwise, <see langword="false" /> (for example, the existing provider disallows overriding).</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlAuthenticationToken">
|
|
<summary>Represents an AD authentication token.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlAuthenticationToken.#ctor(System.String,System.DateTimeOffset)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlAuthenticationToken" /> class.</summary>
|
|
<param name="accessToken">The access token.</param>
|
|
<param name="expiresOn">The token expiration time.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="accessToken" /> parameter is <see langword="null" /> or empty.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationToken.AccessToken">
|
|
<summary>Gets the token string.</summary>
|
|
<returns>The token string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlAuthenticationToken.ExpiresOn">
|
|
<summary>Gets the token expiration time.</summary>
|
|
<returns>The token expiration time.</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" /> class using the specified open instance of <see cref="T:System.Data.SqlClient.SqlConnection" />.</summary>
|
|
<param name="connection">The already open <see cref="T:System.Data.SqlClient.SqlConnection" /> instance that will be used to perform the bulk copy operation. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="T:System.Data.SqlClient.SqlCredential" /> 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.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" /> class using the supplied existing open instance of <see cref="T:System.Data.SqlClient.SqlConnection" />. The <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance behaves according to options supplied in the <paramref name="copyOptions" /> parameter. If a non-null <see cref="T:System.Data.SqlClient.SqlTransaction" /> 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" /> instance that will be used to perform the bulk copy. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="T:System.Data.SqlClient.SqlCredential" /> 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" /> 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" /> instance under which the bulk copy will occur.</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" /> based on the supplied <paramref name="connectionString" />. The constructor uses the <see cref="T:System.Data.SqlClient.SqlConnection" /> to initialize a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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" /> instance. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection)" /> or <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlBulkCopyOptions,System.Data.SqlClient.SqlTransaction)" /> and <see cref="T:System.Data.SqlClient.SqlCredential" /> 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" /> based on the supplied <paramref name="connectionString" />. The constructor uses that <see cref="T:System.Data.SqlClient.SqlConnection" /> to initialize a new instance of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> class. The <see cref="T:System.Data.SqlClient.SqlConnection" /> instance behaves according to options supplied in the <paramref name="copyOptions" /> 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" /> instance. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection)" /> or <see cref="M:System.Data.SqlClient.SqlBulkCopy.#ctor(System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlBulkCopyOptions,System.Data.SqlClient.SqlTransaction)" /> and <see cref="T:System.Data.SqlClient.SqlCredential" /> 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" /> enumeration that determines which data source rows are copied to the destination table.</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="P:System.Data.SqlClient.SqlBulkCopy.BatchSize" /> 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="P:System.Data.SqlClient.SqlBulkCopy.BulkCopyTimeout" /> 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" /> instance.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlBulkCopy.ColumnMappings">
|
|
<summary>Returns a collection of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> 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" /> object to stream data from an <see cref="T:System.Data.IDataReader" /> object</summary>
|
|
<returns>
|
|
<see langword="true" /> if a <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object can stream data from an <see cref="T:System.Data.IDataReader" /> object; otherwise, false. The default is <see langword="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="P:System.Data.SqlClient.SqlBulkCopy.NotifyAfter" /> 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" /> property have been processed.</summary>
|
|
</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" /> class.</summary>
|
|
</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" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.Common.DbDataReader" /> 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" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="rows">An array of <see cref="T:System.Data.DataRow" /> objects that 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" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> whose rows will be copied to the destination table.</param>
|
|
</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" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> whose rows will be copied to the destination table.</param>
|
|
<param name="rowState">A value from the <see cref="T:System.Data.DataRowState" /> 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" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.IDataReader" /> whose rows will be copied to the destination table.</param>
|
|
</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)" />, which copies all rows from the supplied <see cref="T:System.Data.Common.DbDataReader" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.Common.DbDataReader" /> 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.Common.DbDataReader,System.Threading.CancellationToken)">
|
|
<summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.Common.DbDataReader)" />, which copies all rows from the supplied <see cref="T:System.Data.Common.DbDataReader" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.Common.DbDataReader" /> whose rows will be copied to the destination table.</param>
|
|
<param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None" /> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.Common.DbDataReader)" />.</param>
|
|
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.</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[])" />, which copies all rows from the supplied <see cref="T:System.Data.DataRow" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="rows">An array of <see cref="T:System.Data.DataRow" /> 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="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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.DataRow[],System.Threading.CancellationToken)">
|
|
<summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])" />, which copies all rows from the supplied <see cref="T:System.Data.DataRow" /> array to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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" /> objects that will be copied to the destination table.</param>
|
|
<param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None" /> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" />.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataRow[])" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataRow[])" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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)" />, which copies all rows in the supplied <see cref="T:System.Data.DataTable" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> 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="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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)" />, which copies only rows that match the supplied row state in the supplied <see cref="T:System.Data.DataTable" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="table">A <see cref="T:System.Data.DataTable" /> whose rows will be copied to the destination table.</param>
|
|
<param name="rowState">A value from the <see cref="T:System.Data.DataRowState" /> 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="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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)" />, which copies only rows that match the supplied row state in the supplied <see cref="T:System.Data.DataTable" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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" /> whose rows will be copied to the destination table.</param>
|
|
<param name="rowState">A value from the <see cref="T:System.Data.DataRowState" /> 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" /> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" />.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable,System.Data.DataRowState)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable,System.Data.DataRowState)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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)" />, which copies all rows in the supplied <see cref="T:System.Data.DataTable" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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" /> whose rows will be copied to the destination table.</param>
|
|
<param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None" /> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" />.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.DataTable)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
<see langword="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)" />, which copies all rows in the supplied <see cref="T:System.Data.IDataReader" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> object.</summary>
|
|
<param name="reader">A <see cref="T:System.Data.IDataReader" /> 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="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
The <see cref="T:System.Data.IDataReader" /> was closed before the completed <see cref="T:System.Threading.Tasks.Task" /> returned.
|
|
The <see cref="T:System.Data.IDataReader" />'s associated connection was closed before the completed <see cref="T:System.Threading.Tasks.Task" /> returned.
|
|
<see langword="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,System.Threading.CancellationToken)">
|
|
<summary>The asynchronous version of <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)" />, which copies all rows in the supplied <see cref="T:System.Data.IDataReader" /> to a destination table specified by the <see cref="P:System.Data.SqlClient.SqlBulkCopy.DestinationTableName" /> property of the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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" /> whose rows will be copied to the destination table.</param>
|
|
<param name="cancellationToken">The cancellation instruction. A <see cref="P:System.Threading.CancellationToken.None" /> value in this parameter makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.DataTable)" />.</param>
|
|
<returns>A task representing the asynchronous operation.</returns>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> multiple times for the same instance before task completion.
|
|
Calling <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> and <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServer(System.Data.IDataReader)" /> for the same instance before task completion.
|
|
The connection drops or is closed during <see cref="M:System.Data.SqlClient.SqlBulkCopy.WriteToServerAsync(System.Data.IDataReader)" /> execution.
|
|
Returned in the task object, the <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> 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="T:System.Data.SqlClient.SqlConnection" /> object is closed before method execution.
|
|
The <see cref="T:System.Data.IDataReader" /> was closed before the completed <see cref="T:System.Threading.Tasks.Task" /> returned.
|
|
The <see cref="T:System.Data.IDataReader" />'s associated connection was closed before the completed <see cref="T:System.Threading.Tasks.Task" /> returned.
|
|
<see langword="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="T:System.Data.SqlClient.SqlBulkCopyColumnMapping">
|
|
<summary>Defines the mapping between a column in a <see cref="T:System.Data.SqlClient.SqlBulkCopy" /> instance's data source and a column in the instance'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" /> 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="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationColumn" /> 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="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.DestinationOrdinal" /> 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="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceColumn" /> 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="P:System.Data.SqlClient.SqlBulkCopyColumnMapping.SourceOrdinal" /> property.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection">
|
|
<summary>Collection of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> objects that inherits from <see cref="T:System.Collections.CollectionBase" />.</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" />.</summary>
|
|
<param name="bulkCopyColumnMapping">The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object that describes the mapping to be added to the collection.</param>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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" /> 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" /> 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" /> 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" /> 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" /> object exists in the collection.</summary>
|
|
<param name="value">A valid <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> object.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified mapping exists in the collection; otherwise <see langword="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" /> to an array of <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> items, starting at a particular index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> array that is the destination of the elements copied from <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />. The array must have zero-based indexing.</param>
|
|
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
|
</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" /> object.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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" /> at the index specified.</summary>
|
|
<param name="index">Integer value of the location within the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" /> at which to insert the new <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" />.</param>
|
|
<param name="value">
|
|
<see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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" /> object at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> to find.</param>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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" /> element from the <see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMappingCollection" />.</summary>
|
|
<param name="value">
|
|
<see cref="T:System.Data.SqlClient.SqlBulkCopyColumnMapping" /> 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" /> object to be removed from the collection.</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" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlBulkCopyOptions.AllowEncryptedValueModifications">
|
|
<summary>When specified, AllowEncryptedValueModifications enables bulk copying of encrypted data between tables or databases, without decrypting the data. Typically, an application would select data from encrypted columns from one table without decrypting the data (the app would connect to the database with the column encryption setting keyword set to disabled) and then would use this option to bulk insert the data, which is still encrypted. For more information, see Always Encrypted.
|
|
Use caution when specifying AllowEncryptedValueModifications as this may lead to corrupting the database because the driver does not check if the data is indeed encrypted, or if it is correctly encrypted using the same encryption type, algorithm and key as the target column.</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlBulkCopyOptions.Default">
|
|
<summary>Use the default values for all options.</summary>
|
|
</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>
|
|
</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>
|
|
</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>
|
|
</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>
|
|
</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" /> object to the constructor, an <see cref="T:System.ArgumentException" /> occurs.</summary>
|
|
</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" /> provider's implementation of the data source classes.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlClientFactory.CanCreateDataSourceEnumerator">
|
|
<summary>Gets a value that indicates whether a <see cref="T:System.Data.Sql.SqlDataSourceEnumerator" /> can be created.</summary>
|
|
<returns>
|
|
<see langword="true" /> if a <see cref="T:System.Data.Sql.SqlDataSourceEnumerator" /> can be created; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateCommand">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbCommand" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbCommand" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateCommandBuilder">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbCommandBuilder" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateConnection">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnection" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbConnection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateConnectionStringBuilder">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateDataAdapter">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbDataAdapter" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbDataAdapter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateDataSourceEnumerator">
|
|
<summary>Returns a new <see cref="T:System.Data.Sql.SqlDataSourceEnumerator" />.</summary>
|
|
<returns>A new data source enumerator.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreateParameter">
|
|
<summary>Returns a strongly typed <see cref="T:System.Data.Common.DbParameter" /> instance.</summary>
|
|
<returns>A new strongly typed instance of <see cref="T:System.Data.Common.DbParameter" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.CreatePermission(System.Security.Permissions.PermissionState)">
|
|
<summary>Returns a new <see cref="T:System.Security.CodeAccessPermission" />.</summary>
|
|
<param name="state">A member of the <see cref="T:System.Security.Permissions.PermissionState" /> enumeration.</param>
|
|
<returns>A strongly typed instance of <see cref="T:System.Security.CodeAccessPermission" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientFactory.Instance">
|
|
<summary>Gets an instance of the <see cref="T:System.Data.SqlClient.SqlClientFactory" />. This can be used to retrieve strongly typed data objects.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientFactory.System#IServiceProvider#GetService(System.Type)">
|
|
<summary>For a description of this member, see <see cref="M:System.IServiceProvider.GetService(System.Type)" />.</summary>
|
|
<param name="serviceType">An object that specifies the type of service object to get.</param>
|
|
<returns>A service object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlClientLogger">
|
|
<summary>Represents a SQL client logger.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientLogger.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlClientLogger" /> class.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlClientLogger.IsLoggingEnabled">
|
|
<summary>Gets a value that indicates whether bid tracing is enabled.</summary>
|
|
<returns>
|
|
<see langword="true" /> if bid tracing is enabled; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientLogger.LogAssert(System.Boolean,System.String,System.String,System.String)">
|
|
<summary>Logs the specified message if <paramref name="value" /> is <see langword="false" />.</summary>
|
|
<param name="value">
|
|
<see langword="false" /> to log the message; otherwise, <see langword="true" />.</param>
|
|
<param name="type">The type to be logged.</param>
|
|
<param name="method">The logging method.</param>
|
|
<param name="message">The message to be logged.</param>
|
|
<returns>
|
|
<see langword="true" /> if the message is not logged; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientLogger.LogError(System.String,System.String,System.String)">
|
|
<summary>Logs an error through a specified method of the current instance type.</summary>
|
|
<param name="type">The type to be logged.</param>
|
|
<param name="method">The logging method.</param>
|
|
<param name="message">The message to be logged.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientLogger.LogInfo(System.String,System.String,System.String)">
|
|
<summary>Logs information through a specified method of the current instance type.</summary>
|
|
<param name="type">The type to be logged.</param>
|
|
<param name="method">The logging method.</param>
|
|
<param name="message">The message to be logged.</param>
|
|
</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Databases">
|
|
<summary>A constant for use with the GetSchema method that represents the Databases collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ForeignKeys">
|
|
<summary>A constant for use with the GetSchema method that represents the ForeignKeys collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.IndexColumns">
|
|
<summary>A constant for use with the GetSchema method that represents the IndexColumns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Indexes">
|
|
<summary>A constant for use with the GetSchema method that represents the Indexes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Parameters">
|
|
<summary>A constant for use with the GetSchema method that represents the Parameters collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ProcedureColumns">
|
|
<summary>A constant for use with the GetSchema method that represents the ProcedureColumns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Procedures">
|
|
<summary>A constant for use with the GetSchema method that represents the Procedures collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Tables">
|
|
<summary>A constant for use with the GetSchema method that represents the Tables collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.UserDefinedTypes">
|
|
<summary>A constant for use with the GetSchema method that represents the UserDefinedTypes collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Users">
|
|
<summary>A constant for use with the GetSchema method that represents the Users collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.ViewColumns">
|
|
<summary>A constant for use with the GetSchema method that represents the ViewColumns collection.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlClientMetaDataCollectionNames.Views">
|
|
<summary>A constant for use with the GetSchema method that represents the Views collection.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlClientPermission">
|
|
<summary>Enables the .NET Framework Data Provider for SQL Server to help make sure that a user has a security level sufficient to access a data source.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermission.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlClientPermission" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlClientPermission" /> class.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermission.#ctor(System.Security.Permissions.PermissionState,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlClientPermission" /> class.</summary>
|
|
<param name="state">One of the <see cref="T:System.Security.Permissions.PermissionState" /> values.</param>
|
|
<param name="allowBlankPassword">Indicates whether a blank password is allowed.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermission.Add(System.String,System.String,System.Data.KeyRestrictionBehavior)">
|
|
<summary>Adds a new connection string and a set of restricted keywords to the <see cref="T:System.Data.SqlClient.SqlClientPermission" /> object.</summary>
|
|
<param name="connectionString">The connection string.</param>
|
|
<param name="restrictions">The key restrictions.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.KeyRestrictionBehavior" /> enumerations.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermission.Copy">
|
|
<summary>Returns the <see cref="T:System.Data.SqlClient.SqlClientPermission" /> as an <see cref="T:System.Security.IPermission" />.</summary>
|
|
<returns>A copy of the current permission object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlClientPermissionAttribute">
|
|
<summary>Associates a security action with a custom security attribute.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlClientPermissionAttribute" /> class.</summary>
|
|
<param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values representing an action that can be performed by using declarative security.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlClientPermissionAttribute.CreatePermission">
|
|
<summary>Returns a <see cref="T:System.Data.SqlClient.SqlClientPermission" /> object that is configured according to the attribute properties.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlClientPermission" /> object.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider">
|
|
<summary>The implementation of the key store provider for Windows Certificate Store. This class enables using certificates stored in the Windows Certificate Store as column master keys. For details, see Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.#ctor">
|
|
<summary>Key store provider for Windows Certificate Store.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.DecryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Decrypts the specified encrypted value of a column encryption key. The encrypted value is expected to be encrypted using the certificate with the specified key path and using the specified algorithm. The format of the key path should be "Local Machine/My/<certificate_thumbrint>" or "Current User/My/<certificate_thumbprint>".</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm. Currently, the only valid value is: RSA_OAEP</param>
|
|
<param name="encryptedColumnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>Returns <see cref="T:System.Byte" />.The decrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.EncryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Encrypts a column encryption key using the certificate with the specified key path and using the specified algorithm. The format of the key path should be "Local Machine/My/<certificate_thumbrint>" or "Current User/My/<certificate_thumbprint>".</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm. Currently, the only valid value is: RSA_OAEP</param>
|
|
<param name="columnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>Returns <see cref="T:System.Byte" />.The encrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.ProviderName">
|
|
<summary>The provider name.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.SignColumnMasterKeyMetadata(System.String,System.Boolean)">
|
|
<summary>Digitally signs the column master key metadata with the column master key referenced by the <paramref name="masterKeyPath" /> parameter.</summary>
|
|
<param name="masterKeyPath">The column master key path.</param>
|
|
<param name="allowEnclaveComputations">
|
|
<see langword="true" /> to indicate that the column master key supports enclave computations; otherwise, <see langword="false" />.</param>
|
|
<returns>The signature of the column master key metadata.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCertificateStoreProvider.VerifyColumnMasterKeyMetadata(System.String,System.Boolean,System.Byte[])">
|
|
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and verify the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
|
|
<param name="masterKeyPath">The complete path of an asymmetric key. The path format is specific to a key store provider.</param>
|
|
<param name="allowEnclaveComputations">A Boolean that indicates if this key can be sent to the trusted enclave.</param>
|
|
<param name="signature">The master key metadata siognature.</param>
|
|
<returns>A Boolean value that indicates if the master key metadata can be verified based on the provided signature.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlColumnEncryptionCngProvider">
|
|
<summary>The CMK Store provider implementation for using the Microsoft Cryptography API: Next Generation (CNG) with Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCngProvider.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlColumnEncryptionCngProvider" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCngProvider.DecryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Decrypts the given encrypted value using an asymmetric key specified by the key path and the specified algorithm. The key path will be in the format of [ProviderName]/KeyIdentifier and should be an asymmetric key stored in the specified CNG key store provider. The valid algorithm used to encrypt/decrypt the CEK is 'RSA_OAEP'.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="encryptedColumnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>The decrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCngProvider.EncryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Encrypts the given plain text column encryption key using an asymmetric key specified by the key path and the specified algorithm. The key path will be in the format of [ProviderName]/KeyIdentifier and should be an asymmetric key stored in the specified CNG key store provider. The valid algorithm used to encrypt/decrypt the CEK is 'RSA_OAEP'.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="columnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>The encrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlColumnEncryptionCngProvider.ProviderName">
|
|
<summary>A constant string for the provider name 'MSSQL_CNG_STORE'.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCngProvider.SignColumnMasterKeyMetadata(System.String,System.Boolean)">
|
|
<summary>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</summary>
|
|
<param name="masterKeyPath">The column master key path. The path format is specific to a key store provider.</param>
|
|
<param name="allowEnclaveComputations">
|
|
<see langword="true" /> to indicate that the column master key supports enclave computations; otherwise, <see langword="false" />.</param>
|
|
<returns>The signature of the column master key metadata.</returns>
|
|
<exception cref="T:System.NotSupportedException">In all cases.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCngProvider.VerifyColumnMasterKeyMetadata(System.String,System.Boolean,System.Byte[])">
|
|
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and verify the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
|
|
<param name="masterKeyPath">The complete path of an asymmetric key. The path format is specific to a key store provider.</param>
|
|
<param name="allowEnclaveComputations">A Boolean that indicates if this key can be sent to the trusted enclave.</param>
|
|
<param name="signature">The master key metadata signature.</param>
|
|
<returns>A Boolean that indicates if the master key metadata can be verified based on the provided signature.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlColumnEncryptionCspProvider">
|
|
<summary>The CMK Store provider implementation for using Microsoft CAPI based Cryptographic Service Providers (CSP) with Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCspProvider.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlColumnEncryptionCspProvider" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCspProvider.DecryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Decrypts the given encrypted value using an asymmetric key specified by the key path and algorithm. The key path will be in the format of [ProviderName]/KeyIdentifier and should be an asymmetric key stored in the specified CSP provider. The valid algorithm used to encrypt/decrypt the CEK is 'RSA_OAEP'.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="encryptedColumnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>The decrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCspProvider.EncryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Encrypts the given plain text column encryption key using an asymmetric key specified by the key path and the specified algorithm. The key path will be in the format of [ProviderName]/KeyIdentifier and should be an asymmetric key stored in the specified CSP provider. The valid algorithm used to encrypt/decrypt the CEK is 'RSA_OAEP'.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="columnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>The encrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlColumnEncryptionCspProvider.ProviderName">
|
|
<summary>A constant string for the provider name 'MSSQL_CSP_PROVIDER'.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCspProvider.SignColumnMasterKeyMetadata(System.String,System.Boolean)">
|
|
<summary>Throws a <see cref="T:System.NotSupportedException" /> exception in all cases.</summary>
|
|
<param name="masterKeyPath">The column master key path. The path format is specific to a key store provider.</param>
|
|
<param name="allowEnclaveComputations">
|
|
<see langword="true" /> to indicate that the column master key supports enclave computations; otherwise, <see langword="false" />.</param>
|
|
<returns>The signature of the column master key metadata.</returns>
|
|
<exception cref="T:System.NotSupportedException">In all cases.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionCspProvider.VerifyColumnMasterKeyMetadata(System.String,System.Boolean,System.Byte[])">
|
|
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and sign the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
|
|
<param name="masterKeyPath">The complete path of an asymmetric key. The path format is specific to a key store provider.</param>
|
|
<param name="allowEnclaveComputations">A boolean that indicates if this key can be sent to the trusted enclave.</param>
|
|
<param name="signature">Master key metadata signature.</param>
|
|
<returns>A Boolean that indicates if the master key metadata can be verified based on the provided signature.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider">
|
|
<summary>The base class that defines the interface for enclave providers for Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider" /> class</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider.CreateEnclaveSession(System.Byte[],System.Security.Cryptography.ECDiffieHellmanCng,System.String,System.String,System.Data.SqlClient.SqlEnclaveSession@,System.Int64@)">
|
|
<summary>When overridden in a derived class, performs enclave attestation, generates a symmetric key for the session, creates a an enclave session and stores the session information in the cache.</summary>
|
|
<param name="enclaveAttestationInfo">The information the provider uses to attest the enclave and generate a symmetric key for the session. The format of this information is specific to the enclave attestation protocol.</param>
|
|
<param name="clientDiffieHellmanKey">A Diffie-Hellman algorithm object that encapsulates a client-side key pair.</param>
|
|
<param name="attestationUrl">The endpoint of an attestation service for attesting the enclave.</param>
|
|
<param name="servername">The name of the SQL Server instance containing the enclave.</param>
|
|
<param name="sqlEnclaveSession">The requested enclave session or <see langword="null" /> if the provider doesn't implement session caching.</param>
|
|
<param name="counter">A counter that the enclave provider is expected to increment each time SqlClient retrieves the session from the cache. The purpose of this field is to prevent replay attacks.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider.GetAttestationParameters">
|
|
<summary>Gets the information that SqlClient subsequently uses to initiate the process of attesting the enclave and to establish a secure session with the enclave.</summary>
|
|
<returns>The information SqlClient subsequently uses to initiate the process of attesting the enclave and to establish a secure session with the enclave.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider.GetEnclaveSession(System.String,System.String,System.Data.SqlClient.SqlEnclaveSession@,System.Int64@)">
|
|
<summary>When overridden in a derived class, looks up an existing enclave session information in the enclave session cache. If the enclave provider doesn't implement enclave session caching, this method is expected to return <see langword="null" /> in the <paramref name="sqlEnclaveSession" /> parameter.</summary>
|
|
<param name="serverName">The name of the SQL Server instance containing the enclave.</param>
|
|
<param name="attestationUrl">The endpoint of an attestation service, SqlClient contacts to attest the enclave.</param>
|
|
<param name="sqlEnclaveSession">When this method returns, the requested enclave session or <see langword="null" /> if the provider doesn't implement session caching. This parameter is treated as uninitialized.</param>
|
|
<param name="counter">A counter that the enclave provider is expected to increment each time SqlClient retrieves the session from the cache. The purpose of this field is to prevent replay attacks.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionEnclaveProvider.InvalidateEnclaveSession(System.String,System.String,System.Data.SqlClient.SqlEnclaveSession)">
|
|
<summary>When overridden in a derived class, looks up and evicts an enclave session from the enclave session cache, if the provider implements session caching.</summary>
|
|
<param name="serverName">The name of the SQL Server instance containing the enclave.</param>
|
|
<param name="enclaveAttestationUrl">The endpoint of an attestation service, SqlClient contacts to attest the enclave.</param>
|
|
<param name="enclaveSession">The session to be invalidated.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider">
|
|
<summary>Base class for all key store providers. A custom provider must derive from this class and override its member functions and then register it using SqlConnection.RegisterColumnEncryptionKeyStoreProviders(). For details see, Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.#ctor">
|
|
<summary>Initializes a new instance of the SqlColumnEncryptionKeyStoreProviderClass.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.DecryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Decrypts the specified encrypted value of a column encryption key. The encrypted value is expected to be encrypted using the column master key with the specified key path and using the specified algorithm.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="encryptedColumnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>Returns <see cref="T:System.Byte" />.The decrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.EncryptColumnEncryptionKey(System.String,System.String,System.Byte[])">
|
|
<summary>Encrypts a column encryption key using the column master key with the specified key path and using the specified algorithm.</summary>
|
|
<param name="masterKeyPath">The master key path.</param>
|
|
<param name="encryptionAlgorithm">The encryption algorithm.</param>
|
|
<param name="columnEncryptionKey">The encrypted column encryption key.</param>
|
|
<returns>Returns <see cref="T:System.Byte" />.The encrypted column encryption key.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.SignColumnMasterKeyMetadata(System.String,System.Boolean)">
|
|
<summary>When implemented in a derived class, digitally signs the column master key metadata with the column master key referenced by the <paramref name="masterKeyPath" /> parameter. The input values used to generate the signature should be the specified values of the <paramref name="masterKeyPath" /> and <paramref name="allowEnclaveComputations" /> parameters.</summary>
|
|
<param name="masterKeyPath">The column master key path.</param>
|
|
<param name="allowEnclaveComputations">
|
|
<see langword="true" /> to indicate that the column master key supports enclave computations; otherwise, <see langword="false" />.</param>
|
|
<returns>The signature of the column master key metadata.</returns>
|
|
<exception cref="T:System.NotImplementedException">In all cases.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider.VerifyColumnMasterKeyMetadata(System.String,System.Boolean,System.Byte[])">
|
|
<summary>When implemented in a derived class, this method is expected to verify the specified signature is valid for the column master key with the specified key path and the specified enclave behavior. The default implementation throws NotImplementedException.</summary>
|
|
<param name="masterKeyPath">The column master key path.</param>
|
|
<param name="allowEnclaveComputations">Indicates whether the column master key supports enclave computations.</param>
|
|
<param name="signature">The signature of the column master key metadata.</param>
|
|
<returns>When implemented in a derived class, the method is expected to return true if the specified signature is valid, or false if the specified signature is not valid. The default implementation throws NotImplementedException.</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" /> 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" /> 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" /> class with the text of the query and a <see cref="T:System.Data.SqlClient.SqlConnection" />.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection" /> 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" /> class with the text of the query, a <see cref="T:System.Data.SqlClient.SqlConnection" />, and the <see cref="T:System.Data.SqlClient.SqlTransaction" />.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection" /> that represents the connection to an instance of SQL Server.</param>
|
|
<param name="transaction">The <see cref="T:System.Data.SqlClient.SqlTransaction" /> in which the <see cref="T:System.Data.SqlClient.SqlCommand" /> executes.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlTransaction,System.Data.SqlClient.SqlCommandColumnEncryptionSetting)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand" /> class with specified command text, connection, transaction, and encryption setting.</summary>
|
|
<param name="cmdText">The text of the query.</param>
|
|
<param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection" /> that represents the connection to an instance of SQL Server.</param>
|
|
<param name="transaction">The <see cref="T:System.Data.SqlClient.SqlTransaction" /> in which the <see cref="T:System.Data.SqlClient.SqlCommand" /> executes.</param>
|
|
<param name="columnEncryptionSetting">The encryption setting. For more information, see Always Encrypted.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" />.</summary>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" />, which returns the number of affected rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteNonQuery(System.AsyncCallback,System.Object)">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" />, given a callback procedure and state information.</summary>
|
|
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that is invoked when the command's execution has completed. Pass <see langword="null" /> (<see langword="Nothing" /> in Microsoft Visual Basic) to indicate that no callback is required.</param>
|
|
<param name="stateObject">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the <see cref="P:System.IAsyncResult.AsyncState" /> property.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" />, which returns the number of affected rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteReader">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" />, and retrieves one or more result sets from the server.</summary>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance that can be used to retrieve the returned rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteReader(System.AsyncCallback,System.Object)">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" /> and retrieves one or more result sets from the server, given a callback procedure and state information.</summary>
|
|
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that is invoked when the command's execution has completed. Pass <see langword="null" /> (<see langword="Nothing" /> in Microsoft Visual Basic) to indicate that no callback is required.</param>
|
|
<param name="stateObject">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the <see cref="P:System.IAsyncResult.AsyncState" /> property.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll, wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance which can be used to retrieve the returned rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteReader(System.AsyncCallback,System.Object,System.Data.CommandBehavior)">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" />, using one of the <see langword="CommandBehavior" /> values, and retrieving one or more result sets from the server, given a callback procedure and state information.</summary>
|
|
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that is invoked when the command's execution has completed. Pass <see langword="null" /> (<see langword="Nothing" /> in Microsoft Visual Basic) to indicate that no callback is required.</param>
|
|
<param name="stateObject">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the <see cref="P:System.IAsyncResult.AsyncState" /> property.</param>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values, indicating options for statement execution and data retrieval.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll or wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance which can be used to retrieve the returned rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteReader(System.Data.CommandBehavior)">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values, indicating options for statement execution and data retrieval.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll, wait for results, or both; this value is also needed when invoking <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" />, which returns a <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance that can be used to retrieve the returned rows.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteXmlReader">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" /> and returns results as an <see cref="T:System.Xml.XmlReader" /> object.</summary>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll or wait for results, or both; this value is also needed when invoking <see langword="EndExecuteXmlReader" />, which returns a single XML value.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.BeginExecuteXmlReader(System.AsyncCallback,System.Object)">
|
|
<summary>Initiates the asynchronous execution of the Transact-SQL statement or stored procedure that is described by this <see cref="T:System.Data.SqlClient.SqlCommand" /> and returns results as an <see cref="T:System.Xml.XmlReader" /> object, using a callback procedure.</summary>
|
|
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that is invoked when the command's execution has completed. Pass <see langword="null" /> (<see langword="Nothing" /> in Microsoft Visual Basic) to indicate that no callback is required.</param>
|
|
<param name="stateObject">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the <see cref="P:System.IAsyncResult.AsyncState" /> property.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that can be used to poll, wait for results, or both; this value is also needed when the <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)" /> is called, which returns the results of the command as XML.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">Any error that occurred 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.InvalidOperationException">The name/value pair "Asynchronous Processing=true" was not included within the connection string defining the connection for this <see cref="T:System.Data.SqlClient.SqlCommand" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.Cancel">
|
|
<summary>Tries to cancel the execution of a <see cref="T:System.Data.SqlClient.SqlCommand" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.Clone">
|
|
<summary>Creates a new <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is a copy of the current instance.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommand.ColumnEncryptionSetting">
|
|
<summary>Gets or sets the column encryption setting for this command.</summary>
|
|
<returns>The column encryption setting for this command.</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" /> property is to be interpreted.</summary>
|
|
<returns>One of the <see cref="T:System.Data.CommandType" /> values. The default is <see langword="Text" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The value was not a valid <see cref="T:System.Data.CommandType" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommand.Connection">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlConnection" /> used by this instance of the <see cref="T:System.Data.SqlClient.SqlCommand" />.</summary>
|
|
<returns>The connection to a data source. The default value is <see langword="null" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> 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" /> object.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlParameter" /> 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 <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)">
|
|
<summary>Finishes asynchronous execution of a Transact-SQL statement.</summary>
|
|
<param name="asyncResult">The <see cref="T:System.IAsyncResult" /> returned by the call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery" />.</param>
|
|
<returns>The number of rows affected (the same behavior as <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery" />).</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="asyncResult" /> parameter is null (<see langword="Nothing" /> in Microsoft Visual Basic)</exception>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
<see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" /> was called more than once for a single command execution, or the method was mismatched against its execution method (for example, the code called <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" /> to complete execution of a call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteXmlReader" />.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">The amount of time specified in <see cref="P:System.Data.SqlClient.SqlCommand.CommandTimeout" /> elapsed and the asynchronous operation specified with <see cref="Overload:System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery" /> is not complete.
|
|
In some situations, <see cref="T:System.IAsyncResult" /> can be set to <see langword="IsCompleted" /> incorrectly. If this occurs and <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteNonQuery(System.IAsyncResult)" /> is called, EndExecuteNonQuery could raise a SqlException error if the amount of time specified in <see cref="P:System.Data.SqlClient.SqlCommand.CommandTimeout" /> elapsed and the asynchronous operation specified with <see cref="Overload:System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery" /> is not complete. To correct this situation, you should either increase the value of CommandTimeout or reduce the work being done by the asynchronous operation.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)">
|
|
<summary>Finishes asynchronous execution of a Transact-SQL statement, returning the requested <see cref="T:System.Data.SqlClient.SqlDataReader" />.</summary>
|
|
<param name="asyncResult">The <see cref="T:System.IAsyncResult" /> returned by the call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteReader" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlDataReader" /> object that can be used to retrieve the requested rows.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="asyncResult" /> parameter is null (<see langword="Nothing" /> in Microsoft Visual Basic)</exception>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
<see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" /> was called more than once for a single command execution, or the method was mismatched against its execution method (for example, the code called <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteReader(System.IAsyncResult)" /> to complete execution of a call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteXmlReader" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)">
|
|
<summary>Finishes asynchronous execution of a Transact-SQL statement, returning the requested data as XML.</summary>
|
|
<param name="asyncResult">The <see cref="T:System.IAsyncResult" /> returned by the call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteXmlReader" />.</param>
|
|
<returns>An <see cref="T:System.Xml.XmlReader" /> object that can be used to fetch the resulting XML data.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="asyncResult" /> parameter is null (<see langword="Nothing" /> in Microsoft Visual Basic)</exception>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
<see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)" /> was called more than once for a single command execution, or the method was mismatched against its execution method (for example, the code called <see cref="M:System.Data.SqlClient.SqlCommand.EndExecuteXmlReader(System.IAsyncResult)" /> to complete execution of a call to <see cref="M:System.Data.SqlClient.SqlCommand.BeginExecuteNonQuery" />.</exception>
|
|
</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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteNonQueryAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</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="M:System.Data.SqlClient.SqlCommand.ExecuteReader" /> requires an open <see cref="T:System.Data.SqlClient.SqlConnection" />.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" />, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values.</summary>
|
|
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values.</param>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" />. 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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)" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" />, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" />. Exceptions will be reported via the returned Task object.</summary>
|
|
<param name="behavior">Options for statement execution and data retrieval. When is set to <see langword="Default" />, <see cref="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)" /> 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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)" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" />, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" />
|
|
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 <see langword="Default" />, <see cref="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)" /> 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader" />.
|
|
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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.ArgumentException">An invalid <see cref="T:System.Data.CommandBehavior" /> value.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteReaderAsync(System.Data.CommandBehavior,System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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 (<see langword="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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</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="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds an <see cref="T:System.Xml.XmlReader" /> object.</summary>
|
|
<returns>An <see cref="T:System.Xml.XmlReader" /> object.</returns>
|
|
<exception cref="T:System.InvalidCastException">A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</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="T:System.Data.SqlClient.SqlConnection" /> 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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds an <see cref="T:System.Xml.XmlReader" /> 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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" />, which sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText" /> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection" /> and builds an <see cref="T:System.Xml.XmlReader" /> 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="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Binary or VarBinary was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.Stream" />. For more information about streaming, see SqlClient Streaming Support.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Char, NChar, NVarChar, VarChar, or Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.IO.TextReader" />.
|
|
A <see cref="P:System.Data.SqlClient.SqlParameter.SqlDbType" /> other than Xml was used when <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> was set to <see cref="T:System.Xml.XmlReader" />.</exception>
|
|
<exception cref="T:System.InvalidOperationException">Calling <see cref="M:System.Data.SqlClient.SqlCommand.ExecuteScalarAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
The <see cref="T:System.Data.SqlClient.SqlConnection" /> closed or dropped during a streaming operation. For more information about streaming, see SqlClient Streaming Support.
|
|
<see langword="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="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> object during a streaming operation. For more information about streaming, see SqlClient Streaming Support.</exception>
|
|
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.Stream" />, <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.IO.TextReader" /> 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.Notification">
|
|
<summary>Gets or sets a value that specifies the <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object bound to this command.</summary>
|
|
<returns>When set to null (default), no notification should be requested.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommand.NotificationAutoEnlist">
|
|
<summary>Gets or sets a value indicating whether the application should automatically receive query notifications from a common <see cref="T:System.Data.SqlClient.SqlDependency" /> object.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the application should automatically receive query notifications; otherwise <see langword="false" />. The default value is <see langword="true" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommand.Parameters">
|
|
<summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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="M:System.Data.SqlClient.SqlCommand.ResetCommandTimeout">
|
|
<summary>Resets the <see cref="P:System.Data.SqlClient.SqlCommand.CommandTimeout" /> property to its default value.</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="M:System.Data.SqlClient.SqlCommand.System#ICloneable#Clone">
|
|
<summary>Creates a new <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is a copy of the current instance.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is a copy of this instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommand.Transaction">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlTransaction" /> within which the <see cref="T:System.Data.SqlClient.SqlCommand" /> executes.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlTransaction" />. The default value is <see langword="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" /> when used by the Update method of the <see cref="T:System.Data.Common.DbDataAdapter" />.</summary>
|
|
<returns>One of the <see cref="T:System.Data.UpdateRowSource" /> values.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlCommandBuilder">
|
|
<summary>Automatically generates single-table commands that are used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated SQL Server database. This class cannot be inherited.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.#ctor(System.Data.SqlClient.SqlDataAdapter)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder" /> class with the associated <see cref="T:System.Data.SqlClient.SqlDataAdapter" /> object.</summary>
|
|
<param name="adapter">The name of the <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.CatalogLocation">
|
|
<summary>Sets or gets the <see cref="T:System.Data.Common.CatalogLocation" /> for an instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder" /> class.</summary>
|
|
<returns>A <see cref="T:System.Data.Common.CatalogLocation" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.CatalogSeparator">
|
|
<summary>Sets or gets a string used as the catalog separator for an instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder" /> class.</summary>
|
|
<returns>A string that indicates the catalog separator for use with an instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder" /> class.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.DataAdapter">
|
|
<summary>Gets or sets a <see cref="T:System.Data.SqlClient.SqlDataAdapter" /> object for which Transact-SQL statements are automatically generated.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlDataAdapter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.DeriveParameters(System.Data.SqlClient.SqlCommand)">
|
|
<summary>Retrieves parameter information from the stored procedure specified in the <see cref="T:System.Data.SqlClient.SqlCommand" /> and populates the <see cref="P:System.Data.SqlClient.SqlCommand.Parameters" /> collection of the specified <see cref="T:System.Data.SqlClient.SqlCommand" /> object.</summary>
|
|
<param name="command">The <see cref="T:System.Data.SqlClient.SqlCommand" /> referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the <see cref="P:System.Data.SqlClient.SqlCommand.Parameters" /> collection of the <see cref="T:System.Data.SqlClient.SqlCommand" />.</param>
|
|
<exception cref="T:System.InvalidOperationException">The command text is not a valid stored procedure name.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetDeleteCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform deletions on the database.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetDeleteCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is required to perform deletions on the database.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is required to perform deletions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetInsertCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform insertions on the database.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetInsertCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is required to perform insertions on the database.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is required to perform insertions.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetUpdateCommand">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform updates on the database.</summary>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object that is required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.GetUpdateCommand(System.Boolean)">
|
|
<summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform updates on the database.</summary>
|
|
<param name="useColumnsForParameterNames">If <see langword="true" />, generate parameter names matching column names if possible. If <see langword="false" />, generate @p1, @p2, and so on.</param>
|
|
<returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand" /> object required to perform updates.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.QuoteIdentifier(System.String)">
|
|
<summary>Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier. This includes correctly escaping any embedded quotes in the identifier.</summary>
|
|
<param name="unquotedIdentifier">The original unquoted identifier.</param>
|
|
<returns>The quoted version of the identifier. Embedded quotes within the identifier are correctly escaped.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.QuotePrefix">
|
|
<summary>Gets or sets the starting character or characters to use when specifying SQL Server database objects, such as tables or columns, whose names contain characters such as spaces or reserved tokens.</summary>
|
|
<returns>The starting character or characters to use. The default is an empty string.</returns>
|
|
<exception cref="T:System.InvalidOperationException">This property cannot be changed after an INSERT, UPDATE, or DELETE command has been generated.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.QuoteSuffix">
|
|
<summary>Gets or sets the ending character or characters to use when specifying SQL Server database objects, such as tables or columns, whose names contain characters such as spaces or reserved tokens.</summary>
|
|
<returns>The ending character or characters to use. The default is an empty string.</returns>
|
|
<exception cref="T:System.InvalidOperationException">This property cannot be changed after an insert, update, or delete command has been generated.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCommandBuilder.SchemaSeparator">
|
|
<summary>Gets or sets the character to be used for the separator between the schema identifier and any other identifiers.</summary>
|
|
<returns>The character to be used as the schema separator.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCommandBuilder.UnquoteIdentifier(System.String)">
|
|
<summary>Given a quoted identifier, returns the correct unquoted form of that identifier. This includes correctly unescaping any embedded quotes in the identifier.</summary>
|
|
<param name="quotedIdentifier">The identifier that will have its embedded quotes removed.</param>
|
|
<returns>The unquoted identifier, with embedded quotes properly unescaped.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlCommandColumnEncryptionSetting">
|
|
<summary>Specifies how data will be sent and received when reading and writing encrypted columns. Depending on your specific query, performance impact may be reduced by bypassing the Always Encrypted driver's processing when non-encrypted columns are being used. Note that these settings cannot be used to bypass encryption and gain access to plaintext data. For details, see Always Encrypted (Database Engine).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlCommandColumnEncryptionSetting.Disabled">
|
|
<summary>Disables Always Encrypted for the query.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlCommandColumnEncryptionSetting.Enabled">
|
|
<summary>Enables Always Encrypted for the query.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlCommandColumnEncryptionSetting.ResultSetOnly">
|
|
<summary>Specifies that only the results of the command should be processed by the Always Encrypted routine in the driver. Use this value when the command has no parameters that require encryption.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlCommandColumnEncryptionSetting.UseConnectionSetting">
|
|
<summary>Specifies that the command should default to the Always Encrypted setting in the connection string.</summary>
|
|
</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" /> 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" /> 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.#ctor(System.String,System.Data.SqlClient.SqlCredential)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnection" /> class given a connection string, that does not use <see langword="Integrated Security = true" /> and a <see cref="T:System.Data.SqlClient.SqlCredential" /> object that contains the user ID and password.</summary>
|
|
<param name="connectionString">A connection string that does not use any of the following connection string keywords: <see langword="Integrated Security = true" />, <see langword="UserId" />, or <see langword="Password" />; or that does not use <see langword="ContextConnection = true" />.</param>
|
|
<param name="credential">A <see cref="T:System.Data.SqlClient.SqlCredential" /> object. If <paramref name="credential" /> is null, <see cref="M:System.Data.SqlClient.SqlConnection.#ctor(System.String,System.Data.SqlClient.SqlCredential)" /> is functionally equivalent to <see cref="M:System.Data.SqlClient.SqlConnection.#ctor(System.String)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.AccessToken">
|
|
<summary>Gets or sets the access token for the connection.</summary>
|
|
<returns>The access token for the connection.</returns>
|
|
</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.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.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.ChangeDatabase(System.String)">
|
|
<summary>Changes the current database for an open <see cref="T:System.Data.SqlClient.SqlConnection" />.</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.ChangePassword(System.String,System.Data.SqlClient.SqlCredential,System.Security.SecureString)">
|
|
<summary>Changes the SQL Server password for the user indicated in the <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</summary>
|
|
<param name="connectionString">The connection string that contains enough information to connect to a server. The connection string should not use any of the following connection string keywords: <see langword="Integrated Security = true" />, <see langword="UserId" />, or <see langword="Password" />; or <see langword="ContextConnection = true" />.</param>
|
|
<param name="credential">A <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</param>
|
|
<param name="newSecurePassword">The new password. <paramref name="newSecurePassword" /> must be read only. The password must also comply with any password security policy set on the server (for example, minimum length and requirements for specific characters).</param>
|
|
<exception cref="T:System.ArgumentException">The connection string contains any combination of <see langword="UserId" />, <see langword="Password" />, or <see langword="Integrated Security=true" />.
|
|
-or-
|
|
The connection string contains <see langword="Context Connection=true" />.
|
|
-or-
|
|
<paramref name="newSecurePassword" /> (or <paramref name="newPassword" />) is greater than 128 characters.
|
|
-or-
|
|
<paramref name="newSecurePassword" /> (or <paramref name="newPassword" />) is not read only.
|
|
-or-
|
|
<paramref name="newSecurePassword" /> (or <paramref name="newPassword" />) is an empty string.</exception>
|
|
<exception cref="T:System.ArgumentNullException">One of the parameters (<paramref name="connectionString" />, <paramref name="credential" />, or <paramref name="newSecurePassword" />) is null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnection.ChangePassword(System.String,System.String)">
|
|
<summary>Changes the SQL Server password for the user indicated in the connection string to the supplied new password.</summary>
|
|
<param name="connectionString">The connection string that contains enough information to connect to the server that you want. The connection string must contain the user ID and the current password.</param>
|
|
<param name="newPassword">The new password to set. This password must comply with any password security policy set on the server, including minimum length, requirements for specific characters, and so on.</param>
|
|
<exception cref="T:System.ArgumentException">The connection string includes the option to use integrated security.
|
|
Or
|
|
The <paramref name="newPassword" /> exceeds 128 characters.</exception>
|
|
<exception cref="T:System.ArgumentNullException">Either the <paramref name="connectionString" /> or the <paramref name="newPassword" /> parameter is null.</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" /> 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.ColumnEncryptionKeyCacheTtl">
|
|
<summary>Gets or sets the time-to-live for column encryption key entries in the column encryption key cache for the Always Encrypted feature. The default value is 2 hours. 0 means no caching at all.</summary>
|
|
<returns>The time interval.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.ColumnEncryptionQueryMetadataCacheEnabled">
|
|
<summary>Gets or sets a value that indicates whether query metadata caching is enabled (true) or not (false) for parameterized queries running against Always Encrypted enabled databases. The default value is true.</summary>
|
|
<returns>Returns true if query metadata caching is enabled; otherwise false. true is the default.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.ColumnEncryptionTrustedMasterKeyPaths">
|
|
<summary>Allows you to set a list of trusted key paths for a database server. If while processing an application query the driver receives a key path that is not on the list, the query will fail. This property provides additional protection against security attacks that involve a compromised SQL Server providing fake key paths, which may lead to leaking key store credentials.</summary>
|
|
<returns>The list of trusted master key paths for the column encryption.</returns>
|
|
</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" /> object associated with the <see cref="T:System.Data.SqlClient.SqlConnection" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlCommand" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.Credential">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCredential" /> object for this connection.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlCredential" /> object for this connection.</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="M:System.Data.SqlClient.SqlConnection.EnlistDistributedTransaction(System.EnterpriseServices.ITransaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.EnterpriseServices.ITransaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnection.EnlistTransaction(System.Transactions.Transaction)">
|
|
<summary>Enlists in the specified transaction as a distributed transaction.</summary>
|
|
<param name="transaction">A reference to an existing <see cref="T:System.Transactions.Transaction" /> in which to enlist.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors">
|
|
<summary>Gets or sets the <see cref="P:System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors" /> property.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlClient.SqlConnection.FireInfoMessageEventOnUserErrors" /> property has been set; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnection.GetSchema">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.SqlClient.SqlConnection" />. For more information about scheme, see SQL Server Schema Collections.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnection.GetSchema(System.String)">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.SqlClient.SqlConnection" /> using the specified string for the schema name.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="collectionName" /> is specified as null.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnection.GetSchema(System.String,System.String[])">
|
|
<summary>Returns schema information for the data source of this <see cref="T:System.Data.SqlClient.SqlConnection" /> using the specified string for the schema name and the specified string array for the restriction values.</summary>
|
|
<param name="collectionName">Specifies the name of the schema to return.</param>
|
|
<param name="restrictionValues">A set of restriction values for the requested schema.</param>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that contains schema information.</returns>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="collectionName" /> is specified as null.</exception>
|
|
</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" />.</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="P:System.Data.SqlClient.SqlException.Number" /> property contains the value 18487 or 18488, this indicates that the specified password has expired or must be reset. See the <see cref="M:System.Data.SqlClient.SqlConnection.ChangePassword(System.String,System.String)" /> method for more information.
|
|
The <see langword="<system.data.localdb>" /> 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 <see langword="<localdbinstances>" /> 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" />, which opens a database connection with the property settings specified by the <see cref="P:System.Data.SqlClient.SqlConnection.ConnectionString" />. 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="M:System.Data.SqlClient.SqlConnection.OpenAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
<see langword="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.RegisterColumnEncryptionKeyStoreProviders(System.Collections.Generic.IDictionary{System.String,System.Data.SqlClient.SqlColumnEncryptionKeyStoreProvider})">
|
|
<summary>Registers the column encryption key store providers.</summary>
|
|
<param name="customProviders">The custom providers</param>
|
|
</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="T:System.Collections.IDictionary" /> of <see cref="T:System.Collections.DictionaryEntry" /> 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="P:System.Data.SqlClient.SqlConnection.ServerVersion" /> was called while the returned Task was not completed and the connection was not opened after a call to <see cref="M:System.Data.SqlClient.SqlConnection.OpenAsync(System.Threading.CancellationToken)" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.State">
|
|
<summary>Indicates the state of the <see cref="T:System.Data.SqlClient.SqlConnection" /> during the most recent network operation performed on the connection.</summary>
|
|
<returns>An <see cref="T:System.Data.ConnectionState" /> enumeration.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnection.StatisticsEnabled">
|
|
<summary>When set to <see langword="true" />, enables statistics gathering for the current connection.</summary>
|
|
<returns>Returns <see langword="true" /> if statistics gathering is enabled; otherwise <see langword="false" />. <see langword="false" /> is the default.</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="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="T:System.Data.SqlClient.SqlConnectionColumnEncryptionSetting">
|
|
<summary>Specifies that Always Encrypted functionality is enabled in a connection. Note that these settings cannot be used to bypass encryption and gain access to plaintext data. For details, see Always Encrypted (Database Engine).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlConnectionColumnEncryptionSetting.Disabled">
|
|
<summary>Specifies the connection does not use Always Encrypted. Should be used if no queries sent over the connection access encrypted columns.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlConnectionColumnEncryptionSetting.Enabled">
|
|
<summary>Enables Always Encrypted functionality for the connection. Query parameters that correspond to encrypted columns will be transparently encrypted and query results from encrypted columns will be transparently decrypted.</summary>
|
|
</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" /> 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" /> 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" /> class. The provided connection string provides the data for the instance's internal connection information.</summary>
|
|
<param name="connectionString">The basis for the object's internal connection information. Parsed into name/value pairs. Invalid key names raise <see cref="T:System.Collections.Generic.KeyNotFoundException" />.</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" /> 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" />. 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="T:System.Data.SqlClient.ApplicationIntent" />).</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 ".NET SqlClient Data Provider" if no name has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.AsynchronousProcessing">
|
|
<summary>Gets or sets a Boolean value that indicates whether asynchronous processing is allowed by the connection created by using this connection string.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.AsynchronousProcessing" /> property, or <see langword="false" /> if no value has been supplied.</returns>
|
|
</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 <see langword="AttachDBFilename" /> property, or <see langword="String.Empty" /> if no value has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Authentication">
|
|
<summary>Gets the authentication of the connection string.</summary>
|
|
<returns>The authentication of the connection string.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlConnectionStringBuilder.Clear">
|
|
<summary>Clears the contents of the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> instance.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ColumnEncryptionSetting">
|
|
<summary>Gets or sets the column encryption settings for the connection string builder.</summary>
|
|
<returns>The column encryption settings for the connection string builder.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectionReset">
|
|
<summary>Obsolete. Gets or sets a Boolean value that indicates whether the connection is reset when drawn from the connection pool.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectionReset" /> property, or true if no value has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectRetryCount">
|
|
<summary>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" /> 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>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" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.ConnectTimeout" /> 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" /> contains a specific key.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</param>
|
|
<returns>true if the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> contains an element that has the specified key; otherwise, false.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="Nothing" /> in Visual Basic)</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.ContextConnection">
|
|
<summary>Gets or sets a value that indicates whether a client/server or in-process connection to SQL Server should be made.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.ContextConnection" /> property, or <see langword="False" /> if none has been supplied.</returns>
|
|
</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.CurrentLanguage" /> property, or <see langword="String.Empty" /> if no value has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.DataSource" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.EnclaveAttestationUrl">
|
|
<summary>Gets or sets the enclave attestation Url to be used with enclave based Always Encrypted.</summary>
|
|
<returns>The enclave attestation Url.</returns>
|
|
</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.Encrypt" /> property, or <see langword="false" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Enlist">
|
|
<summary>Gets or sets a Boolean value that indicates whether the SQL Server connection pooler automatically enlists the connection in the creation thread's current transaction context.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.Enlist" /> property, or <see langword="true" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.FailoverPartner" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.InitialCatalog" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</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 <see langword="false" />) or whether the current Windows account credentials are used for authentication (when <see langword="true" />).</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.IntegratedSecurity" /> property, or <see langword="false" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> has a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> in every case, because the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> supplies a fixed-size collection of key/value pairs.</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" /> is a null reference (<see langword="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" /> that contains the keys in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the keys in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.LoadBalanceTimeout" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.MaxPoolSize" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.MinPoolSize" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.MultipleActiveResultSets" /> property, or <see langword="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="T:System.Boolean" /> indicating the current value of the property.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.NetworkLibrary">
|
|
<summary>Gets or sets a string that contains the name of the network library used to establish a connection to the SQL Server.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.NetworkLibrary" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.PacketSize" /> 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.Password" /> property, or <see langword="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="P:System.Data.SqlClient.SqlConnectionStringBuilder.PersistSecurityInfo" /> property, or <see langword="false" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.PoolBlockingPeriod">
|
|
<summary>The blocking period behavior for a connection pool.</summary>
|
|
<returns>The available blocking period settings.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.Pooling" /> property, or <see langword="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" /> 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" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the key existed within the connection string and was removed; <see langword="false" /> if the key did not exist.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> is null (<see langword="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="P:System.Data.SqlClient.SqlConnectionStringBuilder.Replication" /> 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" /> instance.</summary>
|
|
<param name="keyword">The key to locate in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" /> contains an entry with the specified key; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.TransactionBinding">
|
|
<summary>Gets or sets a string value that indicates how the connection maintains its association with an enlisted <see langword="System.Transactions" /> transaction.</summary>
|
|
<returns>The value of the <see cref="P:System.Data.SqlClient.SqlConnectionStringBuilder.TransactionBinding" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.TransparentNetworkIPResolution">
|
|
<summary>When the value of this key is set to <see langword="true" />, the application is required to retrieve all IP addresses for a particular DNS entry and attempt to connect with the first one in the list. If the connection is not established within 0.5 seconds, the application will try to connect to all others in parallel. When the first answers, the application will establish the connection with the respondent IP address.</summary>
|
|
<returns>A boolean value.</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 <see langword="Boolean" />. Recognized values are <see langword="true" />, <see langword="false" />, <see langword="yes" />, and <see langword="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" />.</summary>
|
|
<param name="keyword">The key of the item to retrieve.</param>
|
|
<param name="value">The value corresponding to <paramref name="keyword" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if <paramref name="keyword" /> was found within the connection string; otherwise, <see langword="false" />.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="keyword" /> contains a null value (<see langword="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="P:System.Data.SqlClient.SqlConnectionStringBuilder.TypeSystemVersion" /> property:
|
|
Value
|
|
|
|
Description
|
|
|
|
SQL Server 2005
|
|
|
|
Uses the SQL Server 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="P:System.Data.SqlClient.SqlConnectionStringBuilder.UserID" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.UserInstance" /> property, or <see langword="False" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlConnectionStringBuilder.Values">
|
|
<summary>Gets an <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.ICollection" /> that contains the values in the <see cref="T:System.Data.SqlClient.SqlConnectionStringBuilder" />.</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="P:System.Data.SqlClient.SqlConnectionStringBuilder.WorkstationID" /> property, or <see langword="String.Empty" /> if none has been supplied.</returns>
|
|
<exception cref="T:System.ArgumentNullException">To set the value to null, use <see cref="F:System.DBNull.Value" />.</exception>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlCredential">
|
|
<summary>
|
|
<see cref="T:System.Data.SqlClient.SqlCredential" /> provides a more secure way to specify the password for a login attempt using SQL Server Authentication.
|
|
<see cref="T:System.Data.SqlClient.SqlCredential" /> is comprised of a user id and a password that will be used for SQL Server Authentication. The password in a <see cref="T:System.Data.SqlClient.SqlCredential" /> object is of type <see cref="T:System.Security.SecureString" />.
|
|
<see cref="T:System.Data.SqlClient.SqlCredential" /> cannot be inherited.
|
|
Windows Authentication (<see langword="Integrated Security = true" />) remains the most secure way to log in to a SQL Server database.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlCredential.#ctor(System.String,System.Security.SecureString)">
|
|
<summary>Creates an object of type <see cref="T:System.Data.SqlClient.SqlCredential" />.</summary>
|
|
<param name="userId">The user id.</param>
|
|
<param name="password">The password; a <see cref="T:System.Security.SecureString" /> value marked as read-only. Passing a read/write <see cref="T:System.Security.SecureString" /> parameter will raise an <see cref="T:System.ArgumentException" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCredential.Password">
|
|
<summary>Gets the password component of the <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</summary>
|
|
<returns>The password component of the <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlCredential.UserId">
|
|
<summary>Gets the user ID component of the <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</summary>
|
|
<returns>The user ID component of the <see cref="T:System.Data.SqlClient.SqlCredential" /> object.</returns>
|
|
</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" /> 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" /> 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" /> class with the specified <see cref="T:System.Data.SqlClient.SqlCommand" /> as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> property.</summary>
|
|
<param name="selectCommand">A <see cref="T:System.Data.SqlClient.SqlCommand" /> that is a Transact-SQL SELECT statement or stored procedure and is set as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</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" /> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> and a <see cref="T:System.Data.SqlClient.SqlConnection" /> object.</summary>
|
|
<param name="selectCommandText">A <see cref="T:System.String" /> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</param>
|
|
<param name="selectConnection">A <see cref="T:System.Data.SqlClient.SqlConnection" /> that represents the connection. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="T:System.Data.SqlClient.SqlCredential" /> 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" /> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> and a connection string.</summary>
|
|
<param name="selectCommandText">A <see cref="T:System.String" /> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand" /> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</param>
|
|
<param name="selectConnectionString">The connection string. If your connection string does not use <see langword="Integrated Security = true" />, you can use <see cref="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.Data.SqlClient.SqlConnection)" /> and <see cref="T:System.Data.SqlClient.SqlCredential" /> 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="T:System.Data.SqlClient.SqlCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the database that correspond to deleted rows in the <see cref="T:System.Data.DataSet" />.</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="T:System.Data.SqlClient.SqlCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records into the database that correspond to new rows in the <see cref="T:System.Data.DataSet" />.</returns>
|
|
</member>
|
|
<member name="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated">
|
|
<summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> 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)" /> 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="T:System.Data.SqlClient.SqlCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)" /> to select records from the database for placement in the <see cref="T:System.Data.DataSet" />.</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" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to delete records in the data source for deleted rows in the data set.</returns>
|
|
</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" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to insert records in the data source for new rows in the data set.</returns>
|
|
</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" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to select records from data source for placement in the data set.</returns>
|
|
</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" />.</summary>
|
|
<returns>An <see cref="T:System.Data.IDbCommand" /> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the data source for modified rows in the data set.</returns>
|
|
</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" />.</summary>
|
|
<returns>A new object that is a copy of the current instance.</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.
|
|
|
|
>1
|
|
|
|
Changes are sent using batches of <see cref="P:System.Data.SqlClient.SqlDataAdapter.UpdateBatchSize" /> operations at a time.
|
|
|
|
|
|
|
|
When setting this to a value other than 1, all the commands associated with the <see cref="T:System.Data.SqlClient.SqlDataAdapter" /> have to have their UpdatedRowSource property set to <see langword="None" /> or <see langword="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="T:System.Data.SqlClient.SqlCommand" /> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> to update records in the database that correspond to modified rows in the <see cref="T:System.Data.DataSet" />.</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="M:System.Data.SqlClient.SqlDataReader.Close">
|
|
<summary>Closes the <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlDataReader.Connection">
|
|
<summary>Gets the <see cref="T:System.Data.SqlClient.SqlConnection" /> associated with the <see cref="T:System.Data.SqlClient.SqlDataReader" />.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlConnection" /> associated with the <see cref="T:System.Data.SqlClient.SqlDataReader" />.</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 <paramref name="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 <paramref name="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" /> 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" /> 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" /> 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" /> that iterates through the <see cref="T:System.Data.SqlClient.SqlDataReader" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Data.SqlClient.SqlDataReader" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDataReader.GetFieldType(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Type" /> that is the data type of the object.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The <see cref="T:System.Type" /> 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)" /> 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="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Tried to read a previously-read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The value of the column was null (<see cref="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)" /> == <see langword="true" />), retrieving a non-SQL type.</exception>
|
|
<exception cref="T:System.InvalidCastException">
|
|
<paramref name="T" /> 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)" /> 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 <see langword="CancellationToken.None" /> makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)" />. 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="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Tried to read a previously-read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.
|
|
<see langword="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="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)" /> == <see langword="true" />), retrieving a non-SQL type.</exception>
|
|
<exception cref="T:System.InvalidCastException">
|
|
<paramref name="T" /> 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 <see langword="Object" /> that is a representation of the underlying provider-specific field type.</summary>
|
|
<param name="i">An <see cref="T:System.Int32" /> representing the column ordinal.</param>
|
|
<returns>Gets an <see cref="T:System.Object" /> 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 <see langword="Object" /> that is a representation of the underlying provider specific value.</summary>
|
|
<param name="i">An <see cref="T:System.Int32" /> representing the column ordinal.</param>
|
|
<returns>An <see cref="T:System.Object" /> 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" /> 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.GetSchemaTable">
|
|
<summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:System.Data.SqlClient.SqlDataReader" />.</summary>
|
|
<returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> is closed.</exception>
|
|
</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlBinary" />.</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" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlByte" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlBytes" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlChars" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlDouble" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlGuid" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlInt16" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlInt32" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlInt64" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlSingle" />.</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" />.</summary>
|
|
<param name="i">The zero-based column ordinal.</param>
|
|
<returns>The value of the column expressed as a <see cref="T:System.Data.SqlTypes.SqlString" />.</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="T:System.Data.SqlDbType" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDataReader.GetSqlValues(System.Object[])">
|
|
<summary>Fills an array of <see cref="T:System.Object" /> 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" /> 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" /> 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="T:System.Data.SqlTypes.SqlXml" /> 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="P:System.Data.DataTableReader.FieldCount" /> - 1</exception>
|
|
<exception cref="T:System.InvalidOperationException">An attempt was made to read or access columns in a closed <see cref="T:System.Data.SqlClient.SqlDataReader" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The retrieved data is not compatible with the <see cref="T:System.Data.SqlTypes.SqlXml" /> 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" />.</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="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Tried to read a previously-read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.InvalidCastException">The returned type was not one of the types below:
|
|
|
|
binary
|
|
|
|
image
|
|
|
|
varbinary
|
|
|
|
udt</exception>
|
|
</member>
|
|
<member name="M:System.Data.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" />.</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="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Tried to read a previously-read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<exception cref="T:System.InvalidCastException">The returned type was not one of the types below:
|
|
|
|
char
|
|
|
|
nchar
|
|
|
|
ntext
|
|
|
|
nvarchar
|
|
|
|
text
|
|
|
|
varchar</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDataReader.GetTimeSpan(System.Int32)">
|
|
<summary>Retrieves the value of the specified column as a <see cref="T:System.TimeSpan" /> 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="T:System.DBNull" /> 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" /> into which to copy the attribute columns.</param>
|
|
<returns>The number of instances of <see cref="T:System.Object" /> 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" />.</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="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Trying to read a previously read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.</exception>
|
|
<exception cref="T:System.IndexOutOfRangeException">Trying to read a column that does not exist.</exception>
|
|
<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" /> contains one or more rows.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlDataReader" /> contains one or more rows; otherwise <see langword="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" /> instance has been closed.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the specified <see cref="T:System.Data.SqlClient.SqlDataReader" /> instance is closed; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDataReader.IsCommandBehavior(System.Data.CommandBehavior)">
|
|
<summary>Determines whether the specified <see cref="T:System.Data.CommandBehavior" /> matches that of the <see cref="T:System.Data.SqlClient.SqlDataReader" /> .</summary>
|
|
<param name="condition">A <see cref="T:System.Data.CommandBehavior" /> enumeration.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified <see cref="T:System.Data.CommandBehavior" /> is true, <see langword="false" /> otherwise.</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>
|
|
<see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise <see langword="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)" />, 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 <see langword="CancellationToken.None" /> makes this method equivalent to <see cref="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)" />. The returned task must be marked as cancelled.</param>
|
|
<returns>
|
|
<see langword="true" /> if the specified column value is equivalent to <see langword="DBNull" /> otherwise <see langword="false" />.</returns>
|
|
<exception cref="T:System.InvalidOperationException">The connection drops or is closed during the data retrieval.
|
|
The <see cref="T:System.Data.SqlClient.SqlDataReader" /> is closed during the data retrieval.
|
|
There is no data ready to be read (for example, the first <see cref="M:System.Data.SqlClient.SqlDataReader.Read" /> hasn't been called, or returned false).
|
|
Trying to read a previously read column in sequential mode.
|
|
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.
|
|
<see langword="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.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="P:System.Data.IDataRecord.FieldCount" />.</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="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>
|
|
<see langword="true" /> if there are more result sets; otherwise <see langword="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" />, 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="M:System.Data.SqlClient.SqlDataReader.NextResultAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
<see langword="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" /> to the next record.</summary>
|
|
<returns>
|
|
<see langword="true" /> if there are more rows; otherwise <see langword="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" />, which advances the <see cref="T:System.Data.SqlClient.SqlDataReader" /> 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="M:System.Data.SqlClient.SqlDataReader.ReadAsync(System.Threading.CancellationToken)" /> more than once for the same instance before task completion.
|
|
<see langword="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="M:System.Data.SqlClient.SqlDataReader.System#Data#IDataRecord#GetData(System.Int32)">
|
|
<summary>Returns an <see cref="T:System.Data.IDataReader" /> for the specified column ordinal.</summary>
|
|
<param name="i">A column ordinal.</param>
|
|
<returns>The <see cref="T:System.Data.IDataReader" /> instance for the specified column ordinal.</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" /> that are not hidden.</summary>
|
|
<returns>The number of fields that are not hidden.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SQLDebugging">
|
|
<summary>Included to support debugging applications. Not intended for direct use.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SQLDebugging.#ctor">
|
|
<summary>Included to support debugging applications. Not intended for direct use.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlDependency">
|
|
<summary>The <see cref="T:System.Data.SqlClient.SqlDependency" /> object represents a query notification dependency between an application and an instance of SQL Server. An application can create a <see cref="T:System.Data.SqlClient.SqlDependency" /> object and register to receive notifications via the <see cref="T:System.Data.SqlClient.OnChangeEventHandler" /> event handler.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.#ctor">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.SqlClient.SqlDependency" /> class with the default settings.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.#ctor(System.Data.SqlClient.SqlCommand)">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.SqlClient.SqlDependency" /> class and associates it with the <see cref="T:System.Data.SqlClient.SqlCommand" /> parameter.</summary>
|
|
<param name="command">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object to associate with this <see cref="T:System.Data.SqlClient.SqlDependency" /> object. The constructor will set up a <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object and bind it to the command.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="command" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object already has a <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object assigned to its <see cref="P:System.Data.SqlClient.SqlCommand.Notification" /> property, and that <see cref="T:System.Data.Sql.SqlNotificationRequest" /> is not associated with this dependency.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.#ctor(System.Data.SqlClient.SqlCommand,System.String,System.Int32)">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.SqlClient.SqlDependency" /> class, associates it with the <see cref="T:System.Data.SqlClient.SqlCommand" /> parameter, and specifies notification options and a time-out value.</summary>
|
|
<param name="command">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object to associate with this <see cref="T:System.Data.SqlClient.SqlDependency" /> object. The constructor sets up a <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object and bind it to the command.</param>
|
|
<param name="options">The notification request options to be used by this dependency. <see langword="null" /> to use the default service.</param>
|
|
<param name="timeout">The time-out for this notification in seconds. The default is 0, indicating that the server's time-out should be used.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="command" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The time-out value is less than zero.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object already has a <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object assigned to its <see cref="P:System.Data.SqlClient.SqlCommand.Notification" /> property and that <see cref="T:System.Data.Sql.SqlNotificationRequest" /> is not associated with this dependency.
|
|
An attempt was made to create a SqlDependency instance from within SQLCLR.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.AddCommandDependency(System.Data.SqlClient.SqlCommand)">
|
|
<summary>Associates a <see cref="T:System.Data.SqlClient.SqlCommand" /> object with this <see cref="T:System.Data.SqlClient.SqlDependency" /> instance.</summary>
|
|
<param name="command">A <see cref="T:System.Data.SqlClient.SqlCommand" /> object containing a statement that is valid for notifications.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="command" /> parameter is null.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlCommand" /> object already has a <see cref="T:System.Data.Sql.SqlNotificationRequest" /> object assigned to its <see cref="P:System.Data.SqlClient.SqlCommand.Notification" /> property, and that <see cref="T:System.Data.Sql.SqlNotificationRequest" /> is not associated with this dependency.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlDependency.HasChanges">
|
|
<summary>Gets a value that indicates whether one of the result sets associated with the dependency has changed.</summary>
|
|
<returns>A Boolean value indicating whether one of the result sets has changed.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlDependency.Id">
|
|
<summary>Gets a value that uniquely identifies this instance of the <see cref="T:System.Data.SqlClient.SqlDependency" /> class.</summary>
|
|
<returns>A string representation of a GUID that is generated for each instance of the <see cref="T:System.Data.SqlClient.SqlDependency" /> class.</returns>
|
|
</member>
|
|
<member name="E:System.Data.SqlClient.SqlDependency.OnChange">
|
|
<summary>Occurs when a notification is received for any of the commands associated with this <see cref="T:System.Data.SqlClient.SqlDependency" /> object.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.Start(System.String)">
|
|
<summary>Starts the listener for receiving dependency change notifications from the instance of SQL Server specified by the connection string.</summary>
|
|
<param name="connectionString">The connection string for the instance of SQL Server from which to obtain change notifications.</param>
|
|
<returns>
|
|
<see langword="true" /> if the listener initialized successfully; <see langword="false" /> if a compatible listener already exists.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="connectionString" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="connectionString" /> parameter is the same as a previous call to this method, but the parameters are different.
|
|
The method was called from within the CLR.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required <see cref="T:System.Data.SqlClient.SqlClientPermission" /> code access security (CAS) permission.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">A subsequent call to the method has been made with an equivalent <paramref name="connectionString" /> parameter with a different user, or a user that does not default to the same schema.
|
|
Also, any underlying SqlClient exceptions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.Start(System.String,System.String)">
|
|
<summary>Starts the listener for receiving dependency change notifications from the instance of SQL Server specified by the connection string using the specified SQL Server Service Broker queue.</summary>
|
|
<param name="connectionString">The connection string for the instance of SQL Server from which to obtain change notifications.</param>
|
|
<param name="queue">An existing SQL Server Service Broker queue to be used. If <see langword="null" />, the default queue is used.</param>
|
|
<returns>
|
|
<see langword="true" /> if the listener initialized successfully; <see langword="false" /> if a compatible listener already exists.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="connectionString" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The <paramref name="connectionString" /> parameter is the same as a previous call to this method, but the parameters are different.
|
|
The method was called from within the CLR.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required <see cref="T:System.Data.SqlClient.SqlClientPermission" /> code access security (CAS) permission.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">A subsequent call to the method has been made with an equivalent <paramref name="connectionString" /> parameter but a different user, or a user that does not default to the same schema.
|
|
Also, any underlying SqlClient exceptions.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.Stop(System.String)">
|
|
<summary>Stops a listener for a connection specified in a previous <see cref="Overload:System.Data.SqlClient.SqlDependency.Start" /> call.</summary>
|
|
<param name="connectionString">Connection string for the instance of SQL Server that was used in a previous <see cref="M:System.Data.SqlClient.SqlDependency.Start(System.String)" /> call.</param>
|
|
<returns>
|
|
<see langword="true" /> if the listener was completely stopped; <see langword="false" /> if the <see cref="T:System.AppDomain" /> was unbound from the listener, but there are is at least one other <see cref="T:System.AppDomain" /> using the same listener.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="connectionString" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The method was called from within SQLCLR.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required <see cref="T:System.Data.SqlClient.SqlClientPermission" /> code access security (CAS) permission.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">An underlying SqlClient exception occurred.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlDependency.Stop(System.String,System.String)">
|
|
<summary>Stops a listener for a connection specified in a previous <see cref="Overload:System.Data.SqlClient.SqlDependency.Start" /> call.</summary>
|
|
<param name="connectionString">Connection string for the instance of SQL Server that was used in a previous <see cref="M:System.Data.SqlClient.SqlDependency.Start(System.String,System.String)" /> call.</param>
|
|
<param name="queue">The SQL Server Service Broker queue that was used in a previous <see cref="M:System.Data.SqlClient.SqlDependency.Start(System.String,System.String)" /> call.</param>
|
|
<returns>
|
|
<see langword="true" /> if the listener was completely stopped; <see langword="false" /> if the <see cref="T:System.AppDomain" /> was unbound from the listener, but there is at least one other <see cref="T:System.AppDomain" /> using the same listener.</returns>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="connectionString" /> parameter is NULL.</exception>
|
|
<exception cref="T:System.InvalidOperationException">The method was called from within SQLCLR.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required <see cref="T:System.Data.SqlClient.SqlClientPermission" /> code access security (CAS) permission.</exception>
|
|
<exception cref="T:System.Data.SqlClient.SqlException">And underlying SqlClient exception occurred.</exception>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlEnclaveAttestationParameters">
|
|
<summary>Encapsulates the information SqlClient sends to SQL Server to initiate the process of attesting and creating a secure session with the enclave, SQL Server uses for computations on columns protected using Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlEnclaveAttestationParameters.#ctor(System.Int32,System.Byte[],System.Security.Cryptography.ECDiffieHellmanCng)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlEnclaveAttestationParameters" /> class.</summary>
|
|
<param name="protocol">The enclave attestation protocol.</param>
|
|
<param name="input">The input of the enclave attestation protocol.</param>
|
|
<param name="clientDiffieHellmanKey">A Diffie-Hellman algorithm that encapsulates a client-side key pair.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="clientDiffieHellmanKey" /> is <see langword="null" />.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlEnclaveAttestationParameters.ClientDiffieHellmanKey">
|
|
<summary>Gets a Diffie-Hellman algorithm that encapsulates a key pair that SqlClient uses to establish a secure session with the enclave.</summary>
|
|
<returns>The Diffie-Hellman algorithm.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlEnclaveAttestationParameters.GetInput">
|
|
<summary>Gets the information used to initiate the process of attesting the enclave. The format and the content of this information is specific to the attestation protocol.</summary>
|
|
<returns>The information required by SQL Server to execute attestation protocol identified by EnclaveAttestationProtocols.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlEnclaveAttestationParameters.Protocol">
|
|
<summary>Gets the enclave attestation protocol identifier.</summary>
|
|
<returns>The enclave attestation protocol identifier.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlEnclaveSession">
|
|
<summary>Encapsulates the state of a secure session between SqlClient and an enclave inside SQL Server, which can be used for computations on encrypted columns protected with Always Encrypted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlEnclaveSession.#ctor(System.Byte[],System.Int64)">
|
|
<summary>Instantiates a new instance of the <see cref="T:System.Data.SqlClient.SqlEnclaveSession" /> class.</summary>
|
|
<param name="sessionKey">The symmetric key used to encrypt all the information sent using the session.</param>
|
|
<param name="sessionId">The session ID.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="sessionKey" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentException">
|
|
<paramref name="sessionKey" /> has zero length.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlEnclaveSession.GetSessionKey">
|
|
<summary>Gets the symmetric key that SqlClient uses to encrypt all the information it sends to the enclave using the session.</summary>
|
|
<returns>The symmetric key.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlEnclaveSession.SessionId">
|
|
<summary>Gets the session ID.</summary>
|
|
<returns>The session ID.</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 Database Engine Events and Errors.</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 Database Engine Events and Errors.</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" /> collection into an <see cref="T:System.Array" />, starting at the specified index.</summary>
|
|
<param name="array">The <see cref="T:System.Array" /> to copy elements into.</param>
|
|
<param name="index">The index from which to start copying into the <paramref name="array" /> parameter.</param>
|
|
<exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and the number of elements in the <see cref="T:System.Data.SqlClient.SqlErrorCollection" /> collection is greater than the <see cref="P:System.Array.Length" /> of the <see cref="T:System.Array" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="array" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> is not valid for <paramref name="array" />.</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" /> collection into a <see cref="T:System.Data.SqlClient.SqlErrorCollection" />, starting at the specified index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.SqlClient.SqlErrorCollection" /> to copy the elements into.</param>
|
|
<param name="index">The index from which to start copying into the <paramref name="array" /> parameter.</param>
|
|
<exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and the number of elements in the <see cref="T:System.Data.SqlClient.SqlErrorCollection" /> collection is greater than the length of the <see cref="T:System.Data.SqlClient.SqlErrorCollection" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="array" /> is <see langword="null" />.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> is not valid for <paramref name="array" />.</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" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Data.SqlClient.SqlErrorCollection" />.</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="T:System.Data.SqlClient.SqlError" /> 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" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="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" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</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>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" /> 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="T:System.Data.SqlClient.SqlError" /> 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" /> with information about the exception.</summary>
|
|
<param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
|
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="si" /> parameter is a null reference (<see langword="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 "no data found" message. For more information about how to decode these values, see Database Engine Events and Errors.</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" /> object, and includes the client connection ID (for more information, see <see cref="P:System.Data.SqlClient.SqlException.ClientConnectionId" />).</summary>
|
|
<returns>A string that represents the current <see cref="T:System.Data.SqlClient.SqlException" /> object.<see cref="T:System.String" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlInfoMessageEventArgs">
|
|
<summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage" /> 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" /> event.</summary>
|
|
<returns>A string representing the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage" /> 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" /> event of a <see cref="T:System.Data.SqlClient.SqlConnection" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.SqlClient.SqlInfoMessageEventArgs" /> object that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlNotificationEventArgs">
|
|
<summary>Represents the set of arguments passed to the notification event handler.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlNotificationEventArgs.#ctor(System.Data.SqlClient.SqlNotificationType,System.Data.SqlClient.SqlNotificationInfo,System.Data.SqlClient.SqlNotificationSource)">
|
|
<summary>Creates a new instance of the <see cref="T:System.Data.SqlClient.SqlNotificationEventArgs" /> object.</summary>
|
|
<param name="type">
|
|
<see cref="T:System.Data.SqlClient.SqlNotificationType" /> value that indicates whether this notification is generated because of an actual change, or by the subscription.</param>
|
|
<param name="info">
|
|
<see cref="T:System.Data.SqlClient.SqlNotificationInfo" /> value that indicates the reason for the notification event. This may occur because the data in the store actually changed, or the notification became invalid (for example, it timed out).</param>
|
|
<param name="source">
|
|
<see cref="T:System.Data.SqlClient.SqlNotificationSource" /> value that indicates the source that generated the notification.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlNotificationEventArgs.Info">
|
|
<summary>Gets a value that indicates the reason for the notification event, such as a row in the database being modified or a table being truncated.</summary>
|
|
<returns>The notification event reason.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlNotificationEventArgs.Source">
|
|
<summary>Gets a value that indicates the source that generated the notification, such as a change to the query data or the database's state.</summary>
|
|
<returns>The source of the notification.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlNotificationEventArgs.Type">
|
|
<summary>Gets a value that indicates whether this notification is generated because of an actual change, or by the subscription.</summary>
|
|
<returns>A value indicating whether the notification was generated by a change or a subscription.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlNotificationInfo">
|
|
<summary>This enumeration provides additional information about the different notifications that can be received by the dependency event handler.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.AlreadyChanged">
|
|
<summary>The <see langword="SqlDependency" /> object already fired, and new commands cannot be added to it.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Alter">
|
|
<summary>An underlying server object related to the query was modified.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Delete">
|
|
<summary>Data was changed by a DELETE statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Drop">
|
|
<summary>An underlying object related to the query was dropped.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Error">
|
|
<summary>An internal server error occurred.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Expired">
|
|
<summary>The <see langword="SqlDependency" /> object has expired.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Insert">
|
|
<summary>Data was changed by an INSERT statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Invalid">
|
|
<summary>A statement was provided that cannot be notified (for example, an UPDATE statement).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Isolation">
|
|
<summary>The statement was executed under an isolation mode that was not valid (for example, Snapshot).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Merge">
|
|
<summary>Used to distinguish the server-side cause for a query notification firing.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Options">
|
|
<summary>The SET options were not set appropriately at subscription time.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.PreviousFire">
|
|
<summary>A previous statement has caused query notifications to fire under the current transaction.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Query">
|
|
<summary>A SELECT statement that cannot be notified or was provided.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Resource">
|
|
<summary>Fires as a result of server resource pressure.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Restart">
|
|
<summary>The server was restarted (notifications are sent during restart.).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.TemplateLimit">
|
|
<summary>The subscribing query causes the number of templates on one of the target tables to exceed the maximum allowable limit.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Truncate">
|
|
<summary>One or more tables were truncated.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Unknown">
|
|
<summary>Used when the info option sent by the server was not recognized by the client.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationInfo.Update">
|
|
<summary>Data was changed by an UPDATE statement.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlNotificationSource">
|
|
<summary>Indicates the source of the notification received by the dependency event handler.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Client">
|
|
<summary>A client-initiated notification occurred, such as a client-side time-out or as a result of attempting to add a command to a dependency that has already fired.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Data">
|
|
<summary>Data has changed; for example, an insert, update, delete, or truncate operation occurred.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Database">
|
|
<summary>The database state changed; for example, the database related to the query was dropped or detached.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Environment">
|
|
<summary>The run-time environment was not compatible with notifications; for example, the isolation level was set to snapshot, or one or more SET options are not compatible.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Execution">
|
|
<summary>A run-time error occurred during execution.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Object">
|
|
<summary>A database object changed; for example, an underlying object related to the query was dropped or modified.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Owner">
|
|
<summary>Internal only; not intended to be used in your code.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Statement">
|
|
<summary>The Transact-SQL statement is not valid for notifications; for example, a SELECT statement that could not be notified or a non-SELECT statement was executed.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.System">
|
|
<summary>A system-related event occurred. For example, there was an internal error, the server was restarted, or resource pressure caused the invalidation.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Timeout">
|
|
<summary>The subscription time-out expired.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationSource.Unknown">
|
|
<summary>Used when the source option sent by the server was not recognized by the client.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlNotificationType">
|
|
<summary>Describes the different notification types that can be received by an <see cref="T:System.Data.SqlClient.OnChangeEventHandler" /> event handler through the <see cref="T:System.Data.SqlClient.SqlNotificationEventArgs" /> parameter.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationType.Change">
|
|
<summary>Data on the server being monitored changed. Use the <see cref="T:System.Data.SqlClient.SqlNotificationInfo" /> item to determine the details of the change.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationType.Subscribe">
|
|
<summary>There was a failure to create a notification subscription. Use the <see cref="T:System.Data.SqlClient.SqlNotificationEventArgs" /> object's <see cref="T:System.Data.SqlClient.SqlNotificationInfo" /> item to determine the cause of the failure.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlClient.SqlNotificationType.Unknown">
|
|
<summary>Used when the type option sent by the server was not recognized by the client.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlClient.SqlParameter">
|
|
<summary>Represents a parameter to a <see cref="T:System.Data.SqlClient.SqlCommand" /> and optionally its mapping to <see cref="T:System.Data.DataSet" /> 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" /> 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" /> 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" /> values.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType" /> 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)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter" /> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType" />, 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" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType" /> 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.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter" /> class that uses the parameter name, the type of the parameter, the size of the parameter, a <see cref="T:System.Data.ParameterDirection" />, the precision of the parameter, the scale of the parameter, the source column, a <see cref="T:System.Data.DataRowVersion" /> to use, and the value of the 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" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> values.</param>
|
|
<param name="isNullable">
|
|
<see langword="true" /> if the value of the field can be null; otherwise, <see langword="false" />.</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" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> is resolved.</param>
|
|
<param name="sourceColumn">The name of the source column (<see cref="P:System.Data.SqlClient.SqlParameter.SourceColumn" />) if this <see cref="T:System.Data.SqlClient.SqlParameter" /> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update" />.</param>
|
|
<param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType" /> 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" /> 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" /> values, a Boolean for source column mapping, the value of the <see langword="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" /> values.</param>
|
|
<param name="size">The length of the parameter.</param>
|
|
<param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> 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" /> is resolved.</param>
|
|
<param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> is resolved.</param>
|
|
<param name="sourceColumn">The name of the source column (<see cref="P:System.Data.SqlClient.SqlParameter.SourceColumn" />) if this <see cref="T:System.Data.SqlClient.SqlParameter" /> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update" />.</param>
|
|
<param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values.</param>
|
|
<param name="sourceColumnNullMapping">
|
|
<see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter" />.</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="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" /> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType" />, 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" /> 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" />) if this <see cref="T:System.Data.SqlClient.SqlParameter" /> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update" />.</param>
|
|
<exception cref="T:System.ArgumentException">The value supplied in the <paramref name="dbType" /> 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" /> class that uses the parameter name and a value of the new <see cref="T:System.Data.SqlClient.SqlParameter" />.</summary>
|
|
<param name="parameterName">The name of the parameter to map.</param>
|
|
<param name="value">An <see cref="T:System.Object" /> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameter.CompareInfo">
|
|
<summary>Gets or sets the <see cref="T:System.Globalization.CompareInfo" /> object that defines how string comparisons should be performed for this parameter.</summary>
|
|
<returns>A <see cref="T:System.Globalization.CompareInfo" /> 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" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.SqlDbType" /> values. The default is <see langword="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="T:System.Data.ParameterDirection" /> values. The default is <see langword="Input" />.</returns>
|
|
<exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection" /> values.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameter.ForceColumnEncryption">
|
|
<summary>Enforces encryption of a parameter when using Always Encrypted. If SQL Server informs the driver that the parameter does not need to be encrypted, the query using the parameter will fail. This property provides additional protection against security attacks that involve a compromised SQL Server providing incorrect encryption metadata to the client, which may lead to data disclosure.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the parameter has a force column encryption; otherwise, <see langword="false" />.</returns>
|
|
</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" /> 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>
|
|
<see langword="true" /> if null values are accepted; otherwise, <see langword="false" />. The default is <see langword="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>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" /> property.</summary>
|
|
<returns>The offset to the <see cref="P:System.Data.SqlClient.SqlParameter.Value" />. 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" />.</summary>
|
|
<returns>The name of the <see cref="T:System.Data.SqlClient.SqlParameter" />. 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" /> property.</summary>
|
|
<returns>The maximum number of digits used to represent the <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> property. The default value is 0. This indicates that the data provider sets the precision for <see cref="P:System.Data.SqlClient.SqlParameter.Value" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameter.ResetDbType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.SqlClient.SqlParameter" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameter.ResetSqlDbType">
|
|
<summary>Resets the type associated with this <see cref="T:System.Data.SqlClient.SqlParameter" />.</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" /> is resolved.</summary>
|
|
<returns>The number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value" /> 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" /> and used for loading or returning the <see cref="P:System.Data.SqlClient.SqlParameter.Value" /></summary>
|
|
<returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet" />. 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" /> to correctly generate Update statements for nullable columns.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the source column is nullable; <see langword="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" /> to use when you load <see cref="P:System.Data.SqlClient.SqlParameter.Value" /></summary>
|
|
<returns>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default is <see langword="Current" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameter.SqlDbType">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlDbType" /> of the parameter.</summary>
|
|
<returns>One of the <see cref="T:System.Data.SqlDbType" /> values. The default is <see langword="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="T:System.Object" /> that is the value of the parameter, using SQL types. The default value is null.</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" />.</summary>
|
|
<returns>A new <see cref="T:System.Object" /> that is a copy of this instance.</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" />.</summary>
|
|
<returns>A string that contains the <see cref="P:System.Data.SqlClient.SqlParameter.ParameterName" />.</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.UdtTypeName">
|
|
<summary>Gets or sets a <see langword="string" /> that represents a user-defined type as a parameter.</summary>
|
|
<returns>A <see langword="string" /> that represents the fully qualified name of a user-defined type in the database.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameter.Value">
|
|
<summary>Gets or sets the value of the parameter.</summary>
|
|
<returns>An <see cref="T:System.Object" /> 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="T:System.Data.SqlClient.SqlParameterCollection">
|
|
<summary>Represents a collection of parameters associated with a <see cref="T:System.Data.SqlClient.SqlCommand" /> and their respective mappings to columns in a <see cref="T:System.Data.DataSet" />. 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" /> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter" /> to add to the collection.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlParameter" /> object.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.SqlClient.SqlParameter" /> specified in the <paramref name="value" /> parameter is already added to this or another <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</exception>
|
|
<exception cref="T:System.InvalidCastException">The parameter passed was not a <see cref="T:System.Data.SqlClient.SqlParameter" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> 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" /> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="value">An <see cref="T:System.Object" />.</param>
|
|
<returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter" /> 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" /> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> 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" /> values.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlParameter" /> 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" /> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />, given the specified parameter name, <see cref="T:System.Data.SqlDbType" /> and size.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="sqlDbType">The <see cref="T:System.Data.SqlDbType" /> of the <see cref="T:System.Data.SqlClient.SqlParameter" /> to add to the collection.</param>
|
|
<param name="size">The size as an <see cref="T:System.Int32" />.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32,System.String)">
|
|
<summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter" /> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> with the parameter name, the data type, and the column length.</summary>
|
|
<param name="parameterName">The name of the parameter.</param>
|
|
<param name="sqlDbType">One of the <see cref="T:System.Data.SqlDbType" /> values.</param>
|
|
<param name="size">The column length.</param>
|
|
<param name="sourceColumn">The name of the source column (<see cref="P:System.Data.SqlClient.SqlParameter.SourceColumn" />) if this <see cref="T:System.Data.SqlClient.SqlParameter" /> is used in a call to <see cref="Overload:System.Data.Common.DbDataAdapter.Update" />.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Object)">
|
|
<summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter" /> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.SqlClient.SqlParameter" /> to add to the collection.</param>
|
|
<param name="value">A <see cref="T:System.Object" />.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlClient.SqlParameter" /> object.
|
|
Use caution when you are using this overload of the <see langword="SqlParameterCollection.Add" /> method to specify integer parameter values. Because this overload takes a <paramref name="value" /> of type <see cref="T:System.Object" />, you must convert the integral value to an <see cref="T:System.Object" /> type when the value is zero, as the following C# example demonstrates.
|
|
parameters.Add("@pname", Convert.ToInt32(0));
|
|
If you do not perform this conversion, the compiler assumes that you are trying to call the <see langword="SqlParameterCollection.Add" /> (<see langword="string" />, <see langword="SqlDbType" />) overload.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.Data.SqlClient.SqlParameter" /> specified in the <paramref name="value" /> parameter is already added to this or another <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</exception>
|
|
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
|
|
</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" />.</summary>
|
|
<param name="values">The <see cref="T:System.Array" /> 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" /> values to the end of the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="values">The <see cref="T:System.Data.SqlClient.SqlParameter" /> 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" />.</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" /> instead of null, to indicate a null value.</param>
|
|
<returns>A <see cref="T:System.Data.SqlClient.SqlParameter" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.Clear">
|
|
<summary>Removes all the <see cref="T:System.Data.SqlClient.SqlParameter" /> objects from the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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" /> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> contains the value; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.Object)">
|
|
<summary>Determines whether the specified <see cref="T:System.Object" /> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> contains the value; otherwise, <see langword="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" />.</summary>
|
|
<param name="value">The <see cref="T:System.String" /> value.</param>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> contains the value; otherwise, <see langword="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" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.</summary>
|
|
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array" /> 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" /> to the specified <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> starting at the specified destination index.</summary>
|
|
<param name="array">The <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> that is the destination of the elements copied from the current <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</param>
|
|
<param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> 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" />. Read-only.</summary>
|
|
<returns>The number of elements in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> 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" />.</summary>
|
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.SqlClient.SqlParameter" /> that is a <see cref="T:System.Data.SqlClient.SqlParameter" /> within the collection. Returns -1 when the object does not exist in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.Object)">
|
|
<summary>Gets the location of the specified <see cref="T:System.Object" /> within the collection.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Object" /> that is a <see cref="T:System.Data.SqlClient.SqlParameter" /> within the collection. Returns -1 when the object does not exist in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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" /> with the specified name.</summary>
|
|
<param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.SqlClient.SqlParameter" /> to find.</param>
|
|
<returns>The zero-based location of the specified <see cref="T:System.Data.SqlClient.SqlParameter" /> with the specified case-sensitive name. Returns -1 when the object does not exist in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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" /> object into the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> 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" /> object to be inserted in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlClient.SqlParameterCollection.Insert(System.Int32,System.Object)">
|
|
<summary>Inserts an <see cref="T:System.Object" /> into the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> 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" /> to be inserted in the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameterCollection.IsFixedSize">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> has a fixed size.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> has a fixed size; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameterCollection.IsReadOnly">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> is read-only; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameterCollection.IsSynchronized">
|
|
<summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> is synchronized.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.Int32)">
|
|
<summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlParameter" /> at the specified index.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The specified index does not exist.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.String)">
|
|
<summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter" /> with the specified name.</summary>
|
|
<param name="parameterName">The name of the parameter to retrieve.</param>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlParameter" /> with the specified name.</returns>
|
|
<exception cref="T:System.IndexOutOfRangeException">The specified <paramref name="parameterName" /> is not valid.</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" /> from the collection.</summary>
|
|
<param name="value">A <see cref="T:System.Data.SqlClient.SqlParameter" /> object to remove from the collection.</param>
|
|
<exception cref="T:System.InvalidCastException">The parameter is not a <see cref="T:System.Data.SqlClient.SqlParameter" />.</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" /> 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" /> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> at the specified index.</summary>
|
|
<param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlParameter" /> 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" /> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection" /> at the specified parameter name.</summary>
|
|
<param name="parameterName">The name of the <see cref="T:System.Data.SqlClient.SqlParameter" /> 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" />.</summary>
|
|
<returns>An object that can be used to synchronize access to the <see cref="T:System.Data.SqlClient.SqlParameterCollection" />.</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" />.</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" /> object.</summary>
|
|
<param name="rowsCopied">An <see cref="T:System.Int64" /> 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>
|
|
<see langword="true" /> if the bulk copy operation should be aborted; otherwise <see langword="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>
|
|
<see langword="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" /> event of a <see cref="T:System.Data.SqlClient.SqlBulkCopy" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">A <see cref="T:System.Data.SqlClient.SqlRowsCopiedEventArgs" /> 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" /> 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" /> class.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlRowUpdatedEventArgs.Command">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> is called.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> 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" /> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs" /> 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" /> 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" /> class.</summary>
|
|
<param name="row">The <see cref="T:System.Data.DataRow" /> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="command">The <see cref="T:System.Data.IDbCommand" /> to execute during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
<param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed.</param>
|
|
<param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlRowUpdatingEventArgs.Command">
|
|
<summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlCommand" /> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</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" /> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter" />.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs" /> 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" /> object associated with the transaction, or <see langword="null" /> if the transaction is no longer valid.</summary>
|
|
<returns>The <see cref="T:System.Data.SqlClient.SqlConnection" /> object associated with the transaction.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlClient.SqlTransaction.IsolationLevel">
|
|
<summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction.</summary>
|
|
<returns>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default is <see langword="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" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.BigInt">
|
|
<summary>
|
|
<see cref="T:System.Int64" />. A 64-bit signed integer.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Binary">
|
|
<summary>
|
|
<see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A fixed-length stream of binary data ranging between 1 and 8,000 bytes.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Bit">
|
|
<summary>
|
|
<see cref="T:System.Boolean" />. An unsigned numeric value that can be 0, 1, or <see langword="null" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Char">
|
|
<summary>
|
|
<see cref="T:System.String" />. A fixed-length stream of non-Unicode characters ranging between 1 and 8,000 characters.</summary>
|
|
</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.DateTime">
|
|
<summary>
|
|
<see cref="T:System.DateTime" />. Date and time data ranging in value from January 1, 1753 to December 31, 9999 to an accuracy of 3.33 milliseconds.</summary>
|
|
</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>
|
|
</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Decimal">
|
|
<summary>
|
|
<see cref="T:System.Decimal" />. A fixed precision and scale numeric value between -10 38 -1 and 10 38 -1.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Float">
|
|
<summary>
|
|
<see cref="T:System.Double" />. A floating point number within the range of -1.79E +308 through 1.79E +308.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Image">
|
|
<summary>
|
|
<see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A variable-length stream of binary data ranging from 0 to 2 31 -1 (or 2,147,483,647) bytes.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Int">
|
|
<summary>
|
|
<see cref="T:System.Int32" />. A 32-bit signed integer.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Money">
|
|
<summary>
|
|
<see cref="T:System.Decimal" />. A currency value ranging from -2 63 (or -9,223,372,036,854,775,808) to 2 63 -1 (or +9,223,372,036,854,775,807) with an accuracy to a ten-thousandth of a currency unit.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.NChar">
|
|
<summary>
|
|
<see cref="T:System.String" />. A fixed-length stream of Unicode characters ranging between 1 and 4,000 characters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.NText">
|
|
<summary>
|
|
<see cref="T:System.String" />. A variable-length stream of Unicode data with a maximum length of 2 30 - 1 (or 1,073,741,823) characters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.NVarChar">
|
|
<summary>
|
|
<see cref="T:System.String" />. A variable-length stream of Unicode characters ranging between 1 and 4,000 characters. Implicit conversion fails if the string is greater than 4,000 characters. Explicitly set the object when working with strings longer than 4,000 characters. Use <see cref="F:System.Data.SqlDbType.NVarChar" /> when the database column is <see langword="nvarchar(max)" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Real">
|
|
<summary>
|
|
<see cref="T:System.Single" />. A floating point number within the range of -3.40E +38 through 3.40E +38.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.SmallDateTime">
|
|
<summary>
|
|
<see cref="T:System.DateTime" />. Date and time data ranging in value from January 1, 1900 to June 6, 2079 to an accuracy of one minute.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.SmallInt">
|
|
<summary>
|
|
<see cref="T:System.Int16" />. A 16-bit signed integer.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.SmallMoney">
|
|
<summary>
|
|
<see cref="T:System.Decimal" />. A currency value ranging from -214,748.3648 to +214,748.3647 with an accuracy to a ten-thousandth of a currency unit.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Structured">
|
|
<summary>A special data type for specifying structured data contained in table-valued parameters.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Text">
|
|
<summary>
|
|
<see cref="T:System.String" />. A variable-length stream of non-Unicode data with a maximum length of 2 31 -1 (or 2,147,483,647) characters.</summary>
|
|
</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 <see langword="time" /> value.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Timestamp">
|
|
<summary>
|
|
<see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. Automatically generated binary numbers, which are guaranteed to be unique within a database. <see langword="timestamp" /> is used typically as a mechanism for version-stamping table rows. The storage size is 8 bytes.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.TinyInt">
|
|
<summary>
|
|
<see cref="T:System.Byte" />. An 8-bit unsigned integer.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Udt">
|
|
<summary>A SQL Server user-defined type (UDT).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.UniqueIdentifier">
|
|
<summary>
|
|
<see cref="T:System.Guid" />. A globally unique identifier (or GUID).</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.VarBinary">
|
|
<summary>
|
|
<see cref="T:System.Array" /> of type <see cref="T:System.Byte" />. A variable-length stream of binary data ranging between 1 and 8,000 bytes. Implicit conversion fails if the byte array is greater than 8,000 bytes. Explicitly set the object when working with byte arrays larger than 8,000 bytes.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.VarChar">
|
|
<summary>
|
|
<see cref="T:System.String" />. A variable-length stream of non-Unicode characters ranging between 1 and 8,000 characters. Use <see cref="F:System.Data.SqlDbType.VarChar" /> when the database column is <see langword="varchar(max)" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlDbType.Variant">
|
|
<summary>
|
|
<see cref="T:System.Object" />. A special data type that can contain numeric, string, binary, or date data as well as the SQL Server values Empty and Null, which is assumed if no other type is declared.</summary>
|
|
</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)" /> method or <see cref="P:System.Data.SqlTypes.SqlXml.Value" /> property, or as an <see cref="T:System.Xml.XmlReader" /> by calling the <see cref="M:System.Data.SqlTypes.SqlXml.CreateReader" /> method.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.INullable">
|
|
<summary>All the <see cref="N:System.Data.SqlTypes" /> objects and structures implement the <see langword="INullable" /> interface.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.INullable.IsNull">
|
|
<summary>Indicates whether a structure is null. This property is read-only.</summary>
|
|
<returns>
|
|
<see cref="T:System.Data.SqlTypes.SqlBoolean" />
|
|
<see langword="true" /> if the value of this object is null. Otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlAlreadyFilledException">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlAlreadyFilledException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlAlreadyFilledException" /> class.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
<param name="e">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlBinary">
|
|
<summary>Represents a variable-length stream of binary data to be stored in or retrieved from a database.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.#ctor(System.Byte[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure, setting the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> 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" /> values to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBinary" /> object and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to be compared to this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A signed number that indicates the relative values of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure and the object.
|
|
Return value
|
|
|
|
Condition
|
|
|
|
Less than zero
|
|
|
|
The value of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is less than the object.
|
|
|
|
Zero
|
|
|
|
This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is the same as object.
|
|
|
|
Greater than zero
|
|
|
|
This <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> 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" /> structure.</param>
|
|
<returns>A signed number that indicates the relative values of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure and the object.
|
|
Return value
|
|
|
|
Condition
|
|
|
|
Less than zero
|
|
|
|
The value of this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is less than the object.
|
|
|
|
Zero
|
|
|
|
This <see cref="T:System.Data.SqlTypes.SqlBinary" /> object is the same as object.
|
|
|
|
Greater than zero
|
|
|
|
This <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> structures to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>The concatenated values of the <paramref name="x" /> and <paramref name="y" /> parameters.</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlBinary" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.GetHashCode">
|
|
<summary>Returns the hash code for this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> structures to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBinary.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure is null. This property is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see langword="null" />; otherwise, <see langword="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" /> property located at the position indicated by the integer parameter, <paramref name="index" />. If <paramref name="index" /> indicates a position beyond the end of the byte array, a <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> will be raised. This property is read-only.</summary>
|
|
<param name="index">The position of the byte to be retrieved.</param>
|
|
<returns>The byte located at the position indicated by the integer parameter.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />
|
|
-or-
|
|
The <paramref name="index" /> parameter indicates a position byond the length of the byte array as indicated by the <see cref="P:System.Data.SqlTypes.SqlBinary.Length" /> 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" /> property. This property is read-only.</summary>
|
|
<returns>The length of the binary data in the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Length" /> property is read when the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />.</exception>
|
|
</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" /> structures to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlBinary.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
</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" /> parameters to create a new <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>The concatenated values of the <paramref name="x" /> and <paramref name="y" /> 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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure to a <see cref="T:System.Byte" /> array.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Byte" /> 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" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to be converted.</param>
|
|
<returns>The <see cref="T:System.Data.SqlTypes.SqlGuid" /> 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" /> structures to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</summary>
|
|
<param name="x">The array of bytes to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
<returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> instance.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
|
|
<param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
|
|
<param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.ToSqlGuid">
|
|
<summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlBinary" /> to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBinary.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBinary" /> object to a string.</summary>
|
|
<returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBinary" />. If the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> is null the string will contain "null".</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBinary.Value">
|
|
<summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure. This property is read-only.</summary>
|
|
<returns>The value of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> property is read when the property contains <see cref="F:System.Data.SqlTypes.SqlBinary.Null" />.</exception>
|
|
</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" /> structure using the supplied Boolean value.</summary>
|
|
<param name="value">The value for the new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure; either <see langword="true" /> or <see langword="false" />.</param>
|
|
</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" /> 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" /> 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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> structure as a byte.</summary>
|
|
<returns>A byte representing the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> object to the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object and returns an indication of their relative values.</summary>
|
|
<param name="value">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /><see cref="T:System.Data.SqlTypes.SqlBoolean" /> object to compare, or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
|
|
<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" />.
|
|
|
|
Zero
|
|
|
|
This instance is equal to <paramref name="value" />.
|
|
|
|
A positive integer
|
|
|
|
This instance is greater than <paramref name="value" />.
|
|
|
|
-or-
|
|
|
|
<paramref name="value" /> is a null reference (<see langword="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" /> 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 (<see langword="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" />.
|
|
|
|
Zero
|
|
|
|
This instance is equal to <paramref name="value" />.
|
|
|
|
A positive integer
|
|
|
|
This instance is greater than <paramref name="value" />.
|
|
|
|
-or-
|
|
|
|
<paramref name="value" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" />.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> and the two are equal; otherwise, <see langword="false" />.</returns>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBoolean.IsFalse">
|
|
<summary>Indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see langword="Value" /> is <see langword="False" />; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBoolean.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure is null; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBoolean.IsTrue">
|
|
<summary>Gets a value that indicates whether the current <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see langword="Value" /> is <see langword="true" />; otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
|
|
</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" /> for equality.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlBoolean.Null">
|
|
<summary>Represents <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.OnesComplement(System.Data.SqlTypes.SqlBoolean)">
|
|
<summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> for equality.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>The result of the logical XOR operation.</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" /> to a Boolean.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to convert.</param>
|
|
<returns>A Boolean set to the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> to be converted to a <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether it is false.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be tested.</param>
|
|
<returns>
|
|
<see langword="true" /> if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see langword="false" />; otherwise, <see langword="false" />.</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" /> structures to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> object.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance; otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance; otherwise, <see langword="false" />.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance; otherwise, <see langword="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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>
|
|
<see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance; otherwise, <see langword="false" />.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> on which the NOT operation will be performed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> with the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /><see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if argument was true, <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" /> if argument was null, and <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> otherwise.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.op_OnesComplement(System.Data.SqlTypes.SqlBoolean)">
|
|
<summary>Performs a one's complement operation on the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>The one's complement of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</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" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to determine whether it is true.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be tested.</param>
|
|
<returns>
|
|
<see langword="true" /> if the supplied parameter is <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see langword="true" />; otherwise, <see langword="false" />.</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> representation of a logical value to its <see cref="T:System.Data.SqlTypes.SqlBoolean" /> equivalent.</summary>
|
|
<param name="s">The <see cref="T:System.String" /> to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure that contains the parsed value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlByte">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see langword="SqlInt16" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then the new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure's value is 1. Otherwise, the new <see langword="SqlInt16" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see langword="SqlInt32" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure's value is 1. Otherwise, the new <see langword="SqlInt32" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see langword="SqlInt64" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure's value is 1. Otherwise, the new <see langword="SqlInt64" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" />, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is 1. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="false" />, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is 0. If <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value is neither 1 nor 0, the new <see cref="T:System.Data.SqlTypes.SqlMoney" /> value is <see cref="F:System.Data.SqlTypes.SqlMoney.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose value is 1 or 0.
|
|
If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals true, the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's value is 1; otherwise the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is 1 or 0. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value equals <see langword="true" /> then <see cref="T:System.Data.SqlTypes.SqlString" /> structure's value is 1. Otherwise, the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure's value is 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBoolean.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to a string.</summary>
|
|
<returns>A string that contains the value of the <see cref="T:System.Data.SqlTypes.SqlBoolean" />. If the value is null, the string will contain "null".</returns>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBoolean.Value">
|
|
<summary>Gets the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value. This property is read-only.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />; otherwise, <see langword="false" />.</returns>
|
|
<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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</summary>
|
|
</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" /> 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" /> property of the new <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> object and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlByte" /> 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 (<see langword="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" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the results of the division.</returns>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlByte" /> will be null.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.Equals(System.Object)">
|
|
<summary>Compares the supplied <see cref="T:System.Object" /> parameter to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> object.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" />.</summary>
|
|
</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" />.</summary>
|
|
</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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> 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" /> values and returns the remainder.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
|
|
<returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the product of the multiplication.</returns>
|
|
</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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlByte.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.OnesComplement(System.Data.SqlTypes.SqlByte)">
|
|
<summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the sum of the two operands.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the results of the division.</returns>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>The results of the bitwise XOR operation.</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter to be converted to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the supplied <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> structure to a byte.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted to a byte.</param>
|
|
<returns>A byte whose value equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see langword="SqlInt64" /> parameter.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see langword="SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<param name="x">An instance of the <see langword="SqlString" /> class.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the numeric value represented by the <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see langword="SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">A byte value to be converted to <see cref="T:System.Data.SqlTypes.SqlByte" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property is equal to the supplied parameter.</returns>
|
|
</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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the product of the multiplication.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.op_OnesComplement(System.Data.SqlTypes.SqlByte)">
|
|
<summary>The ones complement operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property contains the ones complement of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.Parse(System.String)">
|
|
<summary>Converts the <see cref="T:System.String" /> representation of a number to its 8-bit unsigned integer equivalent.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure that contains the 8-bit number represented by the <see langword="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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>The results of subtracting the second <see cref="T:System.Data.SqlTypes.SqlByte" /> operand from the first.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A <see langword="SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A <see langword="SqlDouble" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A <see langword="SqlInt16" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A <see langword="SqlInt32" /> structure with the same value as this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A <see langword="SqlInt64" /> structure who <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A <see langword="SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A <see langword="SqlSingle" /> structure that has the same <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> as this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToSqlString">
|
|
<summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlByte" /> to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see langword="SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see cref="P:System.Data.SqlTypes.SqlByte.Value" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlByte.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to a <see cref="T:System.String" />.</summary>
|
|
<returns>A string that contains the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" />. If the <see langword="Value" /> is null, the <see langword="String" /> will be a null string.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlByte.Value">
|
|
<summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure. This property is read-only</summary>
|
|
<returns>The value of the <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlByte" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</summary>
|
|
</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" /> or a <see cref="P:System.Data.SqlTypes.SqlBytes.Stream" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlBytes" /> 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" /> 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" /> class based on the specified <see cref="T:System.Data.SqlTypes.SqlBinary" /> value.</summary>
|
|
<param name="value">A <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> class based on the specified <see cref="T:System.IO.Stream" /> value.</summary>
|
|
<param name="s">A <see cref="T:System.IO.Stream" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBytes.Buffer">
|
|
<summary>Returns a reference to the internal buffer.</summary>
|
|
<returns>A reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlBytes" /> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> that indicates the XSD of the specified <see langword="XmlSchemaSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBytes.IsNull">
|
|
<summary>Gets a Boolean value that indicates whether this <see cref="T:System.Data.SqlTypes.SqlBytes" /> is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlBytes" /> is null, <see langword="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" /> instance at the specified index.</summary>
|
|
<param name="offset">A <see cref="T:System.Int64" /> value.</param>
|
|
<returns>A <see cref="T:System.Byte" /> 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" /> instance.</summary>
|
|
<returns>A <see cref="T:System.Int64" /> value representing the length of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.
|
|
Returns -1 if no buffer is available to the instance or if the value is null.
|
|
Returns a <see cref="P:System.IO.Stream.Length" /> 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" />.</summary>
|
|
<returns>A long representing the maximum length of the value of the internal buffer. Returns -1 for a stream-wrapped <see cref="T:System.Data.SqlTypes.SqlBytes" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBytes.Null">
|
|
<summary>Gets a null instance of this <see cref="T:System.Data.SqlTypes.SqlBytes" />.</summary>
|
|
<returns>An instance whose <see cref="P:System.Data.SqlTypes.SqlBytes.IsNull" /> property returns <see langword="true" />.</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" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure.</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" /> structure to a <see cref="T:System.Data.SqlTypes.SqlBinary" /> structure.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlBytes" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" /> instance to the passed-in buffer and returns the number of copied bytes.</summary>
|
|
<param name="offset">An <see cref="T:System.Int64" /> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</param>
|
|
<param name="buffer">The byte array buffer to copy into.</param>
|
|
<param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
|
|
<param name="count">An <see cref="T:System.Int32" /> integer representing the number of bytes to copy.</param>
|
|
<returns>An <see cref="T:System.Int64" /> 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" /> instance.</summary>
|
|
<param name="value">The <see cref="T:System.Int64" /> 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" /> instance to null.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBytes.Storage">
|
|
<summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlBytes.Stream">
|
|
<summary>Gets or sets the data of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> as a stream.</summary>
|
|
<returns>The stream that contains the SqlBytes data.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
|
|
<param name="info">The object to be populated with serialization information.</param>
|
|
<param name="context">The destination context of the serialization.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="r">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlBytes.ToSqlBinary">
|
|
<summary>Constructs and returns a <see cref="T:System.Data.SqlTypes.SqlBinary" /> from this <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBinary" /> 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" />.</summary>
|
|
<returns>The value of this <see cref="T:System.Data.SqlTypes.SqlBytes" /> 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" /> instance.</summary>
|
|
<param name="offset">An <see cref="T:System.Int64" /> long value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlBytes" /> instance.</param>
|
|
<param name="buffer">The byte array buffer to copy into.</param>
|
|
<param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
|
|
<param name="count">An <see cref="T:System.Int32" /> 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" /> is a mutable reference type that wraps a <see cref="T:System.Char" /> array or a <see cref="T:System.Data.SqlTypes.SqlString" /> instance.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlChars" /> 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" /> class based on the specified character array.</summary>
|
|
<param name="buffer">A <see cref="T:System.Char" /> 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" /> class based on the specified <see cref="T:System.Data.SqlTypes.SqlString" /> value.</summary>
|
|
<param name="value">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlChars.Buffer">
|
|
<summary>Returns a reference to the internal buffer.</summary>
|
|
<returns>A reference to the internal buffer. For <see cref="T:System.Data.SqlTypes.SqlChars" /> instances created on top of unmanaged pointers, it returns a managed copy of the internal buffer.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="T:System.Data.SqlTypes.SqlChars" /> is null. Otherwise, <see langword="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" /> instance at the specified index.</summary>
|
|
<param name="offset">An <see cref="T:System.Int64" /> value.</param>
|
|
<returns>A <see cref="T:System.Char" /> 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" /> instance.</summary>
|
|
<returns>A <see cref="T:System.Int64" /> value that indicates the length in characters of the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.
|
|
Returns -1 if no buffer is available to the instance, or if the value is null.
|
|
Returns a <see cref="P:System.IO.Stream.Length" /> for a stream-wrapped instance.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlChars.MaxLength">
|
|
<summary>Gets the maximum length in two-byte characters of the value the internal buffer can hold.</summary>
|
|
<returns>An <see cref="T:System.Int64" /> value representing the maximum length in two-byte characters of the value of the internal buffer.
|
|
Returns -1 for a stream-wrapped <see cref="T:System.Data.SqlTypes.SqlChars" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlChars.Null">
|
|
<summary>Returns a null instance of this <see cref="T:System.Data.SqlTypes.SqlChars" />.</summary>
|
|
<returns>An instance whose <see cref="P:System.Data.SqlTypes.SqlChars.IsNull" /> property returns <see langword="true" />. For more information, see Handling Null Values.</returns>
|
|
</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" /> structure to a <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlChars" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</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" /> structure to a <see cref="T:System.Data.SqlTypes.SqlChars" /> structure.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlString" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlChars" /> 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" /> instance to the passed-in buffer and returns the number of copied characters.</summary>
|
|
<param name="offset">An <see cref="T:System.Int64" /><see langword="long" /> value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</param>
|
|
<param name="buffer">The character array buffer to copy into.</param>
|
|
<param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
|
|
<param name="count">An <see cref="T:System.Int32" /> integer value representing the number of characters to copy.</param>
|
|
<returns>An <see cref="T:System.Int64" /><see langword="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" /> instance.</summary>
|
|
<param name="value">The <see cref="T:System.Int64" /><see langword="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" /> instance to null.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlChars.Storage">
|
|
<summary>Returns information about the storage state of this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Gets serialization information with all the data needed to reinstantiate this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</summary>
|
|
<param name="info">The object to be populated with serialization information.</param>
|
|
<param name="context">The destination context of the serialization.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="r">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlChars.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlChars" /> instance to its equivalent <see cref="T:System.Data.SqlTypes.SqlString" /> representation.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> 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" />.</summary>
|
|
<returns>The value of this <see cref="T:System.Data.SqlTypes.SqlChars" /> 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" /> instance.</summary>
|
|
<param name="offset">A <see langword="long" /> value offset into the value that is contained in the <see cref="T:System.Data.SqlTypes.SqlChars" /> instance.</param>
|
|
<param name="buffer">The character array buffer to copy into.</param>
|
|
<param name="offsetInBuffer">An <see cref="T:System.Int32" /> integer offset into the buffer to start copying into.</param>
|
|
<param name="count">An <see cref="T:System.Int32" /> 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" /> 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>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.BinarySort2">
|
|
<summary>Performs a binary sort.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreCase">
|
|
<summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore case.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreKanaType">
|
|
<summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore the Kana type. Kana type refers to Japanese hiragana and katakana characters that represent phonetic sounds in the Japanese language. Hiragana is used for native Japanese expressions and words, while katakana is used for words borrowed from other languages, such as "computer" or "Internet". A phonetic sound can be expressed in both hiragana and katakana. If this value is selected, the hiragana character for one sound is considered equal to the katakana character for the same sound.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreNonSpace">
|
|
<summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore nonspace combining characters, such as diacritics. The Unicode Standard defines combining characters as characters that are combined with base characters to produce a new character. Non-space combining characters do not use character space by themselves when rendered. For more information about non-space combining characters, see the Unicode Standard at https://www.unicode.org.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.IgnoreWidth">
|
|
<summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons must ignore the character width. For example, Japanese katakana characters can be written as full-width or half-width and, if this value is selected, the katakana characters written as full-width are considered equal to the same characters written in half-width.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlCompareOptions.None">
|
|
<summary>Specifies the default option settings for <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons.</summary>
|
|
</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" /> structure has a different underlying data structure from its corresponding .NET Framework type, <see cref="T:System.DateTime" />, which can represent any time between 12:00:00 AM 1/1/0001 and 11:59:59 PM 12/31/9999, to the accuracy of 100 nanoseconds. <see cref="T:System.Data.SqlTypes.SqlDateTime" /> actually stores the relative difference to 00:00:00 AM 1/1/1900. Therefore, a conversion from "00:00:00 AM 1/1/1900" to an integer will return 0.</summary>
|
|
</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" /> structure using the specified <see cref="T:System.DateTime" /> value.</summary>
|
|
<param name="value">A <see langword="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" /> 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" /> 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" /> structure.</param>
|
|
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="day">An integer value representing the day number of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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" /> 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" /> structure.</param>
|
|
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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" /> 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" /> structure.</param>
|
|
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="day">An integer value representing the day of the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="millisecond">An double value representing the millisecond of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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" /> structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and microsecond of the new structure.</summary>
|
|
<param name="year">An integer value representing the year of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="month">An integer value representing the month of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="day">An integer value representing the day of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="hour">An integer value representing the hour of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="minute">An integer value representing the minute of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="second">An integer value representing the second of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="bilisecond">An integer value representing the microsecond (thousandths of a millisecond) of the new <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
</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" /> to the specified <see langword="TimeSpan" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</param>
|
|
<param name="t">A <see langword="Timespan" /> value.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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" /> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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="T:System.Data.SqlTypes.SqlDateTime" />.
|
|
|
|
Zero
|
|
|
|
This instance is the same as <see cref="T:System.Data.SqlTypes.SqlDateTime" />.
|
|
|
|
Greater than zero
|
|
|
|
This instance is greater than <see cref="T:System.Data.SqlTypes.SqlDateTime" />
|
|
|
|
-or-
|
|
|
|
<see cref="T:System.Data.SqlTypes.SqlDateTime" /> is a null reference (<see langword="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" /> structure to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> structure.</summary>
|
|
<returns>The number of ticks representing the date that is contained in the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</exception>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="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" /> property of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.GetHashCode">
|
|
<summary>Gets the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDateTime.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</summary>
|
|
</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" /> structure.</summary>
|
|
</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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlDateTime.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
|
|
</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" /> parameter, <paramref name="t" />, to the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="t">A <see cref="T:System.TimeSpan" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDateTime" />. If either argument is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null" />, the new <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is <see cref="F:System.Data.SqlTypes.SqlDateTime.Null" />.</returns>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="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" /> structure to a <see cref="T:System.DateTime" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.DateTime" /> object whose <see cref="P:System.DateTime.Date" /> and <see cref="P:System.DateTime.TimeOfDay" /> properties contain the same date and time values as the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
</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" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is equal to the date and time represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see langword="Value" /> of the newly created <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure will be null.</returns>
|
|
</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.op_Implicit(System.DateTime)~System.Data.SqlTypes.SqlDateTime">
|
|
<summary>Converts a <see cref="T:System.DateTime" /> structure to a <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
|
|
<param name="value">A <see langword="DateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> is equal to the combined <see cref="P:System.DateTime.Date" /> and <see cref="P:System.DateTime.TimeOfDay" /> properties of the supplied <see cref="T:System.DateTime" /> structure.</returns>
|
|
</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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDateTime" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure, <paramref name="t" />, from the supplied <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</param>
|
|
<param name="t">A <see cref="T:System.TimeSpan" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> 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" /> representation of a date and time to its <see cref="T:System.Data.SqlTypes.SqlDateTime" /> equivalent.</summary>
|
|
<param name="s">The <see langword="string" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure equal to the date and time represented by the specified <see langword="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>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerMinute">
|
|
<summary>A constant whose value is the number of ticks equivalent to one minute.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlDateTime.SQLTicksPerSecond">
|
|
<summary>A constant whose value is the number of ticks equivalent to one second.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.Subtract(System.Data.SqlTypes.SqlDateTime,System.TimeSpan)">
|
|
<summary>Subtracts the specified <see langword="Timespan" /> from this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> instance.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</param>
|
|
<param name="t">A <see langword="Timespan" /> value.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime" /> value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</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" /> structure.</summary>
|
|
<returns>The number of ticks representing the time of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see langword="SqlString" /> structure whose value is a string representing the date and time that is contained in this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDateTime.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to a <see cref="T:System.String" />.</summary>
|
|
<returns>A <see langword="String" /> representing the <see cref="P:System.Data.SqlTypes.SqlDateTime.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDateTime.Value">
|
|
<summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure. This property is read-only.</summary>
|
|
<returns>The value of this <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</exception>
|
|
</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.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" /> 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" /> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure represents a positive or negative number.</param>
|
|
<param name="data1">An 32-bit unsigned integer which will be combined with data2, data3, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
|
|
<param name="data2">An 32-bit unsigned integer which will be combined with data1, data3, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
|
|
<param name="data3">An 32-bit unsigned integer which will be combined with data1, data2, and data4 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
|
|
<param name="data4">An 32-bit unsigned integer which will be combined with data1, data2, and data3 to make up the 128-bit unsigned integer that represents the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structures value.</param>
|
|
</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" /> 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" /> property of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="bScale">The number of decimal places to which the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property will be resolved for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="fPositive">A Boolean value that indicates whether the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure represents a positive or negative number.</param>
|
|
<param name="bits">The 128-bit unsigned integer that provides the value of the new <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</param>
|
|
</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" /> structure using the supplied <see cref="T:System.Decimal" /> value.</summary>
|
|
<param name="value">The <see cref="T:System.Decimal" /> value to be stored as a <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> 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" /> 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" /> 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" /> 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" /> 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" /> structure.</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" /> parameter.</summary>
|
|
<param name="n">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the unsigned number representing the absolute value of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> operators.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the sum.</returns>
|
|
</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" /> 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" /> structure to be adjusted.</param>
|
|
<param name="digits">The number of digits in the adjusted structure.</param>
|
|
<param name="fRound">If this parameter is <see langword="true" />, the new Value will be rounded, if <see langword="false" />, the value will be truncated.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the adjusted number.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDecimal.BinData">
|
|
<summary>Gets the binary representation of the value of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure as an array of bytes.</summary>
|
|
<returns>An array of bytes that contains the binary representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.Ceiling(System.Data.SqlTypes.SqlDecimal)">
|
|
<summary>Returns the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure for which the ceiling value is to be calculated.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> representing the smallest whole number greater than or equal to the specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.CompareTo(System.Data.SqlTypes.SqlDecimal)">
|
|
<summary>Compares this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDecimal" /> object and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> operand to the indicated precision and scale.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value is to be adjusted.</param>
|
|
<param name="precision">The precision for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="scale">The scale for the new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value has been adjusted to the precision and scale indicated in the parameters.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDecimal.Data">
|
|
<summary>Gets the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure as an array of integers.</summary>
|
|
<returns>An array of integers that contains the binary representation of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the results of the division.</returns>
|
|
</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" /> operands to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, the value of the <see langword="SqlDecimal" /> will be null.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.Equals(System.Object)">
|
|
<summary>Compares the supplied <see cref="T:System.Object" /> parameter to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> instance.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.Floor(System.Data.SqlTypes.SqlDecimal)">
|
|
<summary>Rounds a specified <see cref="T:System.Data.SqlTypes.SqlDecimal" /> number to the next lower whole number.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure for which the floor value is to be calculated.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure that contains the whole number part of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> structures to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDecimal.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is null. Otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDecimal.IsPositive">
|
|
<summary>Indicates whether the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure is greater than zero.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is assigned to null. Otherwise, <see langword="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" /> structures to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> property.</summary>
|
|
</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" /> property.</summary>
|
|
</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" /> structure.</summary>
|
|
</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" /> structure.</summary>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the product of the multiplication.</returns>
|
|
</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlDecimal.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> class.</summary>
|
|
</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" /> operators.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the sum.</returns>
|
|
</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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the results of the division.</returns>
|
|
</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" /> operands to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Decimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
|
|
<returns>A new <see langword="Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.op_Explicit(System.Double)~System.Data.SqlTypes.SqlDecimal">
|
|
<summary>Converts the <see cref="T:System.Double" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Double" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose value equals the value of the <see cref="T:System.Double" /> parameter.</returns>
|
|
</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" /> structures to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" /></summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> structure to SqlDecimal.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> operand to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlDecimal">
|
|
<summary>Converts the <see cref="T:System.Decimal" /> value to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see langword="Decimal" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property equals the value of the <see cref="T:System.Int64" /> parameter.</returns>
|
|
</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property contains the product of the multiplication.</returns>
|
|
</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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> parameter.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be negated.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
|
|
</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" /> structure to the specified exponential power.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be raised to a power.</param>
|
|
<param name="exp">A double value that indicates the power to which the number should be raised.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> property.</summary>
|
|
<returns>The maximum number of digits used to represent the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> structure's value with the specified precision.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be rounded.</param>
|
|
<param name="position">The number of significant fractional digits (precision) in the return value.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> is resolved.</summary>
|
|
<returns>The number of decimal places to which the <see langword="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" /> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose sign is to be evaluated.</param>
|
|
<returns>A number that indicates the sign of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose Value property contains the results of the subtraction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</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" /> property of this instance.</summary>
|
|
<returns>The decimal representation of the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure. If the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's Value is <see langword="true" />, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure with the same value as this instance of <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is a string representing the value contained in this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDecimal.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to <see cref="T:System.String" />.</summary>
|
|
<returns>A new <see cref="T:System.String" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure's <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property.</returns>
|
|
</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" /> structure's value to the that you want position.</summary>
|
|
<param name="n">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> 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" /> 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" /> 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" /> structure using the supplied double parameter to set the new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> property.</summary>
|
|
<param name="value">A double whose value will be used for the new <see cref="T:System.Data.SqlTypes.SqlDouble" />.</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlDouble" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Object" /> 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 (<see langword="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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure that contains the results of the division operation.</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" /> to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />.</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="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" /> structre.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> instance is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is null. Otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</summary>
|
|
</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" />.</summary>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> to determine whether they are notequal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlDouble.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>The sum of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is either 0 or 1, depending on the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> is <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> structure to double.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A double equivalent to the specified <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure'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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the value of the number represented by the <see cref="T:System.Data.SqlTypes.SqlString" />. If the <see cref="T:System.Data.SqlTypes.SqlString" /> is <see cref="F:System.Data.SqlTypes.SqlString.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlByte" /> is <see cref="F:System.Data.SqlTypes.SqlByte.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> is <see cref="F:System.Data.SqlTypes.SqlDecimal.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt16" /> is <see cref="F:System.Data.SqlTypes.SqlInt16.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt32" /> is <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlInt64" /> is <see cref="F:System.Data.SqlTypes.SqlInt64.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlMoney" /> is <see cref="F:System.Data.SqlTypes.SqlMoney.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter. If the <see cref="T:System.Data.SqlTypes.SqlSingle" /> is <see cref="F:System.Data.SqlTypes.SqlSingle.Null" />, the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure will be <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">The double value to convert.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> with the same value as the specified double parameter.</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" /> to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlDouble" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>The product of the two <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> representation of a number to its double-precision floating point number equivalent.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlDouble" /> that contains the value represented by the <see langword="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" /> operand from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>The results of the subtraction operation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An XML schema consumed by .NET Framework.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>A <see langword="SqlBoolean" /> structure whose <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> is non-zero, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> is zero and <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" /> if the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure is <see cref="F:System.Data.SqlTypes.SqlDouble.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlByte">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see langword="SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see langword="SqlDecimal" /> structure whose converted value equals the rounded value of this <see langword="SqlDouble" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see langword="Value" /> equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure's value.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see langword="SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> is equal to the value of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see langword="SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see langword="SqlString" /> representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlDouble.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to a string.</summary>
|
|
<returns>A string representing the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlDouble" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlDouble.Value">
|
|
<summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure. This property is read-only.</summary>
|
|
<returns>The value of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlFileStream">
|
|
<summary>Exposes SQL Server data that is stored with the FILESTREAM column attribute as a sequence of bytes.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.#ctor(System.String,System.Byte[],System.IO.FileAccess)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlFileStream" /> class.</summary>
|
|
<param name="path">The logical path to the file. The path can be retrieved by using the Transact-SQL Pathname function on the underlying FILESTREAM column in the table.</param>
|
|
<param name="transactionContext">The transaction context for the <see langword="SqlFileStream" /> object. Applications should return the byte array returned by calling the GET_FILESTREAM_TRANSACTION_CONTEXT method.</param>
|
|
<param name="access">The access mode to use when opening the file. Supported <see cref="T:System.IO.FileAccess" /> enumeration values are <see cref="F:System.IO.FileAccess.Read" />, <see cref="F:System.IO.FileAccess.Write" />, and <see cref="F:System.IO.FileAccess.ReadWrite" />.
|
|
When using <see langword="FileAccess.Read" />, the <see langword="SqlFileStream" /> object can be used to read all of the existing data.
|
|
When using <see langword="FileAccess.Write" />, <see langword="SqlFileStream" /> points to a zero byte file. Existing data will be overwritten when the object is closed and the transaction is committed.
|
|
When using <see langword="FileAccess.ReadWrite" />, the <see langword="SqlFileStream" /> points to a file which has all the existing data in it. The handle is positioned at the beginning of the file. You can use one of the <see langword="System.IO" /><see langword="Seek" /> methods to move the handle position within the file to write or append new data.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="path" /> is a null reference, or <paramref name="transactionContext" /> is null.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
<paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters.
|
|
<paramref name="path" /> begins with "\\.\", for example "\\.\PHYSICALDRIVE0 ".
|
|
The handle returned by the call to NTCreateFile is not of type FILE_TYPE_DISK.
|
|
<paramref name="options" /> contains an unsupported value.</exception>
|
|
<exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
|
|
<exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
|
|
<exception cref="T:System.IO.DirectoryNotFoundException">The specified <paramref name="path" /> is invalid, such as being on an unmapped drive.</exception>
|
|
<exception cref="T:System.UnauthorizedAccessException">The access requested is not permitted by the operating system for the specified path. This occurs when Write or ReadWrite access is specified, and the file or directory is set for read-only access.</exception>
|
|
<exception cref="T:System.InvalidOperationException">NtCreateFile fails with error code set to ERROR_SHARING_VIOLATION.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.#ctor(System.String,System.Byte[],System.IO.FileAccess,System.IO.FileOptions,System.Int64)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlFileStream" /> class.</summary>
|
|
<param name="path">The logical path to the file. The path can be retrieved by using the Transact-SQL Pathname function on the underlying FILESTREAM column in the table.</param>
|
|
<param name="transactionContext">The transaction context for the <see langword="SqlFileStream" /> object. When set to null, an implicit transaction will be used for the <see langword="SqlFileStream" /> object. Applications should return the byte array returned by calling the GET_FILESTREAM_TRANSACTION_CONTEXT method.</param>
|
|
<param name="access">The access mode to use when opening the file. Supported <see cref="T:System.IO.FileAccess" /> enumeration values are <see cref="F:System.IO.FileAccess.Read" />, <see cref="F:System.IO.FileAccess.Write" />, and <see cref="F:System.IO.FileAccess.ReadWrite" />.
|
|
When using <see langword="FileAccess.Read" />, the <see langword="SqlFileStream" /> object can be used to read all of the existing data.
|
|
When using <see langword="FileAccess.Write" />, <see langword="SqlFileStream" /> points to a zero byte file. Existing data will be overwritten when the object is closed and the transaction is committed.
|
|
When using <see langword="FileAccess.ReadWrite" />, the <see langword="SqlFileStream" /> points to a file which has all the existing data in it. The handle is positioned at the beginning of the file. You can use one of the <see langword="System.IO" /><see langword="Seek" /> methods to move the handle position within the file to write or append new data.</param>
|
|
<param name="options">Specifies the option to use while opening the file. Supported <see cref="T:System.IO.FileOptions" /> values are <see cref="F:System.IO.FileOptions.Asynchronous" />, <see cref="F:System.IO.FileOptions.WriteThrough" />, <see cref="F:System.IO.FileOptions.SequentialScan" />, and <see cref="F:System.IO.FileOptions.RandomAccess" />.</param>
|
|
<param name="allocationSize">The allocation size to use while creating a file. If set to 0, the default value is used.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
<paramref name="path" /> is a null reference, or <paramref name="transactionContext" /> is null.</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
<paramref name="path" /> is an empty string (""), contains only white space, or contains one or more invalid characters.
|
|
<paramref name="path" /> begins with "\\.\", for example "\\.\PHYSICALDRIVE0 ".
|
|
The handle returned by call to NTCreateFile is not of type FILE_TYPE_DISK.
|
|
<paramref name="options" /> contains an unsupported value.</exception>
|
|
<exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
|
|
<exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
|
|
<exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
|
|
<exception cref="T:System.IO.DirectoryNotFoundException">The specified <paramref name="path" /> is invalid, such as being on an unmapped drive.</exception>
|
|
<exception cref="T:System.UnauthorizedAccessException">The access requested is not permitted by the operating system for the specified path. This occurs when Write or ReadWrite access is specified, and the file or directory is set for read-only access.</exception>
|
|
<exception cref="T:System.InvalidOperationException">NtCreateFile fails with error code set to ERROR_SHARING_VIOLATION.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
|
|
<summary>Begins an asynchronous read operation.</summary>
|
|
<param name="buffer">The buffer to read the data into.</param>
|
|
<param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing data read from the stream.</param>
|
|
<param name="count">The maximum number of bytes to read.</param>
|
|
<param name="callback">An optional asynchronous callback, to be called when the read is complete.</param>
|
|
<param name="state">A user-provided object that distinguishes this particular asynchronous read request from other requests</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that represents the asynchronous read, which could still be pending.</returns>
|
|
<exception cref="T:System.NotSupportedException">Reading data is not supported on the stream.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
|
|
<summary>Begins an asynchronous write operation.</summary>
|
|
<param name="buffer">The buffer to write data from.</param>
|
|
<param name="offset">The byte offset in <paramref name="buffer" /> from which to begin writing.</param>
|
|
<param name="count">The maximum number of bytes to write.</param>
|
|
<param name="callback">An optional asynchronous callback, to be called when the write is complete.</param>
|
|
<param name="state">A user-provided object that distinguishes this particular asynchronous write request from other requests.</param>
|
|
<returns>An <see cref="T:System.IAsyncResult" /> that represents the asynchronous write, which could still be pending.</returns>
|
|
<exception cref="T:System.NotSupportedException">Writing data is not supported on the stream.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.CanRead">
|
|
<summary>Gets a value indicating whether the current stream supports reading.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the current stream supports reading; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.CanSeek">
|
|
<summary>Gets a value indicating whether the current stream supports seeking.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the current stream supports seeking; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.CanTimeout">
|
|
<summary>Gets a value indicating whether the current stream can time out.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the current stream can time out; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.CanWrite">
|
|
<summary>Gets a value indicating whether the current stream supports writing.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the current stream supports writing; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.EndRead(System.IAsyncResult)">
|
|
<summary>Waits for the pending asynchronous read to complete.</summary>
|
|
<param name="asyncResult">The reference to the pending asynchronous request to finish.</param>
|
|
<returns>The number of bytes read from the stream, between zero (0) and the number of bytes you requested. Streams return zero (0) only at the end of the stream, otherwise, they should block until at least one byte is available.</returns>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.IAsyncResult" /> object did not come from the corresponding <see langword="BeginRead" /> method.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.EndWrite(System.IAsyncResult)">
|
|
<summary>Ends an asynchronous write operation.</summary>
|
|
<param name="asyncResult">A reference to the outstanding asynchronous I/O request.</param>
|
|
<exception cref="T:System.ArgumentException">The <see cref="T:System.IAsyncResult" /> object did not come from the corresponding <see langword="BeginWrite" /> method.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.Finalize">
|
|
<summary>Ensures that resources are freed and other cleanup operations are performed when the garbage collector reclaims the <see cref="T:System.Data.SqlTypes.SqlFileStream" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.Flush">
|
|
<summary>clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.Length">
|
|
<summary>Gets a value indicating the length of the current stream in bytes.</summary>
|
|
<returns>An <see cref="T:System.Int64" /> indicating the length of the current stream in bytes.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.Name">
|
|
<summary>Gets the logical path of the <see cref="T:System.Data.SqlTypes.SqlFileStream" /> passed to the constructor.</summary>
|
|
<returns>A string value indicating the name of the <see cref="T:System.Data.SqlTypes.SqlFileStream" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.Position">
|
|
<summary>Gets or sets the position within the current stream.</summary>
|
|
<returns>The current position within the <see cref="T:System.Data.SqlTypes.SqlFileStream" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.Read(System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
|
|
<param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source.</param>
|
|
<param name="offset">The zero-based byte offset in buffer at which to begin storing the data read from the current stream.</param>
|
|
<param name="count">The maximum number of bytes to be read from the current stream.</param>
|
|
<returns>The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
|
|
<exception cref="T:System.NotSupportedException">The object does not support reading of data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.ReadByte">
|
|
<summary>Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.</summary>
|
|
<returns>The unsigned byte cast to an <see cref="T:System.Int32" />, or -1 if at the end of the stream.</returns>
|
|
<exception cref="T:System.NotSupportedException">The object does not support reading of data.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.ReadTimeout">
|
|
<summary>Gets or sets a value, in milliseconds, that determines how long the stream will attempt to read before timing out.</summary>
|
|
<returns>A value, in milliseconds, that determines how long the stream will attempt to read before timing out.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.Seek(System.Int64,System.IO.SeekOrigin)">
|
|
<summary>Sets the position within the current stream.</summary>
|
|
<param name="offset">A byte offset relative to the <paramref name="origin" /> parameter</param>
|
|
<param name="origin">A value of type <see cref="T:System.IO.SeekOrigin" /> indicating the reference point used to obtain the new position</param>
|
|
<returns>The new position within the current stream.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.SetLength(System.Int64)">
|
|
<summary>Sets the length of the current stream.</summary>
|
|
<param name="value">The desired length of the current stream in bytes.</param>
|
|
<exception cref="T:System.NotSupportedException">The object does not support reading of data.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.TransactionContext">
|
|
<summary>Gets or sets the transaction context for this <see cref="T:System.Data.SqlTypes.SqlFileStream" /> object.</summary>
|
|
<returns>The <paramref name="transactionContext" /> array that was passed to the constructor for this <see cref="T:System.Data.SqlTypes.SqlFileStream" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.Write(System.Byte[],System.Int32,System.Int32)">
|
|
<summary>Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.</summary>
|
|
<param name="buffer">An array of bytes. This method copies <paramref name="count" /> bytes from <paramref name="buffer" /> to the current stream.</param>
|
|
<param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream.</param>
|
|
<param name="count">The number of bytes to be written to the current stream.</param>
|
|
<exception cref="T:System.NotSupportedException">The object does not support writing of data.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlFileStream.WriteByte(System.Byte)">
|
|
<summary>Writes a byte to the current position in the stream and advances the position within the stream by one byte.</summary>
|
|
<param name="value">The byte to write to the stream.</param>
|
|
<exception cref="T:System.NotSupportedException">The object does not support writing of data.</exception>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlFileStream.WriteTimeout">
|
|
<summary>Gets or sets a value, in milliseconds, that determines how long the stream will attempt to write before timing out.</summary>
|
|
<returns>A value, in milliseconds, that determines how long the stream will attempt to write before timing out.</returns>
|
|
</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" /> 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" /> structure using the specified <see cref="T:System.Guid" /> parameter.</summary>
|
|
<param name="g">A <see cref="T:System.Guid" /></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" /> structure using the specified values.</summary>
|
|
<param name="a">The first four bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="b">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="c">The next two bytes of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="d">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="e">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="f">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="g">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="h">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="i">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="j">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</param>
|
|
<param name="k">The next byte of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</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" /> structure using the specified <see cref="T:System.String" /> parameter.</summary>
|
|
<param name="s">A <see cref="T:System.String" /> object.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Data.SqlTypes.SqlGuid)">
|
|
<summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to the supplied <see cref="T:System.Data.SqlTypes.SqlGuid" /> and returns an indication of their relative values. Compares more than the last 6 bytes, but treats the last 6 bytes as the most significant ones in comparisons.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> 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 (<see langword="Nothing" />).</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.CompareTo(System.Object)">
|
|
<summary>Compares this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to the supplied object and returns an indication of their relative values. Compares more than the last 6 bytes, but treats the last 6 bytes as the most significant ones in comparisons.</summary>
|
|
<param name="value">The <see cref="T:System.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 object.
|
|
|
|
Zero
|
|
|
|
This instance is the same as object.
|
|
|
|
Greater than zero
|
|
|
|
This instance is greater than object
|
|
|
|
-or-
|
|
|
|
object is a null reference (<see langword="Nothing" />)</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlGuid" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.GetHashCode">
|
|
<summary>Returns the hash code of this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see langword="null" />. Otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlGuid.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</summary>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<param name="x">A <see langword="SqlBinary" /> object.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBinary.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBinary" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Guid" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Guid" /> equal to the <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<param name="x">A <see cref="T:System.Guid" />.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is equal to the <see cref="T:System.Guid" /> parameter.</returns>
|
|
</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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlGuid" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.Parse(System.String)">
|
|
<summary>Converts the specified <see cref="T:System.String" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlGuid" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.ToByteArray">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to a byte array.</summary>
|
|
<returns>An array of bytes representing the <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.ToSqlBinary">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to <see cref="T:System.Data.SqlTypes.SqlBinary" />.</summary>
|
|
<returns>A <see langword="SqlBinary" /> structure that contains the bytes in the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlGuid.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to a <see cref="T:System.String" />.</summary>
|
|
<returns>A <see cref="T:System.String" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlGuid.Value">
|
|
<summary>Gets the value of the <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure. This property is read-only.</summary>
|
|
<returns>A <see cref="T:System.Guid" /> 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" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise AND.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise OR.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.CompareTo(System.Data.SqlTypes.SqlInt16)">
|
|
<summary>Compares this <see cref="T:System.Data.SqlTypes.SqlInt16" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt16" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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-
|
|
|
|
object is a null reference (<see langword="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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the division.</returns>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt16" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see cref="T:System.String" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlInt16.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" />.</summary>
|
|
</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" />.</summary>
|
|
</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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> 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" /> values and returns the remainder.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> value.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> value.</param>
|
|
<returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the product of the two parameters.</returns>
|
|
</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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlInt16.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.OnesComplement(System.Data.SqlTypes.SqlInt16)">
|
|
<summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt16" /> operands.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise AND.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise OR.</returns>
|
|
</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" /> operand by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the division.</returns>
|
|
</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" /> structures to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the bitwise XOR.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> structure to a short integer.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A short integer whose value is the Value of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> object to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> object parameter.</returns>
|
|
</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" /> to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">A short integer value.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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" /> structures to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> operand by its second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> 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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> contains the product of the two parameters.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.op_OnesComplement(System.Data.SqlTypes.SqlInt16)">
|
|
<summary>The ~ operator performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlByte" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the complement of the specified <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the subtraction.</returns>
|
|
</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" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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" /> representation of a number to its 16-bit signed integer equivalent.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A 16-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property contains the results of the subtraction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An XML schema consumed by .NET Framework.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> is less than 0 or greater than 255, an <see cref="T:System.OverflowException" /> occurs.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see langword="Value" /> equals the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt16.ToString">
|
|
<summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to <see cref="T:System.String" />.</summary>
|
|
<returns>A <see cref="T:System.String" /> object representing the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlInt16.Value">
|
|
<summary>Gets the value of this instance of <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure. This property is read-only.</summary>
|
|
<returns>A short integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt16" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</summary>
|
|
</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" /> 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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt32" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> parameter from the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the division.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt32" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlInt32.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure is null.</summary>
|
|
<returns>This property is <see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> is null. Otherwise, <see langword="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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" />.</summary>
|
|
</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" />.</summary>
|
|
</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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> 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" /> values and returns the remainder.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> value.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> value.</param>
|
|
<returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the product of the two parameters.</returns>
|
|
</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlInt32.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.OnesComplement(System.Data.SqlTypes.SqlInt32)">
|
|
<summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the one's complement operation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.op_Addition(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
|
|
<summary>Computes the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the sum of the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structures.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> parameter from the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the division.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the bitwise XOR operation.</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" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> structure to an integer.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>The converted integer value.</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" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property of the <see langword="SqlInt64" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> object to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" /> object.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> property to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">An integer value.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose Value property is equal to the integer 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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt32" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> 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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> contains the product of the two parameters.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.op_OnesComplement(System.Data.SqlTypes.SqlInt32)">
|
|
<summary>Performs a bitwise one's complement operation on the specified <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure that contains the results of the one's complement operation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.op_Subtraction(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)">
|
|
<summary>Subtracts the second <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the subtraction.</returns>
|
|
</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" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> representation of a number to its 32-bit signed integer equivalent.</summary>
|
|
<param name="s">The <see cref="T:System.String" /> to be parsed.</param>
|
|
<returns>A 32-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property contains the results of the subtraction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure. If the value of the <see langword="SqlInt32" /> is less than 0 or greater than 255, an <see cref="T:System.OverflowException" /> occurs.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt32.ToString">
|
|
<summary>Converts a <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to a <see cref="T:System.String" />.</summary>
|
|
<returns>A <see cref="T:System.String" /> structure equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlInt32.Value">
|
|
<summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure. This property is read-only.</summary>
|
|
<returns>An integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The property contains <see cref="F:System.Data.SqlTypes.SqlInt32.Null" />.</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt32" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure.</summary>
|
|
</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" /> 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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlInt64" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the results of the division operation.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlInt64" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if object is an instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> and the two are equal; otherwise <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.GetHashCode">
|
|
<summary>Returns the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</summary>
|
|
</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" /> structure.</summary>
|
|
</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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the remainder.</returns>
|
|
</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" /> values and returns the remainder.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> value.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> value.</param>
|
|
<returns>The remainder left after division is performed on <paramref name="x" /> and <paramref name="y" />.</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlInt64.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.OnesComplement(System.Data.SqlTypes.SqlInt64)">
|
|
<summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the sum of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
|
|
</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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> operands.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the results of the division operation.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure that contains the results of the bitwise XOR operation.</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the integer part of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> parameter to long.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new long value equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the integer part of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the integer part of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">A long integer value.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> equals the value of the long parameter.</returns>
|
|
</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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property contains the remainder.</returns>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the product of the two <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameters.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.op_OnesComplement(System.Data.SqlTypes.SqlInt64)">
|
|
<summary>Performs a bitwise one's complement operation on its <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the ones complement of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the results of the subtraction operation.</returns>
|
|
</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" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> operand.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is equal to the negated <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.Parse(System.String)">
|
|
<summary>Converts the <see cref="T:System.String" /> representation of a number to its 64-bit signed integer equivalent.</summary>
|
|
<param name="s">The <see cref="T:System.String" /> to be parsed.</param>
|
|
<returns>A 64-bit signed integer equivalent to the value that is contained in the specified <see cref="T:System.String" />.</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure whose <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> property equals the results of the subtraction operation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlInt64.ToString">
|
|
<summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlInt64" /> to <see cref="T:System.String" />.</summary>
|
|
<returns>A <see cref="T:System.String" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlInt64.Value">
|
|
<summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure. This property is read-only.</summary>
|
|
<returns>A long integer representing the value of this <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlInt64" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure.</summary>
|
|
</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" /> class with the specified <see cref="T:System.Decimal" /> 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" /> 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" /> 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" /> 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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> stucture whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlMoney" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the division.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlMoney" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> and the two are equal; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.GetHashCode">
|
|
<summary>Gets the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the product of the multiplication.</returns>
|
|
</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlMoney.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> stucture whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the sum of the two <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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" /> parameter by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the division.</returns>
|
|
</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Decimal" />.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> property of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> parameters to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.op_Implicit(System.Decimal)~System.Data.SqlTypes.SqlMoney">
|
|
<summary>Converts the <see cref="T:System.Decimal" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Decimal" /> value to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> equals the value of the <see cref="T:System.Decimal" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<param name="x">The <see cref="T:System.Int64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property is equal to the value of the <see cref="T:System.Int64" /> parameter.</returns>
|
|
</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the product of the multiplication.</returns>
|
|
</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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" /> parameter.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be negated.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure whose <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> contains the results of the negation.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.Parse(System.String)">
|
|
<summary>Converts the <see cref="T:System.String" /> representation of a number to its <see cref="T:System.Data.SqlTypes.SqlMoney" /> equivalent.</summary>
|
|
<param name="s">The <see langword="String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
|
|
</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" /> parameter from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure that contains the results of the subtraction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToDecimal">
|
|
<summary>Converts the Value of this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> as a <see cref="T:System.Decimal" /> structure.</summary>
|
|
<returns>A <see cref="T:System.Decimal" /> structure whose value equals the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> property of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to a <see cref="T:System.Double" />.</summary>
|
|
<returns>A double with a value equal to this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to an <see cref="T:System.Int32" />.</summary>
|
|
<returns>A 32-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToInt64">
|
|
<summary>Converts the Value of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to an <see cref="T:System.Int64" />.</summary>
|
|
<returns>A 64-bit integer whose value equals the integer part of this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure. If the value of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure is zero, the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure's value will be <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.True" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlByte">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> structure whose value is a string representing the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlMoney.ToString">
|
|
<summary>Converts this instance of <see cref="T:System.Data.SqlTypes.SqlMoney" /> to string.</summary>
|
|
<returns>A string whose value is the string representation of the value of this <see cref="T:System.Data.SqlTypes.SqlMoney" />.</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" /> structure. This property is read-only.</summary>
|
|
<returns>The monetary value of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlNotFilledException">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlNotFilledException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNotFilledException" /> class.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
<param name="e">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlNullValueException">
|
|
<summary>The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> 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" /> 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" /> 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" /> 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 <see langword="null" />, the current exception is raised in a <see langword="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" /> 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" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> structure.</summary>
|
|
<param name="value">A floating point number which will be used as the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> of the new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.CompareTo(System.Data.SqlTypes.SqlSingle)">
|
|
<summary>Compares this <see cref="T:System.Data.SqlTypes.SqlSingle" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlSingle" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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 (<see langword="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" /> instance to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> structure by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see langword="SqlInt64" /> structure that contains the results of the division.</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" /> parameters to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlSingle" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> and the two are equal. Otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.GetHashCode">
|
|
<summary>Gets the hash code for this instance.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> operands to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlSingle.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if null. Otherwise, <see langword="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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
</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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlSingle.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the sum of the two specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structures.</returns>
|
|
</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" /> structure by the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlBoolean.ByteValue" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDouble.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> structure to float.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> value to be converted to float.</param>
|
|
<returns>A float that contains the value of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> object to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the value represented by the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> operands to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> property equals the <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDecimal" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlDecimal.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlDecimal" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt16.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt32" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt32.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlInt64.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure whose <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is equal to the <see cref="P:System.Data.SqlTypes.SqlMoney.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" />.</summary>
|
|
<param name="x">The float value to be converted to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the value of the specified float.</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" /> parameters to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> parameters to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlSingle" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> structure from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> of the specified <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> to a <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</summary>
|
|
<param name="s">The <see cref="T:System.String" /> to be parsed.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> equivalent to the value that is contained in the specified <see cref="T:System.String" />.</returns>
|
|
</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" /> structure from the first.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure that contains the results of the subtraction.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlSingle.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlByte" /> structure whose <see langword="Value" /> equals the <see langword="Value" /> of this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure. If the <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure's Value is <see langword="true" />, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 1. Otherwise, the <see cref="T:System.Data.SqlTypes.SqlByte" /> structure's <see langword="Value" /> will be 0.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see langword="SqlDecimal" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see langword="SqlDouble" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see langword="SqlInt16" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlMoney" /> equal to the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToSqlString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlSingle.ToString">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to <see cref="T:System.String" />.</summary>
|
|
<returns>A <see langword="String" /> object representing the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlSingle.Value">
|
|
<summary>Gets the value of this <see cref="T:System.Data.SqlTypes.SqlSingle" /> 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" /> property of an instance of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> class.</summary>
|
|
</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" /> has a different underlying data structure from its corresponding .NET Framework <see cref="T:System.String" /> data type.</summary>
|
|
</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" /> 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" /> structure.</param>
|
|
<param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<param name="data">The data array to store.</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" /> class.</summary>
|
|
<param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<param name="data">The data array to store.</param>
|
|
<param name="fUnicode">
|
|
<see langword="true" /> if Unicode encoded. Otherwise, <see langword="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" /> class.</summary>
|
|
<param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> 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" /> class.</summary>
|
|
<param name="lcid">Specifies the geographical locale and language for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> 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">
|
|
<see langword="true" /> if Unicode encoded. Otherwise, <see langword="false" />.</param>
|
|
</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" /> 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" /> 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" /> structure.</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" /> 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" /> structure.</param>
|
|
<param name="compareOptions">Specifies the compare options for the new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</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" /> values to create a new <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that is the concatenated value of <paramref name="x" /> and <paramref name="y" />.</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlString.BinarySort2">
|
|
<summary>Specifies that sorts should be based on a character's numeric value instead of its alphabetical value.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.Clone">
|
|
<summary>Creates a copy of this <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> 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" /> object that defines how string comparisons should be performed for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
|
|
<returns>A <see langword="CompareInfo" /> object that defines string comparison for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.CompareOptionsFromSqlCompareOptions(System.Data.SqlTypes.SqlCompareOptions)">
|
|
<summary>Gets the <see cref="T:System.Globalization.CompareOptions" /> enumeration equilvalent of the specified <see cref="T:System.Data.SqlTypes.SqlCompareOptions" /> value.</summary>
|
|
<param name="compareOptions">A <see cref="T:System.Data.SqlTypes.SqlCompareOptions" /> value that describes the comparison options for this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</param>
|
|
<returns>A <see langword="CompareOptions" /> value that corresponds to the <see langword="SqlCompareOptions" /> for this <see cref="T:System.Data.SqlTypes.SqlString" /> 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" /> instance to the supplied <see cref="T:System.Data.SqlTypes.SqlString" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.Data.SqlTypes.SqlString" /> 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 (<see langword="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" /> object to the supplied <see cref="T:System.Object" /> and returns an indication of their relative values.</summary>
|
|
<param name="value">The <see cref="T:System.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 (<see langword="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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString" /> parameters.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlString.CultureInfo">
|
|
<summary>Gets the <see cref="T:System.Globalization.CultureInfo" /> structure that represents information about the culture of this <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
|
|
<returns>A <see cref="T:System.Globalization.CultureInfo" /> structure that describes information about the culture of this SqlString structure including the names of the culture, the writing system, and the calendar used, and also access to culture-specific objects that provide methods for common operations, such as formatting dates and sorting strings.</returns>
|
|
</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" /> operands to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>
|
|
<see langword="true" /> if the two values are equal. Otherwise, <see langword="false" />. If either instance is null, then the <see langword="SqlString" /> will be null.</returns>
|
|
</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" /> property of the <see cref="T:System.Data.SqlTypes.SqlString" /> object.</summary>
|
|
<param name="value">The object to be compared.</param>
|
|
<returns>
|
|
<see langword="true" /> if the object is an instance of <see cref="T:System.Data.SqlTypes.SqlString" /> and the two are equal; otherwise, <see langword="false" />.</returns>
|
|
</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" /> in ANSI format.</summary>
|
|
<returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> 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" /> in Unicode format.</summary>
|
|
<returns>An byte array, that contains the contents of the <see cref="T:System.Data.SqlTypes.SqlString" /> in Unicode format.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">A <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A <see langword="string" /> value that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</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" /> operands to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlString.IgnoreCase">
|
|
<summary>Specifies that <see cref="T:System.Data.SqlTypes.SqlString" /> comparisons should ignore case.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlString.IgnoreKanaType">
|
|
<summary>Specifies that the string comparison must ignore the Kana type.</summary>
|
|
</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>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlString.IgnoreWidth">
|
|
<summary>Specifies that the string comparison must ignore the character width.</summary>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlString.IsNull">
|
|
<summary>Indicates whether this <see cref="T:System.Data.SqlTypes.SqlString" /> structure is null.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see cref="P:System.Data.SqlTypes.SqlString.Value" /> is <see cref="F:System.Data.SqlTypes.SqlString.Null" />. Otherwise, <see langword="false" />.</returns>
|
|
</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" /> structure.</summary>
|
|
<returns>The locale id for the string stored in the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> 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" /> operands to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> operands to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlString.Null">
|
|
<summary>Represents a <see cref="T:System.DBNull" /> that can be assigned to this instance of the <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</summary>
|
|
</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" /> structures.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the newly concatenated value representing the contents of the two <see cref="T:System.Data.SqlTypes.SqlString" /> parameters.</returns>
|
|
</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" /> operands to determine whether they are equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are not equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlBoolean" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> parameter.</returns>
|
|
</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" /> structure to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlByte" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlByte" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDateTime" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDateTime" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see langword="SqlDecimal" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see langword="SqlDecimal" /> 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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlDouble" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlDouble" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> whose value is the string representation of the specified <see cref="T:System.Data.SqlTypes.SqlGuid" />.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt16" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt16" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The SqlInt32 structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt32" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlInt64" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> object that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlInt64" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlMoney" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlMoney" /> parameter.</returns>
|
|
</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" /> parameter to <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlSingle" /> structure to be converted.</param>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the string representation of the <see cref="T:System.Data.SqlTypes.SqlSingle" /> parameter.</returns>
|
|
</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" /> to a <see cref="T:System.String" /></summary>
|
|
<param name="x">The <see cref="T:System.Data.SqlTypes.SqlString" /> to be converted.</param>
|
|
<returns>A <see langword="String" />, whose contents are the same as the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> property of the <see cref="T:System.Data.SqlTypes.SqlString" /> parameter.</returns>
|
|
</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" /> operands to determine whether the first is greater than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is greater than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.op_Implicit(System.String)~System.Data.SqlTypes.SqlString">
|
|
<summary>Converts the <see cref="T:System.String" /> parameter to a <see cref="T:System.Data.SqlTypes.SqlString" />.</summary>
|
|
<param name="x">The <see cref="T:System.String" /> to be converted.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlString" /> that contains the value of the specified <see langword="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" /> operands to determine whether they are not equal.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the two instances are not equal or <see cref="F:System.Data.SqlTypes.SqlBoolean.False" /> if the two instances are equal. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> operands to determine whether the first is less than the second.</summary>
|
|
<param name="x">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> 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" />.</param>
|
|
<param name="y">A <see cref="T:System.Data.SqlTypes.SqlString" />.</param>
|
|
<returns>A <see cref="T:System.Data.SqlTypes.SqlBoolean" /> that is <see cref="F:System.Data.SqlTypes.SqlBoolean.True" /> if the first instance is less than or equal to the second instance. Otherwise, <see cref="F:System.Data.SqlTypes.SqlBoolean.False" />. If either instance of <see cref="T:System.Data.SqlTypes.SqlString" /> is null, the <see cref="P:System.Data.SqlTypes.SqlBoolean.Value" /> of the <see cref="T:System.Data.SqlTypes.SqlBoolean" /> will be <see cref="F:System.Data.SqlTypes.SqlBoolean.Null" />.</returns>
|
|
</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" /> enumeration values that represent the way in which this <see cref="T:System.Data.SqlTypes.SqlString" /> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</summary>
|
|
<returns>A value specifying how this <see cref="T:System.Data.SqlTypes.SqlString" /> should be compared to other <see cref="T:System.Data.SqlTypes.SqlString" /> structures.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<returns>An <see langword="XmlSchema" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="reader">
|
|
<see langword="XmlReader" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
<param name="writer">
|
|
<see langword="XmlWriter" />
|
|
</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlBoolean">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlBoolean" />.</summary>
|
|
<returns>
|
|
<see langword="true" /> if the <see cref="P:System.Data.SqlTypes.SqlString.Value" /> is non-zero; <see langword="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" /> structure to <see cref="T:System.Data.SqlTypes.SqlByte" />.</summary>
|
|
<returns>A new <see langword="SqlByte" /> structure whose <see cref="P:System.Data.SqlTypes.SqlByte.Value" /> equals the number represented by this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlDateTime">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDateTime" />.</summary>
|
|
<returns>A new <see langword="SqlDateTime" /> structure that contains the date value represented by this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlDecimal">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDecimal" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDecimal" /> that contains the value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlDouble">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlDouble" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlDouble" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlGuid">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlGuid" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlGuid" /> structure whose <see cref="P:System.Data.SqlTypes.SqlGuid.Value" /> is the <see langword="Guid" /> represented by this <see cref="T:System.Data.SqlTypes.SqlString" /> structure.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlInt16">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt16" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt16" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlInt32">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt32" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt32" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlInt64">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlInt64" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlInt64" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlMoney">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlMoney" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlMoney" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToSqlSingle">
|
|
<summary>Converts this <see cref="T:System.Data.SqlTypes.SqlString" /> structure to <see cref="T:System.Data.SqlTypes.SqlSingle" />.</summary>
|
|
<returns>A new <see cref="T:System.Data.SqlTypes.SqlSingle" /> that is equal to the numeric value of this <see cref="T:System.Data.SqlTypes.SqlString" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlString.ToString">
|
|
<summary>Converts a <see cref="T:System.Data.SqlTypes.SqlString" /> object to a <see cref="T:System.String" />.</summary>
|
|
<returns>A <see cref="T:System.String" /> with the same value as this <see cref="T:System.Data.SqlTypes.SqlString" /> 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" /> structure. This property is read-only.</summary>
|
|
<returns>The string that is stored.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">The value of the string is <see cref="F:System.Data.SqlTypes.SqlString.Null" />.</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" /> 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" /> 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" /> 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" /> class with a specified error message and a reference to the <see cref="T:System.Exception" />.</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" />.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlTypeException">
|
|
<summary>The base exception class for the <see cref="N:System.Data.SqlTypes" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypeException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with serialized data.</summary>
|
|
<param name="si">The object that holds the serialized object data.</param>
|
|
<param name="sc">The contextual information about the source or destination.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypeException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> 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" /> 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 <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.#ctor(System.String,System.String)">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
<param name="name">The name as a string.</param>
|
|
<param name="destinationType">The destination type as a string.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.#ctor(System.String,System.String,System.Boolean)">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
<param name="name">The name as a string.</param>
|
|
<param name="destinationType">The destination type as a string.</param>
|
|
<param name="direct">A Boolean.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.#ctor(System.String,System.String,System.String[],System.CodeDom.CodeNamespaceImport[],System.String,System.Boolean)">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
<param name="name">The name as a string.</param>
|
|
<param name="targetNamespace">The target namespace.</param>
|
|
<param name="references">String array of references.</param>
|
|
<param name="namespaceImports">Array of CodeNamespaceImport objects.</param>
|
|
<param name="destinationType">The destination type as a string.</param>
|
|
<param name="direct">A Boolean for direct.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.ImportSchemaType(System.String,System.String,System.Xml.Schema.XmlSchemaObject,System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.XmlSchemaImporter,System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.Xml.Serialization.CodeGenerationOptions,System.CodeDom.Compiler.CodeDomProvider)">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
<param name="name">
|
|
<paramref name="name" />
|
|
</param>
|
|
<param name="xmlNamespace">
|
|
<paramref name="xmlNamespace" />
|
|
</param>
|
|
<param name="context">
|
|
<paramref name="context" />
|
|
</param>
|
|
<param name="schemas">
|
|
<paramref name="schemas" />
|
|
</param>
|
|
<param name="importer">
|
|
<paramref name="importer" />
|
|
</param>
|
|
<param name="compileUnit">
|
|
<paramref name="compileUnit" />
|
|
</param>
|
|
<param name="mainNamespace">
|
|
<paramref name="mainNamespace" />
|
|
</param>
|
|
<param name="options">
|
|
<paramref name="options" />
|
|
</param>
|
|
<param name="codeProvider">
|
|
<paramref name="codeProvider" />
|
|
</param>
|
|
<returns>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.ImportSchemaType(System.Xml.Schema.XmlSchemaType,System.Xml.Schema.XmlSchemaObject,System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.XmlSchemaImporter,System.CodeDom.CodeCompileUnit,System.CodeDom.CodeNamespace,System.Xml.Serialization.CodeGenerationOptions,System.CodeDom.Compiler.CodeDomProvider)">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
<param name="type">
|
|
<paramref name="type" />
|
|
</param>
|
|
<param name="context">
|
|
<paramref name="context" />
|
|
</param>
|
|
<param name="schemas">
|
|
<paramref name="schemas" />
|
|
</param>
|
|
<param name="importer">
|
|
<paramref name="importer" />
|
|
</param>
|
|
<param name="compileUnit">
|
|
<paramref name="compileUnit" />
|
|
</param>
|
|
<param name="mainNamespace">
|
|
<paramref name="mainNamespace" />
|
|
</param>
|
|
<param name="options">
|
|
<paramref name="options" />
|
|
</param>
|
|
<param name="codeProvider">
|
|
<paramref name="codeProvider" />
|
|
</param>
|
|
<returns>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</returns>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper.SqlTypesNamespace">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.SqlTypesSchemaImporterExtensionHelper" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="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" /> 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" /> instance, supplying the XML value from the supplied <see cref="T:System.IO.Stream" />-derived instance.</summary>
|
|
<param name="value">A <see cref="T:System.IO.Stream" />-derived instance (such as <see cref="T:System.IO.FileStream" />) from which to load the <see cref="T:System.Data.SqlTypes.SqlXml" /> instance's Xml content.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlXml.#ctor(System.Xml.XmlReader)">
|
|
<summary>Creates a new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance and associates it with the content of the supplied <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<param name="value">An <see cref="T:System.Xml.XmlReader" />-derived class instance to be used as the value of the new <see cref="T:System.Data.SqlTypes.SqlXml" /> instance.</param>
|
|
</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" /> as a <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<returns>A <see cref="T:System.Xml.XmlReader" />-derived instance that contains the XML content. The actual type may vary (for example, the return value might be <see cref="T:System.Xml.XmlTextReader" />) depending on how the information is represented internally, on the server.</returns>
|
|
<exception cref="T:System.Data.SqlTypes.SqlNullValueException">Attempt was made to access this property on a null instance of <see cref="T:System.Data.SqlTypes.SqlXml" />.</exception>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlXml.GetXsdType(System.Xml.Schema.XmlSchemaSet)">
|
|
<summary>Returns the XML Schema definition language (XSD) of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
|
|
<param name="schemaSet">An <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
|
|
<returns>A string that indicates the XSD of the specified <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.SqlTypes.SqlXml.IsNull">
|
|
<summary>Indicates whether this instance represents a null <see cref="T:System.Data.SqlTypes.SqlXml" /> value.</summary>
|
|
<returns>
|
|
<see langword="true" /> if <see langword="Value" /> is null. Otherwise, <see langword="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" /> type.</summary>
|
|
<returns>A null instance of the <see cref="T:System.Data.SqlTypes.SqlXml" /> type.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#GetSchema">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
<returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
|
|
<param name="r">An XmlReader.</param>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.SqlXml.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
|
|
<summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
|
|
<param name="writer">An XmlWriter</param>
|
|
</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" /> instance.</summary>
|
|
<returns>The string representation of the XML content.</returns>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.StorageState">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.StorageState" /> enumeration is not intended for use as a stand-alone component, but as an enumeration from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.StorageState.Buffer">
|
|
<summary>Buffer size.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.StorageState.Stream">
|
|
<summary>Stream.</summary>
|
|
</member>
|
|
<member name="F:System.Data.SqlTypes.StorageState.UnmanagedBuffer">
|
|
<summary>Unmanaged buffer.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeBigIntSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeBigIntSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeBigIntSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeBigIntSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeBinarySchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeBinarySchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeBinarySchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeBinarySchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeBitSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeBitSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeBitSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeBitSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeCharSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeCharSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeCharSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeCharSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeDateTimeSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeDateTimeSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeDateTimeSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeDateTimeSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeDecimalSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeDecimalSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeDecimalSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeDecimalSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeFloatSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeFloatSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeFloatSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeFloatSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeIntSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeIntSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeIntSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeIntSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeMoneySchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeMoneySchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeMoneySchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeMoneySchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeNCharSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeNCharSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeNCharSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeNCharSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeNTextSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeNTextSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeNTextSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeNTextSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeNumericSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeNumericSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeNumericSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeNumericSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeNVarCharSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeNVarCharSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeNVarCharSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeNVarCharSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeRealSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeRealSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeRealSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeRealSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeSmallDateTimeSchemaImporterExtension">
|
|
<summary>The TypeSmallDateTimeSchemaImporterExtension class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeSmallDateTimeSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the TypeSmallDateTimeSchemaImporterExtension class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeSmallIntSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeSmallIntSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeSmallIntSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeSmallIntSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeSmallMoneySchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeSmallMoneySchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeSmallMoneySchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeSmallMoneySchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeTextSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeTextSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeTextSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeTextSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeTinyIntSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeTinyIntSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeTinyIntSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeTinyIntSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeUniqueIdentifierSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeUniqueIdentifierSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeUniqueIdentifierSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeUniqueIdentifierSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeVarBinarySchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeVarBinarySchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeVarBinarySchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeVarBinarySchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeVarCharSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeVarCharSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeVarCharSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeVarCharSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.SqlTypes.TypeVarImageSchemaImporterExtension">
|
|
<summary>The <see cref="T:System.Data.SqlTypes.TypeVarImageSchemaImporterExtension" /> class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SqlTypes.TypeVarImageSchemaImporterExtension.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.TypeVarImageSchemaImporterExtension" /> class.</summary>
|
|
</member>
|
|
<member name="T:System.Data.StateChangeEventArgs">
|
|
<summary>Provides data for the state change event of a .NET Framework data provider.</summary>
|
|
</member>
|
|
<member name="M:System.Data.StateChangeEventArgs.#ctor(System.Data.ConnectionState,System.Data.ConnectionState)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.StateChangeEventArgs" /> class, when given the original state and the current state of the object.</summary>
|
|
<param name="originalState">One of the <see cref="T:System.Data.ConnectionState" /> values.</param>
|
|
<param name="currentState">One of the <see cref="T:System.Data.ConnectionState" /> values.</param>
|
|
</member>
|
|
<member name="P:System.Data.StateChangeEventArgs.CurrentState">
|
|
<summary>Gets the new state of the connection. The connection object will be in the new state already when the event is fired.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
|
|
</member>
|
|
<member name="P:System.Data.StateChangeEventArgs.OriginalState">
|
|
<summary>Gets the original state of the connection.</summary>
|
|
<returns>One of the <see cref="T:System.Data.ConnectionState" /> values.</returns>
|
|
</member>
|
|
<member name="T:System.Data.StateChangeEventHandler">
|
|
<summary>Represents the method that will handle the <see cref="E:System.Data.Common.DbConnection.StateChange" /> event.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The <see cref="T:System.Data.StateChangeEventArgs" /> that contains the event data.</param>
|
|
</member>
|
|
<member name="T:System.Data.StatementCompletedEventArgs">
|
|
<summary>Provides additional information for the <see cref="E:System.Data.SqlClient.SqlCommand.StatementCompleted" /> 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" /> 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" /> 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" /> 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" /> event.</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The data for the event.</param>
|
|
</member>
|
|
<member name="T:System.Data.StatementType">
|
|
<summary>Specifies the type of SQL query to be used by the <see cref="T:System.Data.OleDb.OleDbRowUpdatedEventArgs" />, <see cref="T:System.Data.OleDb.OleDbRowUpdatingEventArgs" />, <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs" />, or <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs" /> class.</summary>
|
|
</member>
|
|
<member name="F:System.Data.StatementType.Batch">
|
|
<summary>A SQL query that is a batch statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.StatementType.Delete">
|
|
<summary>An SQL query that is a DELETE statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.StatementType.Insert">
|
|
<summary>An SQL query that is an INSERT statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.StatementType.Select">
|
|
<summary>An SQL query that is a SELECT statement.</summary>
|
|
</member>
|
|
<member name="F:System.Data.StatementType.Update">
|
|
<summary>An SQL query that is an UPDATE statement.</summary>
|
|
</member>
|
|
<member name="T:System.Data.StrongTypingException">
|
|
<summary>The exception that is thrown by a strongly typed <see cref="T:System.Data.DataSet" /> when the user accesses a <see langword="DBNull" /> value.</summary>
|
|
</member>
|
|
<member name="M:System.Data.StrongTypingException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.StrongTypingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class using the specified serialization information and streaming context.</summary>
|
|
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure.</param>
|
|
</member>
|
|
<member name="M:System.Data.StrongTypingException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class with the specified string.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.StrongTypingException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.StrongTypingException" /> class with the specified string and inner exception.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
<param name="innerException">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="T:System.Data.SyntaxErrorException">
|
|
<summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression" /> property of a <see cref="T:System.Data.DataColumn" /> contains a syntax error.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SyntaxErrorException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.SyntaxErrorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
<param name="info">The data needed to serialize or deserialize an object.</param>
|
|
<param name="context">The source and destination of a specific serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.SyntaxErrorException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.SyntaxErrorException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.TypedDataSetGenerator">
|
|
<summary>Used to create a strongly typed <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGenerator.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGenerator" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGenerator.Generate(System.Data.DataSet,System.CodeDom.CodeNamespace,System.CodeDom.Compiler.ICodeGenerator)">
|
|
<summary>Generates a strongly typed <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataSet">The source <see cref="T:System.Data.DataSet" /> that specifies the metadata for the typed <see cref="T:System.Data.DataSet" />.</param>
|
|
<param name="codeNamespace">The namespace that provides the target namespace for the typed <see cref="T:System.Data.DataSet" />.</param>
|
|
<param name="codeGen">The generator used to create the typed <see cref="T:System.Data.DataSet" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGenerator.GenerateIdName(System.String,System.CodeDom.Compiler.ICodeGenerator)">
|
|
<summary>Transforms a string in a valid, typed <see cref="T:System.Data.DataSet" /> name.</summary>
|
|
<param name="name">The source name to transform into a valid, typed <see cref="T:System.Data.DataSet" /> name.</param>
|
|
<param name="codeGen">The generator used to perform the conversion.</param>
|
|
<returns>A string that is the converted name.</returns>
|
|
</member>
|
|
<member name="T:System.Data.TypedDataSetGeneratorException">
|
|
<summary>The exception that is thrown when a name conflict occurs while generating a strongly typed <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGeneratorException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.#ctor(System.Collections.ArrayList)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGeneratorException" /> class.</summary>
|
|
<param name="list">
|
|
<see cref="T:System.Collections.ArrayList" /> object containing a dynamic list of exceptions.</param>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGeneratorException" /> class using the specified serialization information and streaming context.</summary>
|
|
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure.</param>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGeneratorException" /> class with the specified string.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.TypedDataSetGeneratorException" /> class with the specified string and inner exception.</summary>
|
|
<param name="message">The string to display when the exception is thrown.</param>
|
|
<param name="innerException">A reference to an inner exception.</param>
|
|
</member>
|
|
<member name="P:System.Data.TypedDataSetGeneratorException.ErrorList">
|
|
<summary>Gets a dynamic list of generated errors.</summary>
|
|
<returns>
|
|
<see cref="T:System.Collections.ArrayList" /> object.</returns>
|
|
</member>
|
|
<member name="M:System.Data.TypedDataSetGeneratorException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Implements the <see langword="ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Data.TypedDataSetGeneratorException" /> object.</summary>
|
|
<param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
<param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure.</param>
|
|
</member>
|
|
<member name="T:System.Data.UniqueConstraint">
|
|
<summary>Represents a restriction on a set of columns in which all values must be unique.</summary>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the <see cref="T:System.Data.DataColumn" /> to constrain, and a value specifying whether the constraint is a primary key.</summary>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
|
|
<param name="isPrimaryKey">
|
|
<see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the given array of <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.Data.DataColumn[],System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
|
|
<param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
|
|
<param name="isPrimaryKey">
|
|
<see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name and <see cref="T:System.Data.DataColumn" />.</summary>
|
|
<param name="name">The name of the constraint.</param>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn,System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, the <see cref="T:System.Data.DataColumn" /> to constrain, and a value specifying whether the constraint is a primary key.</summary>
|
|
<param name="name">The name of the constraint.</param>
|
|
<param name="column">The <see cref="T:System.Data.DataColumn" /> to constrain.</param>
|
|
<param name="isPrimaryKey">
|
|
<see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[])">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name and array of <see cref="T:System.Data.DataColumn" /> objects.</summary>
|
|
<param name="name">The name of the constraint.</param>
|
|
<param name="columns">The array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.Data.DataColumn[],System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
|
|
<param name="name">The name of the constraint.</param>
|
|
<param name="columns">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
|
|
<param name="isPrimaryKey">
|
|
<see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.#ctor(System.String,System.String[],System.Boolean)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.UniqueConstraint" /> class with the specified name, an array of <see cref="T:System.Data.DataColumn" /> objects to constrain, and a value specifying whether the constraint is a primary key.</summary>
|
|
<param name="name">The name of the constraint.</param>
|
|
<param name="columnNames">An array of <see cref="T:System.Data.DataColumn" /> objects to constrain.</param>
|
|
<param name="isPrimaryKey">
|
|
<see langword="true" /> to indicate that the constraint is a primary key; otherwise, <see langword="false" />.</param>
|
|
</member>
|
|
<member name="P:System.Data.UniqueConstraint.Columns">
|
|
<summary>Gets the array of columns that this constraint affects.</summary>
|
|
<returns>An array of <see cref="T:System.Data.DataColumn" /> objects.</returns>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.Equals(System.Object)">
|
|
<summary>Compares this constraint to a second to determine if both are identical.</summary>
|
|
<param name="key2">The object to which this <see cref="T:System.Data.UniqueConstraint" /> is compared.</param>
|
|
<returns>
|
|
<see langword="true" />, if the contraints are equal; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="M:System.Data.UniqueConstraint.GetHashCode">
|
|
<summary>Gets the hash code of this instance of the <see cref="T:System.Data.UniqueConstraint" /> object.</summary>
|
|
<returns>A 32-bit signed integer hash code.</returns>
|
|
</member>
|
|
<member name="P:System.Data.UniqueConstraint.IsPrimaryKey">
|
|
<summary>Gets a value indicating whether or not the constraint is on a primary key.</summary>
|
|
<returns>
|
|
<see langword="true" />, if the constraint is on a primary key; otherwise, <see langword="false" />.</returns>
|
|
</member>
|
|
<member name="P:System.Data.UniqueConstraint.Table">
|
|
<summary>Gets the table to which this constraint belongs.</summary>
|
|
<returns>The <see cref="T:System.Data.DataTable" /> to which the constraint belongs.</returns>
|
|
</member>
|
|
<member name="T:System.Data.UpdateRowSource">
|
|
<summary>Specifies how query command results are applied to the row being updated.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateRowSource.Both">
|
|
<summary>Both the output parameters and the first returned row are mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateRowSource.FirstReturnedRecord">
|
|
<summary>The data in the first returned row is mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateRowSource.None">
|
|
<summary>Any returned parameters or rows are ignored.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateRowSource.OutputParameters">
|
|
<summary>Output parameters are mapped to the changed row in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="T:System.Data.UpdateStatus">
|
|
<summary>Specifies the action to take with regard to the current and remaining rows during an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateStatus.Continue">
|
|
<summary>The <see cref="T:System.Data.Common.DataAdapter" /> is to continue proccessing rows.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateStatus.ErrorsOccurred">
|
|
<summary>The event handler reports that the update should be treated as an error.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateStatus.SkipAllRemainingRows">
|
|
<summary>The current row and all remaining rows are not to be updated.</summary>
|
|
</member>
|
|
<member name="F:System.Data.UpdateStatus.SkipCurrentRow">
|
|
<summary>The current row is not to be updated.</summary>
|
|
</member>
|
|
<member name="T:System.Data.VersionNotFoundException">
|
|
<summary>Represents the exception that is thrown when you try to return a version of a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
|
|
</member>
|
|
<member name="M:System.Data.VersionNotFoundException.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Data.VersionNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with serialization information.</summary>
|
|
<param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
<param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
</member>
|
|
<member name="M:System.Data.VersionNotFoundException.#ctor(System.String)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with the specified string.</summary>
|
|
<param name="s">The string to display when the exception is thrown.</param>
|
|
</member>
|
|
<member name="M:System.Data.VersionNotFoundException.#ctor(System.String,System.Exception)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
<param name="message">The error message that explains the reason for the exception.</param>
|
|
<param name="innerException">The exception that is the cause of the current exception, or a null reference (<see langword="Nothing" /> in Visual Basic) if no inner exception is specified.</param>
|
|
</member>
|
|
<member name="T:System.Data.XmlReadMode">
|
|
<summary>Specifies how to read XML data and a relational schema into a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.Auto">
|
|
<summary>Default.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.DiffGram">
|
|
<summary>Reads a DiffGram, applying changes from the DiffGram to the <see cref="T:System.Data.DataSet" />. The semantics are identical to those of a <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" /> operation. As with the <see cref="M:System.Data.DataSet.Merge(System.Data.DataSet)" /> operation, <see cref="P:System.Data.DataRow.RowState" /> values are preserved. Input to <see cref="M:System.Data.DataSet.ReadXml(System.Xml.XmlReader)" /> with DiffGrams should only be obtained using the output from <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)" /> as a DiffGram.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.Fragment">
|
|
<summary>Reads XML fragments, such as those generated by executing FOR XML queries, against an instance of SQL Server. When <see cref="T:System.Data.XmlReadMode" /> is set to <see langword="Fragment" />, the default namespace is read as the inline schema.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.IgnoreSchema">
|
|
<summary>Ignores any inline schema and reads data into the existing <see cref="T:System.Data.DataSet" /> schema. If any data does not match the existing schema, it is discarded (including data from differing namespaces defined for the <see cref="T:System.Data.DataSet" />). If the data is a DiffGram, <see langword="IgnoreSchema" /> has the same functionality as <see langword="DiffGram" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.InferSchema">
|
|
<summary>Ignores any inline schema, infers schema from the data and loads the data. If the <see cref="T:System.Data.DataSet" /> already contains a schema, the current schema is extended by adding new tables or adding columns to existing tables. An exception is thrown if the inferred table already exists but with a different namespace, or if any of the inferred columns conflict with existing columns.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.InferTypedSchema">
|
|
<summary>Ignores any inline schema, infers a strongly typed schema from the data, and loads the data. If the type cannot be inferred from the data, it is interpreted as string data. If the <see cref="T:System.Data.DataSet" /> already contains a schema, the current schema is extended, either by adding new tables or by adding columns to existing tables. An exception is thrown if the inferred table already exists but with a different namespace, or if any of the inferred columns conflict with existing columns.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlReadMode.ReadSchema">
|
|
<summary>Reads any inline schema and loads the data. If the <see cref="T:System.Data.DataSet" /> already contains schema, new tables may be added to the schema, but an exception is thrown if any tables in the inline schema already exist in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="T:System.Data.XmlWriteMode">
|
|
<summary>Specifies how to write XML data and a relational schema from a <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlWriteMode.DiffGram">
|
|
<summary>Writes the entire <see cref="T:System.Data.DataSet" /> as a DiffGram, including original and current values. To generate a DiffGram containing only changed values, call <see cref="M:System.Data.DataSet.GetChanges" />, and then call <see cref="M:System.Data.DataSet.WriteXml(System.IO.Stream)" /> as a DiffGram on the returned <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlWriteMode.IgnoreSchema">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataSet" /> as XML data, without an XSD schema. If no data is loaded into the <see cref="T:System.Data.DataSet" />, nothing is written.</summary>
|
|
</member>
|
|
<member name="F:System.Data.XmlWriteMode.WriteSchema">
|
|
<summary>Writes the current contents of the <see cref="T:System.Data.DataSet" /> as XML data with the relational structure as inline XSD schema. If the <see cref="T:System.Data.DataSet" /> has only a schema with no data, only the inline schema is written. If the <see cref="T:System.Data.DataSet" /> does not have a current schema, nothing is written.</summary>
|
|
</member>
|
|
<member name="T:System.Xml.XmlDataDocument">
|
|
<summary>Allows structured data to be stored, retrieved, and manipulated through a relational <see cref="T:System.Data.DataSet" />.</summary>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.#ctor">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDataDocument" /> class.</summary>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.#ctor(System.Data.DataSet)">
|
|
<summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDataDocument" /> class with the specified <see cref="T:System.Data.DataSet" />.</summary>
|
|
<param name="dataset">The <see langword="DataSet" /> to load into <see langword="XmlDataDocument" />.</param>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.CloneNode(System.Boolean)">
|
|
<summary>Creates a duplicate of the current node.</summary>
|
|
<param name="deep">
|
|
<see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
|
|
<returns>The cloned node.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.CreateElement(System.String,System.String,System.String)">
|
|
<summary>Creates an element with the specified <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.LocalName" /> , and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
|
|
<param name="prefix">The prefix of the new element. If String.Empty or <see langword="null" />, there is no prefix.</param>
|
|
<param name="localName">The local name of the new element.</param>
|
|
<param name="namespaceURI">The namespace Uniform Resource Identifier (URI) of the new element. If String.Empty or <see langword="null" />, there is no namespaceURI.</param>
|
|
<returns>A new <see cref="T:System.Xml.XmlElement" />.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.CreateEntityReference(System.String)">
|
|
<summary>Creates an <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</summary>
|
|
<param name="name">The name of the entity reference.</param>
|
|
<returns>An <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</returns>
|
|
<exception cref="T:System.NotSupportedException">Calling this method.</exception>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.CreateNavigator(System.Xml.XmlNode)">
|
|
<summary>Creates a new <see cref="T:System.Xml.XPath.XPathNavigator" /> object for navigating this document. The <see langword="XPathNavigator" /> is positioned on the node specified in the <paramref name="node" /> parameter.</summary>
|
|
<param name="node">The <see cref="T:System.Xml.XmlNode" /> you want the navigator initially positioned on.</param>
|
|
<returns>An <see langword="XPathNavigator" /> used to navigate the document.</returns>
|
|
</member>
|
|
<member name="P:System.Xml.XmlDataDocument.DataSet">
|
|
<summary>Gets a <see cref="T:System.Data.DataSet" /> that provides a relational representation of the data in the <see langword="XmlDataDocument" />.</summary>
|
|
<returns>A <see langword="DataSet" /> that can be used to access the data in the <see langword="XmlDataDocument" /> using a relational model.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.GetElementById(System.String)">
|
|
<summary>Gets the <see cref="T:System.Xml.XmlElement" /> with the specified ID. This method is not supported by the <see cref="T:System.Xml.XmlDataDocument" /> class. Calling this method throws an exception.</summary>
|
|
<param name="elemId">The attribute ID to match.</param>
|
|
<returns>An <see cref="T:System.Xml.XmlElement" /> with the specified ID.</returns>
|
|
<exception cref="T:System.NotSupportedException">Calling this method.</exception>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.GetElementFromRow(System.Data.DataRow)">
|
|
<summary>Retrieves the <see cref="T:System.Xml.XmlElement" /> associated with the specified <see cref="T:System.Data.DataRow" />.</summary>
|
|
<param name="r">The <see langword="DataRow" /> whose associated <see langword="XmlElement" /> you want to retrieve.</param>
|
|
<returns>The <see langword="XmlElement" /> containing a representation of the specified <see langword="DataRow" />.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.GetElementsByTagName(System.String)">
|
|
<summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlDocument.Name" />.</summary>
|
|
<param name="name">The qualified name to match. It is matched against the <see cref="P:System.Xml.XmlDocument.Name" /> property of the matching node. The special value "*" matches all tags.</param>
|
|
<returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.GetRowFromElement(System.Xml.XmlElement)">
|
|
<summary>Retrieves the <see cref="T:System.Data.DataRow" /> associated with the specified <see cref="T:System.Xml.XmlElement" />.</summary>
|
|
<param name="e">The <see langword="XmlElement" /> whose associated <see langword="DataRow" /> you want to retrieve.</param>
|
|
<returns>The <see langword="DataRow" /> containing a representation of the <see langword="XmlElement" />; <see langword="null" /> if there is no <see langword="DataRow" /> associated with the <see langword="XmlElement" />.</returns>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.Load(System.IO.Stream)">
|
|
<summary>Loads the <see langword="XmlDataDocument" /> from the specified stream.</summary>
|
|
<param name="inStream">The stream containing the XML document to load.</param>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.Load(System.IO.TextReader)">
|
|
<summary>Loads the <see langword="XmlDataDocument" /> from the specified <see cref="T:System.IO.TextReader" />.</summary>
|
|
<param name="txtReader">The <see langword="TextReader" /> used to feed the XML data into the document.</param>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.Load(System.String)">
|
|
<summary>Loads the <see langword="XmlDataDocument" /> using the specified URL.</summary>
|
|
<param name="filename">The URL of the file containing the XML document to load.</param>
|
|
</member>
|
|
<member name="M:System.Xml.XmlDataDocument.Load(System.Xml.XmlReader)">
|
|
<summary>Loads the <see langword="XmlDataDocument" /> from the specified <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
<param name="reader">The <see langword="XmlReader" /> containing the XML document to load.</param>
|
|
<exception cref="T:System.NotSupportedException">The XML being loaded contains entity references, and the reader cannot resolve entities.</exception>
|
|
</member>
|
|
</members>
|
|
</doc> |