Interface IFormDataBinder
Defines methods binding data from and to form components.
public interface IFormDataBinder
- Extension Methods
Methods
BindSubmittedData(IInfo, ICollection<IFormComponent>)
Binds submitted form components
data to given infoObject
.
void BindSubmittedData(IInfo infoObject, ICollection<IFormComponent> components)
Parameters
infoObject
IInfoInfo object instance where the data will be set.
components
ICollection<IFormComponent>Components holding data submitted from form.
Exceptions
- ArgumentNullException
Thrown when
components
orinfoObject
is null.
- See Also
BindSubmittedData(object, ICollection<IFormComponent>)
Binds submitted form components
data to given model
.
void BindSubmittedData(object model, ICollection<IFormComponent> components)
Parameters
model
objectObject model instance where the data will be set.
components
ICollection<IFormComponent>Components holding data submitted from form.
Exceptions
- ArgumentNullException
Thrown when
components
ormodel
is null.
- See Also