Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool createUser(string, string, bool)

Declaration

protected abstract bool createUser(
    string username,
    string passwordHash,
    bool canCreateUsers
)

Summary

When overridden in a derived class, creates a new user.

Parameters

stringusername Username for the new user.
stringpasswordHash Hashed password for the new user.
boolcanCreateUsers Specifies whether the new user has the right to create new users.

Returns

true if a new user was created; false if username is already taken.