Show / Hide Table of Contents

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 Archive Agent.
Inheritance
object
ArchiveListResult
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class ArchiveListResult : Carrier

Constructors

ArchiveListResult()

Default constructor

Declaration
public ArchiveListResult()
See Also
IArchiveAgent

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
[DataMember]
public virtual int RowCount { get; set; }
Property Value
Type Description
int
See Also
IArchiveAgent

Rows

The actual rows, according to the paging info, of the result. See RowCount for a paging-independent count estimate

Declaration
[DataMember]
public virtual ArchiveListItem[] Rows { get; set; }
Property Value
Type Description
ArchiveListItem[]
See Also
IArchiveAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IArchiveAgent

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.

See Also
IArchiveAgent

See Also

IArchiveAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top