Class QueryResult<T>
Represents the results of the Query.
Inheritance
System.Object
QueryResult<T>
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 QueryResult<T>
Type Parameters
Name | Description |
---|---|
T | The type of the entities queried. |
Properties
| Improve this Doc View SourceMessage
Gets or sets message which contains the error information if the read operation failed.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
QueryToken
Gets or sets the value which indicates whether more results are available than initially specified in the length property, or that result count exceeds the default query limit. You can retrieve the additional folders by using the QuerySubset.
Declaration
public string QueryToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Results
Gets or sets the list of individual read results from the called operation.
Declaration
public List<QuerySingleResult<T>> Results { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<QuerySingleResult<T>> |
Success
Gets or sets a value indicating whether the overall set of read operations was a success.
Declaration
public bool Success { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
TotalCount
Gets or sets the total numer of Artifacts returned by the Query.
Declaration
public int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |