<PackageReference Include="Relativity.Identity.SDK" Version="2.6.2" />

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()

Public constructor

public Securable(T value)

Constructor with specified secured value

public static T op_Explicit(Securable<T> value)

Implicityly convert a Securable object to its base type

public static Securable<T> op_Implicit(T value)

Implicitly convert an object to a securable object