London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IPropertySoftLinkIndexer<T>

Implement to register SoftLink support for properties.

Namespace: EPiServer.SpecializedProperties
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
public interface IPropertySoftLinkIndexer<T> : IPropertySoftLinkIndexer
Type Parameters
Name Description
T

This should be the type specified by PropertyValueType

Remarks

Registration should be done by registering implementation class with interface IPropertySoftLinkIndexer in IOC container.

Methods

ResolveReferences(T, IContent)

Return all SoftLink references from the property instance.

Declaration
IEnumerable<SoftLink> ResolveReferences(T property, IContent owner)
Parameters
Type Name Description
T property

The property to parse SoftLink instances from

IContent owner

The content item that owns the property.

Returns
Type Description
System.Collections.Generic.IEnumerable<SoftLink>

Extension Methods