C# Class wmib.SystemUser

Show file Open project: benapetr/wikimedia-bot Class Usage Examples

Public Properties

Property Type Description
IsGlobal bool
Name string
Password string
Role string
UserName string

Public Methods

Method Description
SystemUser ( string role, string name, bool isglobal = false ) : System

Initializes a new instance of the wmib.SystemUser class.

Method Details

SystemUser() public method

Initializes a new instance of the wmib.SystemUser class.
public SystemUser ( string role, string name, bool isglobal = false ) : System
role string /// Role. ///
name string /// Name. ///
isglobal bool /// Isglobal. ///
return System

Property Details

IsGlobal public property

If user is global or not
public bool IsGlobal
return bool

Name public property

Regex
public string Name
return string

Password public property

Password of user
public string Password
return string

Role public property

Level
public string Role
return string

UserName public property

Username of user, this is used for interactive logins
public string UserName
return string