Class FindResults
Result carrier for the Find operation. It contains a set of column specifications, and a set of row, where each row contains the columns. The row set is the result of carrying out some search operation.
Carrier object for FindResults. Services for the FindResults Carrier is available from the Find Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class FindResults : Carrier
Constructors
FindResults()
Default constructor
Declaration
public FindResults()
See Also
Properties
ArchiveColumns
Array of ColumnInfo column specifications
Declaration
[DataMember]
public virtual ArchiveColumnInfo[] ArchiveColumns { get; set; }
Property Value
Type | Description |
---|---|
ArchiveColumnInfo[] |
See Also
ArchiveRows
Array of archive list items, i.e., the service layer carrier for archive rows. These are the find results, represented as archive rows
Declaration
[DataMember]
public virtual ArchiveListItem[] ArchiveRows { get; set; }
Property Value
Type | Description |
---|---|
ArchiveListItem[] |
See Also
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
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. |