Deletes a role specified by its repository id from the repository.

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

Syntax

C#
[ObsoleteAttribute("This class is obsolete now, plz use VGSecurityManager.Runtime.Roles", 
	true)]
public static bool DeleteRole(
	Guid roleId,
	bool throwOnPopulatedRole
)
Visual Basic
<ObsoleteAttribute("This class is obsolete now, plz use VGSecurityManager.Runtime.Roles", 
	true)> 
Public Shared Function DeleteRole ( 
	roleId As Guid,
	throwOnPopulatedRole As Boolean
) As Boolean

Parameters

roleId
Type: System..::..Guid
the repository id of the role to delete.
throwOnPopulatedRole
Type: System..::..Boolean
If true, throws an exception if roleName has one or more members.

Return Value

Type: Boolean
true if the role was deleted from the repository; otherwise; false.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionthe role is marked as a built-in role or is a shared role.

-or-

the role has one or more members and throwOnPopulatedRole is true.
System.Security..::..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