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