Table of Contents

Class FormComponentExtender<TFormComponentType>

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

Base class for form component extenders allowing modify a form component and invoking custom commands.

public abstract class FormComponentExtender<TFormComponentType> where TFormComponentType : IFormComponent

Type Parameters

TFormComponentType

Form component type.

Inheritance
object
FormComponentExtender<TFormComponentType>
Extension Methods

Properties

FormComponent

The extended form component.

protected TFormComponentType FormComponent { get; }

Property Value

TFormComponentType

Methods

ConfigureComponent()

Set up extender's configuration.

public virtual Task ConfigureComponent()

Returns

Task

ResponseFrom<TResult>(TResult)

Returns a form command response from the passed result.

protected ICommandResponse<TResult> ResponseFrom<TResult>(TResult result)

Parameters

result TResult

Result of the command processed on the client template.

Returns

ICommandResponse<TResult>

Type Parameters

TResult

Type of the returned result.

Remarks

The result is passed to the command after handler.