<PackageReference Include="Relativity.Server.Utility.SDK" Version="5000.0.0" />

LiteralValue

public class LiteralValue : IComparable
A value to be stored in a database.
public enum DataTypeEnum

The possible data types a LiteralValue could take.

public DataTypeEnum DataType { get; set; }

Gets or sets the type of this LiteralValue.

public bool IsUnicode { get; set; }

Gets or sets an indicator specifying whether or not this LiteralValue is unicode.

public string Value { get; set; }

Gets or sets the value of this LiteralValue.

public LiteralValue()

Initializes a new, empty, LiteralValue.

public LiteralValue(string value)

Initializes a new LiteralValue backed by the provided value.

public LiteralValue(string value, DataTypeEnum dataType)

Initializes a new LiteralValue backed by the provided value.

public int CompareTo(object obj)

Compares the current LiteralValue with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.