Deletes a user 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 DeleteUser(
	string username,
	bool forAllApplications
)
Visual Basic (Declaration)
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

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