Specifies access to Membership api

Namespace: Novalys.VisualGuard.Security
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
[SerializableAttribute]
[FlagsAttribute]
public enum VGMembershipPermissionAccess
Visual Basic
<SerializableAttribute>
<FlagsAttribute> 
Public Enumeration VGMembershipPermissionAccess

Members

Member nameValueDescription
NoAccess0 No access to Membership API
Read1 Ability to use Membership API to read information about the users of the application.
AddUser2 Ability to use Membership API to create a new user and assign the default role of the application
Delete4 Ability to use Membership API to delete a users from the list of member of the application
Update8 Ability to use Membership API to update a user
AssignRoles16 Ability to use Membership API to grant or revoke a role to a user
AssignMembershipPermissions32 Ability to use Membership API to grant membership permission to a user.
AddRole64 Ability to add a role to the application.
UpdateRole128 Ability to modify an existing role.
DeleteRole256 Ability to delete an existing role.
AllAccess511 Ability to use Membership API to edit, create, delete and assign roles

See Also