Show / Hide Table of Contents

Class ActionResultsQueryResponse

Represents the results that are returned as part of an ActionQueryRequest.

Inheritance
System.Object
ActionResultsQueryResponse
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class ActionResultsQueryResponse

Properties

| Improve this Doc View Source

Columns

Gets or sets the list of columns returned.

Declaration
public List<ActionColumn> Columns { get; set; }
Property Value
Type Description
System.Collections.Generic.List<ActionColumn>

The columns.

| Improve this Doc View Source

CurrentStartIndex

Gets or sets the starting index for a result item in a query result set.

Declaration
public int CurrentStartIndex { get; set; }
Property Value
Type Description
System.Int32

The index.

| Improve this Doc View Source

ResultCount

Gets or sets the number of result rows returned by the current query.

Declaration
public int ResultCount { get; set; }
Property Value
Type Description
System.Int32

The count.

| Improve this Doc View Source

Rows

Gets or sets the list of objects in the read results from the query.

Declaration
public List<ActionResultRow> Rows { get; set; }
Property Value
Type Description
System.Collections.Generic.List<ActionResultRow>

The rows.

| Improve this Doc View Source

TotalCount

Gets or sets the total number of rows returned by the query.

Declaration
public int TotalCount { get; set; }
Property Value
Type Description
System.Int32

The count.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX