Class ComponentCollectionExtensions
Provides extension methods for types implementing IComponentCollection<T>.
Inherited Members
Namespace: EmbedIO.Utilities
Syntax
public static class ComponentCollectionExtensions
Methods
Add<T>(IComponentCollection<T>, T)
Adds the specified component to a collection, without giving it a name.
Declaration
public static void Add<T>(this IComponentCollection<T> this, T component)
Parameters
Type | Name | Description |
---|---|---|
IComponentCollection<T> | this | The IComponentCollection<T> on which this method is called. |
T | component | The component to add. |
Type Parameters
Name | Description |
---|---|
T | The type of components in the collection. |