Table of Contents

Interface IPageBuilderComponentPropertiesRetriever

Namespace
Kentico.PageBuilder.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Provides an interface for retrieving a page builder component properties.

public interface IPageBuilderComponentPropertiesRetriever
Extension Methods

Methods

Retrieve(Type)

Retrieves component properties based on given type.

IComponentProperties Retrieve(Type propertiesType)

Parameters

propertiesType Type

Returns

IComponentProperties

Exceptions

InvalidOperationException

Thrown when, properties of given propertiesType cannot be retrieved.

Retrieve<TPropertiesType>()

Retrieves component properties based on generic type.

TPropertiesType Retrieve<TPropertiesType>() where TPropertiesType : class, IComponentProperties, new()

Returns

TPropertiesType

Type Parameters

TPropertiesType

Type of the component properties.

Exceptions

InvalidOperationException

Thrown when, properties of given TPropertiesType cannot be retrieved.