Click or drag to resize
RegisterPersonalizationConditionTypeAttribute Constructor
Creates an instance of the RegisterPersonalizationConditionTypeAttribute class.

Namespace: Kentico.PageBuilder.Web.Mvc.Personalization
Assembly: Kentico.Content.Web.Mvc (in Kentico.Content.Web.Mvc.dll) Version: 13.0.131
Syntax
C#
public RegisterPersonalizationConditionTypeAttribute(
	string identifier,
	Type type,
	string name
)

Parameters

identifier
Type: SystemString
Unique identifier of the condition type definition.
type
Type: SystemType
Type of the registered condition.
name
Type: SystemString
Name of the registered condition type.
Remarks
Make sure to provide unique identifier for the condition type 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.ConditionTypeName', e.g. 'Kentico.Personalization.IsInPersona'.
See Also