SaaS CMS has officially launched! Learn more now.

Interface IContainer<TSettings>

Defines that a component might have child components.

Namespace: EPiServer.Shell.ViewComposition
Assembly: EPiServer.Shell.dll
Version: 10.10.4
Syntax
public interface IContainer<in TSettings> : IContainer, IComponent, ICloneable where TSettings : ISettingsDictionary
Type Parameters
Name Description
TSettings

Methods

Add(IComponent, TSettings)

Adds a component to the collection.

Declaration
IContainer<TSettings> Add(IComponent component, TSettings requiredSettings)
Parameters
Type Name Description
IComponent component

The component.

TSettings requiredSettings

The required setting.

Returns
Type Description
IContainer<TSettings>

Itself

Extension Methods