Class FieldRefValuePair
Represents a key or reference to a Field object and the value currently assigned to it.
Inheritance
System.Object
FieldRefValuePair
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.Api.ObjectManagement
Assembly: Relativity.Testing.Framework.Api.dll
Syntax
public class FieldRefValuePair
Remarks
FieldType | Expected value type |
---|---|
Fixed-Length Text | string |
Long Text | string |
Date | DateTime |
Whole Number | int? |
Decimal | decimal? |
Currency | decimal? |
Yes/No | bool? |
Single Choice | ChoiceRef |
Multiple Choice | IEnumerable< ChoiceRef> |
User | User(The ArtifactID must be set on this object.) |
File | FileRef |
Single Object | RelativityObjectRef |
Multiple Object | IEnumerable< RelativityObjectRef> |
Properties
| Improve this Doc View SourceField
Gets or sets a FieldRef object.
Declaration
public FieldRef Field { get; set; }
Property Value
Type | Description |
---|---|
FieldRef |
Value
Gets or sets the value assigned to a field.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |