<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="10.3.0" />

Securable<T>

public class Securable<T>
Generic class that indicates whether or not the given value is secured from the current user.
public bool Secured { get; set; }

Gets or sets a value indicating whether whether or not the current user has permission to view the given value.

public T Value { get; set; }

Gets or sets the value that may or may not be secured.

public Securable()

Initializes a new instance of the Securable<T> class.

public Securable(T value)

Initializes a new instance of the Securable<T> class.

public static T op_Explicit(Securable<T> value)

public static Securable<T> op_Implicit(T value)