Click or drag to resize

VGMembershipInstanceDeleteWindowsAccount Method (NTAccount, Boolean)

Deletes a windows account from 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 bool DeleteWindowsAccount(
	NTAccount account,
	bool forAllApplications
)

Parameters

account
Type: System.Security.PrincipalNTAccount
A NTAccount object represnting the windows account to delete.
forAllApplications
Type: SystemBoolean
true if the account must be deleted even the account is a member of another application, false otherwise

Return Value

Type: Boolean
true if the account was deleted; otherwise, false.
Exceptions
ExceptionCondition
ArgumentNullExceptionaccount is null.
VGIsMemberOfAnotherApplicationExceptionThe account is a member of an another application and the forAllApplications not equal to true. - or The account is a master administrator of the console.
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.
Remarks
This method is available only for the .Net framework version 2.0 or later
See Also