> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.FindResults

# <a id="SuperOffice_WebApi_Data_FindResults" /> Class FindResults

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for 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.

```csharp theme={null}
public class FindResults : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[FindResults](SuperOffice.WebApi.Data.FindResults.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_FindResults__ctor" /> FindResults()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public FindResults()
```

## Properties

### <a id="SuperOffice_WebApi_Data_FindResults_ArchiveColumns" /> ArchiveColumns

Array of ColumnInfo column specifications

```csharp theme={null}
public virtual ArchiveColumnInfo[] ArchiveColumns { get; set; }
```

#### Property Value

[ArchiveColumnInfo](SuperOffice.WebApi.Data.ArchiveColumnInfo.md)\[]

### <a id="SuperOffice_WebApi_Data_FindResults_ArchiveRows" /> ArchiveRows

Array of archive list items, i.e., the service layer carrier for archive rows. These are the find results, represented as archive rows

```csharp theme={null}
public virtual ArchiveListItem[] ArchiveRows { get; set; }
```

#### Property Value

[ArchiveListItem](SuperOffice.WebApi.Data.ArchiveListItem.md)\[]

### <a id="SuperOffice_WebApi_Data_FindResults_RowCount" /> 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

```csharp theme={null}
public virtual int RowCount { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

## See Also

[FindAgent](SuperOffice.WebApi.Agents.FindAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.UserPreferenceStrings.FindResultDialog](/en/api/reference/webapi/SuperOffice.WebApi.Data.UserPreferenceStrings.FindResultDialog.md)
- [SuperOffice.WebApi.Agents.FindAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.FindAgent.md)
- [SuperOffice.WebApi.Agents.IFindAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IFindAgent.md)
- [Find](/en/api/reference/restful/agent/find_agent/find.md)
