Class ArchiveListResult
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
Carrier object for ArchiveListResult. Services for the ArchiveListResult Carrier is available from the IArchiveAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ArchiveListResult : Carrier
Constructors
ArchiveListResult()
Default constructor
Declaration
public ArchiveListResult()
See Also
Properties
RowCount
Count of rows, independent of paging. If you order up page 1 with page size 50, the row count may still be 279, that being the number of rows that would have been returned in a paging-off situation
Declaration
public virtual int RowCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Rows
The actual rows, according to the paging info, of the result. See RowCount for a paging-independent count estimate
Declaration
public virtual ArchiveListItem[] Rows { get; set; }
Property Value
Type | Description |
---|---|
ArchiveListItem[] |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |