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 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