Class ContentDataInterceptorHandler
This class is a concrete implementation of Content
Inheritance
Namespace: EPiServer.DataAbstraction.RuntimeModel
Assembly: EPiServer.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
[ServiceConfiguration]
public class ContentDataInterceptorHandler : Object
Constructors
ContentDataInterceptorHandler(ConstructorParameterResolver)
Initializes a new instance of the Content
Declaration
public ContentDataInterceptorHandler(ConstructorParameterResolver constructorResolver)
Parameters
Type | Name | Description |
---|---|---|
Constructor |
constructorResolver | The constructor resolver. |
Properties
ContentDataActivator
Gets an instance of IContent
Declaration
public virtual IContentDataActivator ContentDataActivator { get; }
Property Value
Type | Description |
---|---|
IContent |
An instance of Content |
Remarks
The IContent
Methods
For<TPropertyData>()
Registers a custom accessor for a Property
Declaration
public virtual PropertyDataInterceptor<TPropertyData> For<TPropertyData>()
where TPropertyData : PropertyData
Returns
Type | Description |
---|---|
Property |
Type Parameters
Name | Description |
---|---|
TPropertyData | The type of the property data. |
GetContentDataActivator()
Gets the IContent
Declaration
public static IContentDataActivator GetContentDataActivator()
Returns
Type | Description |
---|---|
IContent |
The current IContent |
GetPropertyInterceptor(Type)
Tries the get property interceptor.
Declaration
public virtual IPropertyDataInterceptor GetPropertyInterceptor(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The type. |
Returns
Type | Description |
---|---|
IProperty |
RegisterDefaultPropertyAccessor()
Registers the default property accessor.
Declaration
protected virtual void RegisterDefaultPropertyAccessor()
RegisterInterceptor(IEnumerable<Type>, ContentDataInterceptor)
Registers an interceptor for a collection of System.
Declaration
public virtual void RegisterInterceptor(IEnumerable<Type> modelTypes, ContentDataInterceptor interceptor)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelTypes | The model types. |
Content |
interceptor | The interceptor. |
Remarks
Interceptors are scoped as singleton per modeltype for performance reasons
RegisterInterceptor(Type, ContentDataInterceptor)
Registers an interceptor for a specific System.
Declaration
public virtual void RegisterInterceptor(Type modelType, ContentDataInterceptor interceptor)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelType | Type of the model. |
Content |
interceptor | The interceptor. |
Remarks
Interceptors are scoped as singleton per modeltype for performance reasons
RegisterPropertyInterceptor()
Registers the property interceptor.
Declaration
public virtual void RegisterPropertyInterceptor()
SetPropertyInterceptor(Type, IPropertyDataInterceptor)
Sets the property interceptor.
Declaration
public virtual void SetPropertyInterceptor(Type propertyType, IPropertyDataInterceptor propertyInterceptor)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyType | Type of the property. |
IProperty |
propertyInterceptor | The property interceptor. |