expressappframework-devexpress-dot-expressapp-dot-security-ed67c9a2.md
Contains values specifying access levels to an object.
Namespace : DevExpress.ExpressApp.Security
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public enum ObjectAccess
Public Enum ObjectAccess
| Name | Description |
|---|---|
NoAccess |
Represents an access level that does not allow anything. Its index is 0.
|
| Read |
Represents an access level that allows a user to read an object. Its index is 1.
|
| Write |
Represents an access level that allows a user to write an object. Its index is 2.
|
| Create |
Represents an access level that allows a user to create an object. Its index is 4.
|
| Delete |
Represents an access level that allowsa user to delete an object. Its index is 8.
|
| Navigate |
Represents an access level that allows a user to navigate to a View using the navigation control in the main window. Its index is 16.
|
| AllAccess |
Represents an access level to an object that includes reading, writing, creating, deleting and navigating via a navigation control. Its index is 31.
|
| ChangeAccess |
Represents an access level to an object that includes writing, creating and deleting. Its index is 14.
|
Members of the ObjectAccess enumeration specify all available access levels to an object. This enumeration is used when creating a permission to an object for a user in the Security System.
See Also