Class HeadlessChannelApiKeysEdit
Headless channel API key edit page.
[UIEvaluatePermission("ManageHeadlessTokens")]
public sealed class HeadlessChannelApiKeysEdit : InfoEditPage<HeadlessTokenInfo>, IPage
- Inheritance
-
objectHeadlessChannelApiKeysEdit
- Implements
- Inherited Members
- Extension Methods
Constructors
HeadlessChannelApiKeysEdit(IFormComponentMapper, IFormDataBinder)
Initializes a new instance of the InfoEditPage<TInfo> class using the form component mapper and form data binder.
public HeadlessChannelApiKeysEdit(IFormComponentMapper formComponentMapper, IFormDataBinder formDataBinder)
Parameters
formComponentMapper
IFormComponentMapperformDataBinder
IFormDataBinder
Properties
ObjectId
ID of the object.
[PageParameter(typeof(IntPageModelBinder))]
public override int ObjectId { get; set; }
Property Value
- int
RefetchAll
Indicates whether to refetch all templates on edit.
protected override bool RefetchAll { get; }
Property Value
- bool
Methods
Change(FormChangeCommandArguments)
Handles the form change command. The command is invoked whenever visibility conditions of the form need to be reevaluated to re-render the form.
public override Task<ICommandResponse<FormChangeResult>> Change(FormChangeCommandArguments args)
Parameters
args
FormChangeCommandArgumentsForm change arguments.
Returns
- Task<ICommandResponse<FormChangeResult>>
Returns the form change result.
ConfigurePage()
Set up page's configuration. Configures the submit action.
public override Task ConfigurePage()
Returns
- Task
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