A list for use in FieldValue objects, which tracks changes to itself.
Inheritance Hierarchy
kCura.Relativity.Client.DTOs.FieldValueList<T>
kCura.Relativity.Client.DTOs.MultiChoiceFieldValueList
kCura.Relativity.Client.DTOs.MultiCredentialFieldValueList
kCura.Relativity.Client.DTOs.MultiLineStringList
kCura.Relativity.Client.DTOs.MultiRelativityApplicationFieldValueList
kCura.Relativity.Client.DTOs.MultiUserFieldValueList
Namespace: kCura.Relativity.Client.DTOs
Assembly: kCura.Relativity.Client (in kCura.Relativity.Client.dll) Version: 640db774aa42dfbe1785add27fbb41844ec5c7d4
Syntax
public class FieldValueList<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection
Type Parameters
- T
- The type of elements in the list.
The FieldValueList<T> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | FieldValueList<T>() |
Create a new FieldValueList.
|
![]() | FieldValueList<T>(IEnumerable<T>) |
Create a new FieldValueList.
|
![]() | FieldValueList<T>(T[]) |
Create a new FieldValueList.
|
Properties
Name | Description | |
---|---|---|
![]() | Count |
Indicates the number of elements contained in the FieldValueList<T>.
|
![]() | IsReadOnly |
Gets a value indicating whether the FieldValueList<T> is read-only.
|
![]() | IsUpdated |
This property indicates whether this list has been updated, and needs to be sent back to the server when used in a request.
|
![]() | Item |
Gets or sets the value of the item at the specified index.
|
Methods
Name | Description | |
---|---|---|
![]() | Add |
Adds an item to the FieldValueList<T>.
|
![]() | Clear |
Removes all items from the FieldValueList<T>.
|
![]() | Contains |
Determines whether the FieldValueList<T>
contains a specific value.
|
![]() | CopyTo |
Copies the elements of the FieldValueList<T> to an Array, starting at a particular Array index.
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IndexOf |
Determines the index of a specific item in the FieldValueList<T>.
|
![]() | Insert |
Inserts an item to the FieldValueList<T> at the specified index.
|
![]() | Remove |
Removes the first occurrence of a specific object from the FieldValueList<T>.
|
![]() | RemoveAt |
Removes the FieldValueList<T> item at the specified index.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Operators
Name | Description | |
---|---|---|
![]() ![]() | Implicit(List<T> to FieldValueList<T>) |
An operator that will implicitly convert Lists to FieldValueLists when needed.
|
![]() ![]() | Implicit(FieldValueList<T> to List<T>) |
An operator that will implicitly convert FieldValueLists to Lists when needed.
|
See Also