Click or drag to resize

VGRolesInstanceCreateSharedRole Method (String, String, Guid, Guid)

Adds a new role to the repository.

Namespace:  Novalys.VisualGuard.Security.Membership
Assembly:  Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2019.1.831.19 (2019.1.0831.19)
Syntax
public VGRole CreateSharedRole(
	string roleName,
	string description,
	Guid permissionSetId,
	Guid applicationId
)

Parameters

roleName
Type: SystemString
The name of the role to create.
description
Type: SystemString
a short description of the role
permissionSetId
Type: SystemGuid
The repository id of the permission set assigned to the role. Empty when there is no permission set assigned to the role.
applicationId
Type: SystemGuid
The Id of the application where you want to create the specified roles.

Return Value

Type: VGRole
the role added to the repository.
Exceptions
ExceptionCondition
ArgumentNullExceptionroleName is null (Nothing in VB.Net).

-or-

applicationIdis null.
ArgumentExceptionroleName is empty or contains invalid chars ('\', '/', '?', '*', '%', ';', ''', '"', ':', '|', '[', ']', '+', '=', ',').

or

roleName is longer than 64 characters. or a role with the same name already exists in the repository.

or

permissionSetId does not exist in the repository fro the application.

or

applicationId does not exist in the repository.
SecurityExceptionThe current user has not enough privileges to use Membership API. The Membership access level of the application must be sufficient to allows this action or the 'Membership Manager' role must be granted to the user by using the Visual Guard console.
See Also