Class User
A User class that wraps a Phoenix user for display and binding to the User Management View.
Inheritance
System.Object
User
Namespace: Phoenix.Users
Assembly: Phoenix.Plugin.Users.dll
Syntax
public class User : BindableBase
Constructors
View SourceUser(PhoenixUser)
Initializes a new instance of the User class.
Declaration
public User(PhoenixUser user)
Parameters
Type | Name | Description |
---|---|---|
PhoenixUser | user | The PhoenixUser. |
Properties
View SourceIsDefaultSignIn
Gets or sets a value indicating whether or not this user is going to be used for default sign ins.
Declaration
public bool IsDefaultSignIn { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSelected
Gets or sets a value indicating whether or not this user is selected for an action.
Declaration
public bool? IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
PhoenixUser
Gets the wrapped Phoenix user.
Declaration
public PhoenixUser PhoenixUser { get; }
Property Value
Type | Description |
---|---|
PhoenixUser |
PotentialPassword
Gets or sets the potential password.
Declaration
public string PotentialPassword { get; set; }
Property Value
Type | Description |
---|---|
System.String |