Table of Contents

Enum PermissionLevel

Namespace
Dynamicweb.Security.Permissions
Assembly
Dynamicweb.Core.dll

Indicates how high a level of permission is allowed.

[Flags]
public enum PermissionLevel
Extension Methods

Fields

All = 1364

Allows everything.

Create = 84

Allows Read, Edit and Create.

Delete = 340

Allows Read, Edit, Create and Delete.

Edit = 20

Alows Read and Edit.

None = 1

Explicit deny all.

Read = 4

Lowest level of access. Allows read.

Remarks

Implicitly allows all levels below self. Read < Edit < Create < Delete

To top