Class RegisterModel
Inheritance
RegisterModel
Assembly: Volo.Abp.Account.Pro.Public.Web.dll
Syntax
public class RegisterModel : AccountPageModel
Constructors
RegisterModel()
Declaration
Properties
ExternalLoginAuthSchema
Declaration
[BindProperty(SupportsGet = true)]
public string ExternalLoginAuthSchema { get; set; }
Property Value
Input
Declaration
[BindProperty]
public RegisterModel.PostInput Input { get; set; }
Property Value
IsExternalLogin
Declaration
[BindProperty(SupportsGet = true)]
public bool IsExternalLogin { get; set; }
Property Value
LocalLoginDisabled
Declaration
public bool LocalLoginDisabled { get; set; }
Property Value
ReturnUrl
Declaration
[BindProperty(SupportsGet = true)]
public string ReturnUrl { get; set; }
Property Value
ReturnUrlHash
Declaration
[BindProperty(SupportsGet = true)]
public string ReturnUrlHash { get; set; }
Property Value
UseCaptcha
Declaration
public bool UseCaptcha { get; set; }
Property Value
Methods
CheckSelfRegistrationAsync()
Declaration
protected virtual Task CheckSelfRegistrationAsync()
Returns
OnGetAsync()
Declaration
public virtual Task<IActionResult> OnGetAsync()
Returns
OnPostAsync()
Declaration
public virtual Task<IActionResult> OnPostAsync()
Returns
RegisterExternalUserAsync(ExternalLoginInfo, string)
Declaration
protected virtual Task<IdentityUser> RegisterExternalUserAsync(ExternalLoginInfo externalLoginInfo, string emailAddress)
Parameters
Returns
| Type |
Description |
| Task<IdentityUser> |
|
RegisterLocalUserAsync()
Declaration
protected virtual Task<IdentityUser> RegisterLocalUserAsync()
Returns
| Type |
Description |
| Task<IdentityUser> |
|
SetUseCaptchaAsync()
Declaration
protected virtual Task SetUseCaptchaAsync()
Returns
StoreConfirmUser(IdentityUser)
Declaration
protected virtual Task StoreConfirmUser(IdentityUser user)
Parameters
| Type |
Name |
Description |
| IdentityUser |
user |
|
Returns