Collections of rows of a table. More...
Inherits IEnumerable< Row >.
Public Member Functions | |
Row | InPlaceFetch (long row) |
Destructively retrieve the row'th row into a variable shared across calls. More... | |
Row | FetchInto (long row, ref Row result) |
Destructively retrieve the row'th row into a variable shared across calls. More... | |
IEnumerator< Row > | GetEnumerator () |
Retreive an enumerator for the rows of this table. More... | |
IEnumerator< Row > | GetEnumeratorForPolicy (IDownloadPolicy policy) |
Retreive an enumerator for the rows of this table. More... | |
IEnumerator< Row > | InPlaceEnumeration () |
Retrieves an enumerator that will destructively update the underlying Row upon iteration. More... | |
IEnumerator< Row > | InPlaceEnumeration (IDownloadPolicy policy) |
Retrieves an enumerator that will destructively update the underlying Row upon iteration. More... | |
Properties | |
IDownloadPolicy | Policy [get, set] |
Policy object used to decide how much information to download while subscripting or enumerating. | |
long | Count [get] |
Total number of rows in the table. | |
Row | this[long row] [get] |
Get a Row by index. More... | |
Collections of rows of a table.
IEnumerator<Row> TenTenSDK.RowSet.GetEnumerator | ( | ) |
Retreive an enumerator for the rows of this table.
IEnumerator<Row> TenTenSDK.RowSet.GetEnumeratorForPolicy | ( | IDownloadPolicy | policy | ) |
Retreive an enumerator for the rows of this table.
policy | Object describing how to download data during enumeration. |
IEnumerator<Row> TenTenSDK.RowSet.InPlaceEnumeration | ( | ) |
IEnumerator<Row> TenTenSDK.RowSet.InPlaceEnumeration | ( | IDownloadPolicy | policy | ) |
Retrieves an enumerator that will destructively update the underlying Row upon iteration.
policy | Object describing how to download data during enumeration. |
Row TenTenSDK.RowSet.InPlaceFetch | ( | long | row | ) |