Try our conversational search powered by Generative AI!

Interface IPropertyLoadDataHandler

Implemented by properties that wish to handle their own data loading.

Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
[Obsolete("Custom data is handled through EPiServer.DataAccess.IPropertyValueConverter implementations")]
public interface IPropertyLoadDataHandler

Methods

Load(String, IDataRecord)

Loads the data for a property.

Declaration
void Load(string key, IDataRecord row)
Parameters
Type Name Description
System.String key

The name of the property.

System.Data.IDataRecord row

The System.Data.IDataRecord that contains the data for the property.

Extension Methods