Interface IComponentPropertiesRetriever
- Namespace
- Kentico.PageBuilder.Web.Mvc
- Assembly
- Kentico.Content.Web.Mvc.dll
Provides an interface for retrieving component properties.
[Obsolete("Use IPageBuilderComponentPropertiesRetriever instead.")]
[ObsoleteSince(30, 2)]
public interface IComponentPropertiesRetriever
- Extension Methods
Methods
Retrieve(Type)
Retrieves component properties based on given type.
IComponentProperties Retrieve(Type propertiesType)
Parameters
propertiesType
Type
Returns
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.