Show / Hide Table of Contents

Class Dependency

Represents an object dependent on another object selected for deletion.

Inheritance
System.Object
Dependency
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 Dependency

Properties

| Improve this Doc View Source

Action

Gets or sets a string indicating whether a dependent object is deleted or unlinked when a specific object is deleted.

Declaration
public string Action { get; set; }
Property Value
Type Description
System.String
Remarks

For example, this will have a value of "Delete" if the dependent object will be be deleted, or "Unlink" if the dependent object will be modified.

| Improve this Doc View Source

Connection

Gets or sets a string indicating whether the object for deletion is a parent, or a field on a single or multiple object field.

Declaration
public Securable<string> Connection { get; set; }
Property Value
Type Description
Securable<System.String>
Remarks

For example, the Connection property has a value of Parent when the dependent object is a child, and a value of Field: {field name} when the dependent object is a field on a single or multiple object field.

| Improve this Doc View Source

Count

Gets or sets the number of objects with a dependency on a specific object selected for deletion.

Declaration
public Securable<int?> Count { get; set; }
Property Value
Type Description
Securable<System.Nullable<System.Int32>>
| Improve this Doc View Source

HierarchicLevel

Gets or sets the degree of dependency between object types.

Declaration
public int HierarchicLevel { get; set; }
Property Value
Type Description
System.Int32
Remarks

The hierarchical level helps to differentiate between the fields and views associated with a child object type and those directly associated with the object for deletion. For example, an object type selected for deletion has a child object type. The fields and views associated with the child object type have a dependency with a hierarchical level of 1. The fields and views directly associated with this object for deletion have a hierarchical level of 0.

| Improve this Doc View Source

ObjectType

Gets or sets a string indicating the type of the Relativity object dependent on the object selected for deletion.

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