Table of Contents

Interface IFormDataBinder

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

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 IInfo

Info object instance where the data will be set.

components ICollection<IFormComponent>

Components holding data submitted from form.

Exceptions

ArgumentNullException

Thrown when components or infoObject is null.

See Also
OnlyVisible(IEnumerable<IFormItem>)

BindSubmittedData(object, ICollection<IFormComponent>)

Binds submitted form components data to given model.

void BindSubmittedData(object model, ICollection<IFormComponent> components)

Parameters

model object

Object model instance where the data will be set.

components ICollection<IFormComponent>

Components holding data submitted from form.

Exceptions

ArgumentNullException

Thrown when components or model is null.

See Also
OnlyVisible(IEnumerable<IFormItem>)