Show / Hide Table of Contents

Class QuerySingleResult<T>

Represents the single result of the query.

Inheritance
System.Object
QuerySingleResult<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 QuerySingleResult<T>
Type Parameters
Name Description
T

The type of entity result.

Properties

| Improve this Doc View Source

Artifact

Gets or sets the artifact result.

Declaration
public T Artifact { get; set; }
Property Value
Type Description
T
| Improve this Doc View Source

Message

Gets or sets the message which provides information about the failure.

Declaration
public string Message { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Success

Gets or sets a value indicating whether the operation was a success.

Declaration
public bool Success { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

WarningMessages

Gets or sets the message which provides information about the warnings.

Declaration
public List<string> WarningMessages { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX