Interface IPropertyDataInterceptor
Used for custom property interceptor
Namespace: EPiServer.DataAbstraction.RuntimeModel
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IPropertyDataInterceptor
Methods
GetValue(PropertyData, Type)
Gets the value.
Declaration
object GetValue(PropertyData propertyData, Type returnType)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyData | The property data. |
System. |
returnType | Type of the return. |
Returns
Type | Description |
---|---|
System. |
SetValue(PropertyData, Type, Object)
Sets the value.
Declaration
void SetValue(PropertyData propertyData, Type valueType, object value)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyData | The property data. |
System. |
valueType | Type of the value. |
System. |
value | The value. |