ResultTable Members
Include Protected Members
Include Inherited Members
Represents a distinct collection of search results returned for a query.
The ResultTable type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ResultTable() | This member is reserved for internal use and is not intended to be used directly from your code. | |
ResultTable(ResultTableInternal, Int32) | This member is reserved for internal use and is not intended to be used directly from your code. | |
ResultTable(DataTable, ResultType, Int32, Int32, Boolean, Int32) | Initializes a new instance of the ResultTable class. |
Top
Properties
Name | Description | |
---|---|---|
Depth | Gets a value indicating the depth of nesting for the current row. | |
FieldCount | Gets the number of columns returned in the search results. | |
IsClosed | Gets a Boolean value indicating if the ResultTable is closed. | |
IsTotalRowsExact | Gets a Boolean value indicating whether the value returned for the TotalRows property is an approximation, or the exact number of rows. | |
Item[Int32] | Gets a search result from the collection, based on the specified index. | |
Item[String] | Gets a search result from the collection, based on the specified row name. | |
RecordsAffected | Gets the number of rows changed. | |
ResultType | Gets the type of search results in the result table. | |
RowCount | Gets the number of search results returned in the result table. | |
Table | Gets or sets the DataTable containing the search results. | |
TotalRows | Gets the number of search results returned in the result table. | |
TotalRowsIncludingDuplicates | Gets the number of search results including duplicate results returned in the result table. |
Top
Methods
Name | Description | |
---|---|---|
Close | Closes the result table. | |
Dispose | Releases the resources for the result table. | |
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetBoolean | Returns the value of the specified column as a Boolean. | |
GetByte | Returns the 8-bit unsigned integer value of the specified column. | |
GetBytes | Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset. | |
GetChar | Returns the character value of the specified column. | |
GetChars | Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset. | |
GetData | Returns an IDataReader for the specified column. | |
GetDataTypeName | Returns the data type information for the specified column. | |
GetDateTime | Returns the date and time data value for the specified column. | |
GetDateTimeUtc | Returns the date and time in coordinated universal time (UTC) for the specified column. | |
GetDecimal | Returns the fixed-position numeric value for the specified column. | |
GetDouble | Returns the double-precision floating point number for the specified column. | |
GetFieldType | Returns the type information for the specified column. | |
GetFloat | Returns the single-precision floating point number for the specified column. | |
GetGuid | Returns the GUID value for the specified column. | |
GetHashCode | (Inherited from Object.) | |
GetInt16 | Returns the 16-bit signed integer value for the specified column. | |
GetInt32 | Returns the 32-bit signed integer value for the specified column. | |
GetInt64 | Returns the 64-bit signed integer value for the specified column. | |
GetName | Returns the name for the specified column. | |
GetOrdinal | Returns the index for the specified column. | |
GetSchemaTable | Returns a DataTable object that describes the column metadata of the result table. | |
GetString | Returns the string value of the specified column. | |
GetType | (Inherited from Object.) | |
GetValue | Returns the value of the specified field. | |
GetValues | Populates an array of objects with the column values for the current search result. | |
IsDBNull | Return whether the specified column is set to a null reference (Nothing in Visual Basic). | |
MemberwiseClone | (Inherited from Object.) | |
NextResult | Advances to the next result set. | |
Read | Advances to the next search result row. | |
ToString | (Inherited from Object.) |
Top