Table of Contents

Class RedirectEdit

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

Page for editing a redirect for a web page.

[UIPageLocation(PageLocationEnum.SidePanel)]
[UINavigation(false)]
[UIBreadcrumbs(false)]
[UIEvaluatePermission("View")]
public sealed class RedirectEdit : ModelEditPage<RedirectEditModel>, IPage
Inheritance
object
RedirectEdit
Implements
Inherited Members
Extension Methods

Constructors

RedirectEdit(IFormDataBinder, IServiceProvider)

Initializes a new instance of the RedirectEdit class.

public RedirectEdit(IFormDataBinder formDataBinder, IServiceProvider serviceProvider)

Parameters

formDataBinder IFormDataBinder
serviceProvider IServiceProvider

Properties

ChannelApplicationIdentifier

Application identifier.

[PageParameter(typeof(WebPagesApplicationModelBinder), typeof(WebPagesApplication))]
public WebPagesApplicationUrlIdentifier ChannelApplicationIdentifier { get; set; }

Property Value

WebPagesApplicationUrlIdentifier

Model

Gets edited model that represents the form.

protected override RedirectEditModel Model { get; }

Property Value

RedirectEditModel

WebPageIdentifier

Web page identifier composed of web page ID and language ID.

[PageParameter(typeof(WebPageUrlIdentifierPageModelBinder), typeof(WebPageLayout))]
public WebPageUrlIdentifier WebPageIdentifier { get; set; }

Property Value

WebPageUrlIdentifier

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.

InitializeContext()

Initializes form context.

protected override Task<IFormContext> InitializeContext()

Returns

Task<IFormContext>

ProcessFormData(RedirectEditModel, ICollection<IFormItem>)

Stores the model and creates a response for the Submit(FormSubmissionCommandArguments) command.

protected override Task<ICommandResponse> ProcessFormData(RedirectEditModel model, ICollection<IFormItem> formItems)

Parameters

model RedirectEditModel

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.

Submit(FormSubmissionCommandArguments)

Handles the form submit command.

public override Task<ICommandResponse> Submit(FormSubmissionCommandArguments args)

Parameters

args FormSubmissionCommandArguments

Form submission arguments.

Returns

Task<ICommandResponse>

Returns the form submission result.

Remarks

See Also