C# 클래스 Retro_Indie_Spiel_Webserver.Controllers.AccountController

Controller für die Verwaltung der Accounts.
상속: Controller
파일 보기 프로젝트 열기: Vusur/HfTL_SW_Projekt 1 사용 예제들

공개 메소드들

메소드 설명
AccountController ( ) : System

Leerer Konstruktor.

AccountController ( ApplicationUserManager userManager, ApplicationSignInManager signInManager ) : System

Konstruktor mit userManager und signInManager.

Index ( AccountIndexViewModel model ) : Task

Get: /Account Einloggen und Registrieren eines Users.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Methode für das Löschen des Controllers.

비공개 메소드들

메소드 설명
AddErrors ( Microsoft.AspNet.Identity.IdentityResult result ) : void

Aus dem Result die Error dem Model hinzufügen.

메소드 상세

AccountController() 공개 메소드

Leerer Konstruktor.
public AccountController ( ) : System
리턴 System

AccountController() 공개 메소드

Konstruktor mit userManager und signInManager.
public AccountController ( ApplicationUserManager userManager, ApplicationSignInManager signInManager ) : System
userManager ApplicationUserManager ApplicationUserManager
signInManager ApplicationSignInManager ApplicationSignInManager
리턴 System

Dispose() 보호된 메소드

Methode für das Löschen des Controllers.
protected Dispose ( bool disposing ) : void
disposing bool Boolean ob der UserManager und SignInManager gelöscht werden soll.
리턴 void

Index() 공개 메소드

Get: /Account Einloggen und Registrieren eines Users.
public Index ( AccountIndexViewModel model ) : Task
model Retro_Indie_Spiel_Webserver.Models.AccountIndexViewModel AccountIndexViewModel bestehend aus Email, Name, Password, confirmPassword und md5Hash.
리턴 Task