Interface IFormComponentConfigurator
Represents a IFormComponent configurator which is used to configure a form component instance defined by FormComponentConfigurationAttribute.
public interface IFormComponentConfigurator
- Extension Methods
Remarks
This interface is for internal purposes only. To implement a custom configurator, use FormComponentConfigurator<TFormComponent> class instead.
Properties
DependencyFieldName
Name of the dependency field which will trigger the configurator when changed.
[Obsolete("Use DependencyFieldNames instead.")]
[ObsoleteSince(28, 4)]
string DependencyFieldName { get; }
Property Value
- string
DependencyFieldNames
Names of the dependency fields which will trigger the configurator when changed.
IEnumerable<string> DependencyFieldNames { get; }
Property Value
- IEnumerable<string>
Methods
Configure(IFormComponent, IFormFieldValueProvider, CancellationToken)
Configures the form component.
Task Configure(IFormComponent formComponent, IFormFieldValueProvider formFieldValueProvider, CancellationToken cancellationToken)
Parameters
formComponent
IFormComponentForm component to configure.
formFieldValueProvider
IFormFieldValueProviderProvider of previous form field values.
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task
Remarks
This method can not be used to set value of form component. Use ConfigureValue(IFormFieldValueProvider, string, CancellationToken) instead.
ConfigureValue(IFormFieldValueProvider, string, CancellationToken)
Sets value of form component.
Task<object> ConfigureValue(IFormFieldValueProvider formFieldValueProvider, string changedFieldName, CancellationToken cancellationToken)
Parameters
formFieldValueProvider
IFormFieldValueProviderProvider of previous form field values.
changedFieldName
stringName of the field whose change triggered the configurator, null if configurator was not triggered by field change.
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task<object>
Remarks
The value returned by this function will be set to the configured component.