Table of Contents

Class AccountPassword

Namespace
Kentico.Xperience.Admin.Base.UIPages
Assembly
Kentico.Xperience.Admin.Base.dll

Account password page.

public sealed class AccountPassword : ModelEditPage<AccountPasswordModel>, IPage
Inheritance
object
AccountPassword
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 IFormItemCollectionProvider
formDataBinder IFormDataBinder
identityErrorDescriber IdentityErrorDescriber
authenticatedUserAccessor IAuthenticatedUserAccessor
signInManager AdminSignInManager
userManager UserManager<AdminApplicationUser>
adminIdentityOptions IOptions<AdminIdentityOptions>

Properties

Model

Gets edited model that represents the form.

protected override AccountPasswordModel Model { get; }

Property Value

AccountPasswordModel

Methods

ConfigurePage()

Set up page's configuration. Configures the submit action.

public override Task ConfigurePage()

Returns

Task

GetFormItems()

Examines properties of Model and returns corresponding IFormItems.

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 AccountPasswordModel

Model 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.