Fixed help files.
This commit is contained in:
commit
b8f912cc79
1543 changed files with 395123 additions and 0 deletions
42
Core/LocalUserInfo.cs
Normal file
42
Core/LocalUserInfo.cs
Normal file
|
@ -0,0 +1,42 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using ScrewTurn.Wiki.PluginFramework;
|
||||
|
||||
namespace ScrewTurn.Wiki {
|
||||
|
||||
/// <summary>
|
||||
/// Stores a Local UserInfo object.
|
||||
/// </summary>
|
||||
public class LocalUserInfo : UserInfo {
|
||||
|
||||
private string passwordHash;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <b>LocalUserInfo</b> class.
|
||||
/// </summary>
|
||||
/// <param name="username">The Username.</param>
|
||||
/// <param name="displayName">The display name.</param>
|
||||
/// <param name="email">The Email.</param>
|
||||
/// <param name="active">Specifies whether the Account is active or not.</param>
|
||||
/// <param name="dateTime">The creation DateTime.</param>
|
||||
/// <param name="provider">The Users Storage Provider that manages the User.</param>
|
||||
/// <param name="passwordHash">The Password Hash.</param>
|
||||
public LocalUserInfo(string username, string displayName, string email, bool active, DateTime dateTime,
|
||||
IUsersStorageProviderV30 provider, string passwordHash)
|
||||
: base(username, displayName, email, active, dateTime, provider) {
|
||||
this.passwordHash = passwordHash;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Password Hash.
|
||||
/// </summary>
|
||||
public string PasswordHash {
|
||||
get { return passwordHash; }
|
||||
set { passwordHash = value; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue