Deletes a user from the repository.

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

Syntax

C#
public override bool DeleteUser(
	string username,
	bool forAllApplications
)
Visual Basic
Public Overrides Function DeleteUser ( 
	username As String,
	forAllApplications As Boolean
) As Boolean

Parameters

username
Type: System..::..String
The name of the user to delete.
forAllApplications
Type: System..::..Boolean
true if the user must be deleted even the user is a member of another application, false otherwise

Return Value

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

Exceptions

ExceptionCondition
Novalys.VisualGuard.Security.Membership..::..VGIsMemberOfAnotherApplicationExceptionThe user is a memeber of an another application and the forAllApplications not equal to true.

See Also