Click or drag to resize
RegisterFormSectionAttribute Constructor
Initializes a new instance of the RegisterFormSectionAttribute class.

Namespace: Kentico.Forms.Web.Mvc
Assembly: Kentico.Content.Web.Mvc (in Kentico.Content.Web.Mvc.dll) Version: 12.0.0
Syntax
C#
public RegisterFormSectionAttribute(
	string identifier,
	Type sectionType,
	string name
)

Parameters

identifier
Type: SystemString
Unique identifier of the section.
sectionType
Type: SystemType
Type of the section controller to register.
name
Type: SystemString
Name of the section.
Remarks
Make sure to provide unique identifier for the section definition from the start. This identifier is used within the page configuration and any further change can lead to incorrect configuration load. Consider specifying identifier in format 'CompanyName.ModuleName.SectionName', e.g. 'Kentico.Content.SingleColumn'.
See Also