Visual Guard Class Library Documentation

VGMembershipInstance.ValidateUser Method 

Verifies that the supplied user name and password are valid.

public bool ValidateUser(
   String username,
   String password
);

Parameters

username
The name of the user to be validated.
password
The password for the specified user.

Return Value

true if the supplied user name and password are valid; otherwise, false.

Remarks

This method do not change the current user managed by Visual Guard. You must use the Authenticate method to change the current user.

This method will update the number of invalid password attempts and can lock out the user if the password is invalid.

Exceptions

Exception Type Condition
ArgumentNullException username or password is null.
ArgumentException username is empty or contains invalid chars ('\', '/', '?', '*', '%', ';', ''', '"', ':', '|', '[', ']', '+', '=', ',').

or

user or password is longer than 64 characters.
VGConfigurationException The configuration file is not valid

or

A problem occurs during the connection to the repository.

or

The version of the repository or the version of the permissions is not supported by the application.
NotSupportedException

the repository does not support the VisualGuard or Database mode.

See Also

VGMembershipInstance Class | Novalys.VisualGuard.Security.Membership Namespace