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 SourceColumns
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. |
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. |
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. |
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. |
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. |