Deletes a windows account 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#
public bool DeleteWindowsAccount(
	NTAccount account
)
Visual Basic
Public Function DeleteWindowsAccount ( 
	account As NTAccount
) As Boolean

Parameters

account
Type: System.Security.Principal..::..NTAccount
A NTAccount object represnting the windows account to delete.

Return Value

Type: Boolean
true if the account was deleted; otherwise, false.

Remarks

This method deletes the user even if the account is a member of another application.

This method is available only for the .Net framework version 2.0 or later

Exceptions

ExceptionCondition
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