Class FormComponentExtender<TFormComponentType>
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
-
objectFormComponentExtender<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
TResultResult 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.