For Babelfish Release 1.12.3.10

VisibilityOption Enumeration

Options to set how visible data may be. Commonly used in or visibility.

Definition

Namespace: Scopos.BabelFish.DataModel.Common
Assembly: BabelFish (in BabelFish.dll) Version: 1.12.3.10+306d87ab71d1aa659d07c082495f8eddb091ca7b
C#
public enum VisibilityOption

Members

PRIVATE1 Only the owner of the data may see this value.

This is the least visible option.

PROTECTED2 Only the owner of the data and people in a sharing relationship with the owner (e.g. a Coach) may see this value.

This is the second least visible option. Only PRIVATE is less visible.

INTERNAL3 Only the owner of the data and people in a sharing relationship with the owner (e.g. a Coach) may see this value. The value may also be used to calculate derived attribute values.

This is the second highest visible option. Only PUBLIC is more visible.

PUBLIC4 Globally readable, everyone may see this value.

This is the most visible option.

Extension Methods

Description Returns the Description attribute of an enum. If Description is not an attribute returns the .toString() value.
(Defined by EnumHelper)
GetAttributeOfTypeT Gets an attribute on an enum field value
(Defined by EnumHelper)

See Also