1. GroupDocs.Metadata
  2. /
  3. GroupDocs.Metadata for .NET
  4. /
  5. GroupDocs.Metadata.Common
  6. /
  7. PropertyAccessLevels

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