Skip to main content
.NET 6.0+

SecurityOperations Fields

Declares string constants specifying security operation names and their delimiters.
Name Description
Create Gets the “Create” operation name. This operation is applied to type permissions only. To check the permission to add an object to a nested collection, use “Write” instead.
CRUDAccess Gets the semicolon-separated list of “Create”, “Read”, “Write”, and “Delete” operation names.
Delete Gets the “Delete” operation name. This operation is applied to type permissions only. To check the permission to remove an object from a nested collection, use “Write” instead.
Delimiter Gets the “;” delimiter used in security operation lists.
FullAccess Gets the semicolon-separated list of “Create”, “Read”, “Write”, “Delete” and “Navigate” operation names.
FullObjectAccess Gets the semicolon-separated list of “Read”, “Write”, “Delete” and “Navigate” operation names.
Navigate Gets the “Navigate” security operation name. “Navigate” does not imply the permission to “Read”.
Read Gets the “Read” security operation name.
ReadOnlyAccess Gets the semicolon-separated list of “Read” and “Navigate” operation names.
ReadWriteAccess Gets the semicolon-separated list of “Read” and “Write” operation names.
Write Gets the “Write” operation name. When this operation is requested for a collection property, it implies adding or removing collection objects and does not mean object modifications.
See Also