<PackageReference Include="Relativity.Shared.SDK" Version="1.8.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; }

Whether or not the current user has permission to view the given value

public T Value { get; set; }

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)

Returns the Value property for the value which is being secured.

public static Securable<T> op_Implicit(T value)

Initializes a new instance of the Securable<T> class. with the specified value which is being secured.