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 SourceArtifact
Gets or sets the artifact result.
Declaration
public T Artifact { get; set; }
Property Value
Type | Description |
---|---|
T |
Message
Gets or sets the message which provides information about the failure.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
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> |