Class AccountPassword
Account password page.
public sealed class AccountPassword : ModelEditPage<AccountPasswordModel>, IPage
- Inheritance
-
objectAccountPassword
- Implements
- Inherited Members
- Extension Methods
Constructors
AccountPassword(IFormItemCollectionProvider, IFormDataBinder, IdentityErrorDescriber, IAuthenticatedUserAccessor, AdminSignInManager, UserManager<AdminApplicationUser>, IOptions<AdminIdentityOptions>)
Creates new instance of AccountPassword
public AccountPassword(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IdentityErrorDescriber identityErrorDescriber, IAuthenticatedUserAccessor authenticatedUserAccessor, AdminSignInManager signInManager, UserManager<AdminApplicationUser> userManager, IOptions<AdminIdentityOptions> adminIdentityOptions)
Parameters
formItemCollectionProvider
IFormItemCollectionProviderformDataBinder
IFormDataBinderidentityErrorDescriber
IdentityErrorDescriberauthenticatedUserAccessor
IAuthenticatedUserAccessorsignInManager
AdminSignInManageruserManager
UserManager<AdminApplicationUser>adminIdentityOptions
IOptions<AdminIdentityOptions>
Properties
Model
Gets edited model that represents the form.
protected override AccountPasswordModel Model { get; }
Property Value
Methods
ConfigurePage()
Set up page's configuration. Configures the submit action.
public override Task ConfigurePage()
Returns
- Task
GetFormItems()
protected override Task<ICollection<IFormItem>> GetFormItems()
Returns
- Task<ICollection<IFormItem>>
Remarks
Override the method in case when additional set-up of form components is required.
ProcessFormData(AccountPasswordModel, ICollection<IFormItem>)
Stores the model
and creates a response for the Submit(FormSubmissionCommandArguments) command.
protected override Task<ICommandResponse> ProcessFormData(AccountPasswordModel model, ICollection<IFormItem> formItems)
Parameters
model
AccountPasswordModelModel to be stored.
formItems
ICollection<IFormItem>Form items with bound component values.
Returns
- Task<ICommandResponse>
The response to be used for the Submit(FormSubmissionCommandArguments) command.