Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool getUser(ref string, out string, out bool)

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 stringusername 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 stringpasswordHash Receives the password hash for the user.
out boolcanCreateUsers 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.