Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IPermanentLinkBatchMapper

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Specifies methods for mapping between url/Guid/ContentReference

Namespace: EPiServer.Web.Internal
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public interface IPermanentLinkBatchMapper : IPermanentLinkMapper

Methods

Find(IEnumerable<ContentReference>)

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Finds a PermanentContentLinkMaps for a list of ContentReferences

Declaration
IEnumerable<PermanentLinkMap> Find(IEnumerable<ContentReference> contentReferences)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<ContentReference> contentReferences

A list of content references.

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

A list of PermanentLinkMaps for found contents

Find(IEnumerable<Guid>)

Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Finds PemanentLinkMaps for a list of Guids

Declaration
IEnumerable<PermanentLinkMap> Find(IEnumerable<Guid> guids)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.Guid> guids

A list of GUIDs.

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

A list of PermanentLinkMaps for found contents

Extension Methods