Interface IChildComponentConfigurationCollection
Specifies the contract for a collection of component configurations.
Namespace: Copper.Common.Interface
Assembly: Copper.Common.dll
Syntax
public interface IChildComponentConfigurationCollection : IReadOnlyCollection<ChildComponentConfiguration>, IEnumerable<ChildComponentConfiguration>, IEnumerable
Methods
View SourceAdd(ChildComponentConfiguration)
Declaration
void Add(ChildComponentConfiguration componentConfiguration)
Parameters
Type | Name | Description |
---|---|---|
Child |
componentConfiguration | The Child |
Add<TChildComponentBuilder>(Func<IServiceProvider, TChildComponentBuilder>)
Adds a Child
Declaration
void Add<TChildComponentBuilder>(Func<IServiceProvider, TChildComponentBuilder> childComponentBuilderFactory)
where TChildComponentBuilder : ComponentBuilder
Parameters
Type | Name | Description |
---|---|---|
System. |
childComponentBuilderFactory | The component builder factory that will be used to add a Child |
Type Parameters
Name | Description |
---|---|
TChildComponentBuilder | The Component |