コード例 #1
0
ファイル: AccountService.cs プロジェクト: eugenzyx/Estates
 /// <summary>Logs on the user.</summary>
 /// <param name="user">The user to log on.</param>
 public void LogOn(User user)
 {
     FormsAuthentication.SetAuthCookie(user.Login, true);
 }
コード例 #2
0
ファイル: SecurityService.cs プロジェクト: eugenzyx/Estates
 public string GetResetPasswordLink(User user)
 {
     throw new NotImplementedException();
 }