Class RedirectEdit
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
-
objectRedirectEdit
- 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
IFormDataBinderserviceProvider
IServiceProvider
Properties
ChannelApplicationIdentifier
Application identifier.
[PageParameter(typeof(WebPagesApplicationModelBinder), typeof(WebPagesApplication))]
public WebPagesApplicationUrlIdentifier ChannelApplicationIdentifier { get; set; }
Property Value
Model
Gets edited model that represents the form.
protected override RedirectEditModel Model { get; }
Property Value
WebPageIdentifier
Web page identifier composed of web page ID and language ID.
[PageParameter(typeof(WebPageUrlIdentifierPageModelBinder), typeof(WebPageLayout))]
public WebPageUrlIdentifier WebPageIdentifier { get; set; }
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.
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
RedirectEditModelModel 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
FormSubmissionCommandArgumentsForm submission arguments.
Returns
- Task<ICommandResponse>
Returns the form submission result.
Remarks
The default implementation calls the SubmitInternal(FormSubmissionCommandArguments, ICollection<IFormItem>, IFormFieldValueProvider) method.
- See Also