SaaS CMS has officially launched! Learn more now.

Interface IContentTypeModelFilter

A component that filters content models during scanning. Register implementation in DI container.

Namespace: EPiServer.DataAbstraction.RuntimeModel
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface IContentTypeModelFilter

Methods

Filter(IList<Type>)

Gets in list of content models found during scanning.

Declaration
IList<Type> Filter(IList<Type> types)
Parameters
Type Name Description
System.Collections.Generic.IList<System.Type> types

The modles found during scanning

Returns
Type Description
System.Collections.Generic.IList<System.Type>

A potentially filtered list, if no filtering is done input list should be returned.

Extension Methods