Interface IFormComponentBinder
Defines contract for binding form components.
public interface IFormComponentBinder
- Extension Methods
Methods
AddModelStateError(string, string)
Adds key
with errorMessage
to the model state.
void AddModelStateError(string key, string errorMessage)
Parameters
key
stringerrorMessage
string
BindFormComponent(FormComponent, string, Predicate<string>)
Binds data to an instance of a model
.
Task BindFormComponent(FormComponent model, string prefix, Predicate<string> propertyNameFilter = null)
Parameters
model
FormComponentForm component instance to which bind data from form collection.
prefix
stringPrefix used in the form's inputs.
propertyNameFilter
Predicate<string>Predicate, based on property names, to filter which properties are to be bound.
Returns
- Task
IsModelValid(string)
Checks whether model with specified prefix
is valid.
bool IsModelValid(string prefix)
Parameters
prefix
string
Returns
- bool
True when model is valid, otherwise false.
PrebindComponentCollection(IEnumerable<FormComponent>, string)
Binds a collection of form components specified components
while omitting
attribute and System.ComponentModel.DataAnnotations.IValidatableObject.Validate(System.ComponentModel.DataAnnotations.ValidationContext) validation.
Task PrebindComponentCollection(IEnumerable<FormComponent> components, string prefix)
Parameters
components
IEnumerable<FormComponent>prefix
string
Returns
- Task
RemoveFromModelState(string)
Removes entries with specified prefix
prefix from the model state.
void RemoveFromModelState(string prefix)
Parameters
prefix
string
Validate(object, string)
Validates the model
and adds error into the model state.
void Validate(object model, string prefix)
Parameters
model
objectObject to validate.
prefix
stringKeys added into the model state are prefixed with this value and a single '.' character.