Class ListWrapper

This holds a list of names of EPiServer properties that is mapped against an custom property. E.g. we can have custom property 'Title' mapped against EPiServer properties 'PageName' and 'Heading'.

Inheritance
System.Object
ListWrapper
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.ContentChannels
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public class ListWrapper

Constructors

ListWrapper()

Declaration
public ListWrapper()

Properties

PropertyList

List of EPiServer properties that are mapped against an "external" property for an ContentChannel

Declaration
public IList<string> PropertyList { get; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Methods

Add(String)

Adds the specified property name to the list

Declaration
public void Add(string propertyName)
Parameters
Type Name Description
System.String propertyName

Name of the property.

Extension Methods