The delegate that will be used when fetching properties from a PropertyDataCollection with the Int32 indexer.

Namespace:  EPiServer.Core
Assembly:  EPiServer (in EPiServer.dll) Version: 6.0.530.0

Syntax

C#
public delegate PropertyData GetPropertyByIndexDelegate(
	int index,
	PropertyDataCollection properties
)

Parameters

index
Type: System..::.Int32
The index of the property.
properties
Type: EPiServer.Core..::.PropertyDataCollection
The PropertyDataCollection to index into.

Return Value

The property with the given index from the PropertyDataCollection.

Remarks

It's possible to write your own GetPropertyByIndexDelegate and specify that is should be used by setting the GetByIndexHandler property of the PropertyDataCollection.

See Also