Deletes a role specified by its name from the repository.

Namespace:  Novalys.VisualGuard.Security.WebForm
Assembly:  Novalys.VisualGuard.Security.WebForm (in Novalys.VisualGuard.Security.WebForm.dll) Version: 3.2.912.1 (3.2.912.01)

Syntax

C#
public override bool DeleteRole(
	string roleName,
	bool throwOnPopulatedRole
)
Visual Basic (Declaration)
Public Overrides Function DeleteRole ( _
	roleName As String, _
	throwOnPopulatedRole As Boolean _
) As Boolean

Parameters

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

Return Value

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

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionthe value of roleName is null (Nothing in VB.Net).
System..::.ArgumentExceptionthe value of roleName is an empty string or contains invalid chars ('\', '/', '?', '*', '%', ';', ''', '"', ':', '|', '[', ']', '+', '=', ',').
System..::.InvalidOperationExceptionthe role is marked as a built-in 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