PropertyAccessLevels

PropertyAccessLevels enumeration

Defines access levels for metadata properties.

[Flags]
public enum PropertyAccessLevels

Values

Name Value Description
Read 0 The property is read-only.
Update 1 It is possible to update the property using the UpdateProperties method.
Remove 2 The property can be removed through the RemoveProperties method.
Add 4 It is possible to update the property using the AddProperties method.
Full 7 Grants full access to the property.
AddOrUpdate 5 It is allowed to add and update the property. All other operations are restricted.

See Also