Removes the specified user from the specified list of roles.

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("Use RemoveUsersFromRoles(ICollection<VGMembershipUser> users, ICollection<VGRole> roles) method")]
public void RemoveUserFromRoles(
	NTAccount account,
	string[] roleNames
)
Visual Basic
<ObsoleteAttribute("Use RemoveUsersFromRoles(ICollection<VGMembershipUser> users, ICollection<VGRole> roles) method")> 
Public Sub RemoveUserFromRoles ( 
	account As NTAccount,
	roleNames As String()
)

Parameters

account
Type: System.Security.Principal..::..NTAccount
The Windows account to remove from the specified role.
roleNames
Type: array<System..::..String>[]()[][]
The list of roles to remove the specified user from.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionroleNames is null or one of the roles is null.

-or-

account is null.
System..::..ArgumentExceptionOne of the roles is an empty string.

-or-

roleNames contains a duplicate element.

-or-

One of roles was not found in the repository for the application.

-or-

account was not found in the repository for the application or cannot be converted to SID.
System.Security..::..SecurityExceptionThe current user does not have 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