Class NSArchiveListResult
Header/Detail variant of archive result, with a Row Count plus the actual rows. Future extensions may include other header data on the same level as the RowCount.
Constructors
NSArchiveListResult()
Initializes a new instance of the NSArchiveListResult class.
Declaration
NSArchiveListResult Methods
GetRowCount()
Declaration
Integer GetRowCount() Examples
NSArchiveListResult thing;
Integer rowCount = thing.GetRowCount();
Returns
| Type | Description |
| Integer | Count of rows, independent of paging. |
GetRows()
Declaration
NSArchiveListItem[] GetRows() Examples
NSArchiveListResult thing;
NSArchiveListItem[] rows = thing.GetRows();
Returns
| Type | Description |
| NSArchiveListItem[] | The actual rows, according to the paging info, of the result. |
SetRowCount(Integer)
Declaration
Void SetRowCount(Integer rowCount) Examples
NSArchiveListResult thing;
Integer rowCount;
thing.SetRowCount(rowCount);
Parameters
| Type | Name | Description |
| Integer | rowCount | Count of rows, independent of paging. |
Returns
| Type | Description |
| Void |
SetRows(NSArchiveListItem[])
Declaration
Void SetRows(NSArchiveListItem[] rows) Examples
NSArchiveListResult thing;
NSArchiveListItem[] rows;
thing.SetRows(rows);
Parameters
| Type | Name | Description |
| NSArchiveListItem[] | rows | The actual rows, according to the paging info, of the result. |
Returns
| Type | Description |
| Void |