Declaration
protected abstract bool getUser(
ref string username,
out string passwordHash,
out bool canCreateUsers
)
Summary
When overridden in a derived class, retrieves the username and password hash of a user.
Parameters
ref string | username |
Identifies the user to be verified, and passes out the user’s correct username. (For example, if usernames are
case-insensitive, the name is changed to the correct capitalization.) |
out string | passwordHash |
Receives the password hash for the user. |
out bool | canCreateUsers |
Receives a value indicating whether this user has the right to create new users. |
Returns
true
if the user exists;
false
otherwise.
Remarks
If the user does not exist, the overridden method must return
false
and not modify
username.