Interface IFormComponentPropertiesMapper
Contains mapping methods for conversions between form component properties and form field definition.
public interface IFormComponentPropertiesMapper
- Extension Methods
Methods
FromFieldInfo(FormFieldInfo)
Maps an instance of FormFieldInfo to corresponding FormComponentProperties. To extract identifier of corresponding FormComponentDefinition use GetComponentIdentifier(FormFieldInfo).
FormComponentProperties FromFieldInfo(FormFieldInfo formFieldInfo)
Parameters
formFieldInfo
FormFieldInfoForm field to be mapped.
Returns
- FormComponentProperties
Returns an instance of FormComponentProperties which corresponds to given form field.
Exceptions
- ArgumentNullException
Thrown when
formFieldInfo
is null.
GetComponentIdentifier(FormFieldInfo)
Gets FormComponentDefinition identifier stored in formFieldInfo
.
string GetComponentIdentifier(FormFieldInfo formFieldInfo)
Parameters
formFieldInfo
FormFieldInfoForm field info for which to obtain FormComponentDefinition's identifier.
Returns
- string
Return identifier obtained from
formFieldInfo
.
Exceptions
- ArgumentNullException
Thrown when
formFieldInfo
is null.
ToFormFieldInfo(FormComponentProperties, string)
Maps an instance of FormComponentProperties to corresponding FormFieldInfo.
FormFieldInfo ToFormFieldInfo(FormComponentProperties formComponentProperties, string componentIdentifier)
Parameters
formComponentProperties
FormComponentPropertiesForm component properties to be mapped.
componentIdentifier
stringIdentifier of corresponding FormComponentDefinition to be stored along with
formComponentProperties
.
Returns
- FormFieldInfo
Returns an instance of FormFieldInfo which corresponds to given properties and type identifier.
Exceptions
- ArgumentNullException
Thrown when
formComponentProperties
is null.