Container.Add Method

Definition

Adds a Component to the Container.

Overloads

Add(IComponent)

Adds the specified Component to the Container. The component is unnamed.

Add(IComponent, String)

Adds the specified Component to the Container and assigns it a name.

Add(IComponent)

Source:
Container.cs
Source:
Container.cs
Source:
Container.cs

Adds the specified Component to the Container. The component is unnamed.

public virtual void Add (System.ComponentModel.IComponent component);
public virtual void Add (System.ComponentModel.IComponent? component);

Parameters

component
IComponent

The component to add.

Implements

Exceptions

component is null.

Remarks

This method can be overridden by a derived class.

The new Component is added to the end of the list.

See also

Applies to

.NET 9 וגירסאות אחרות
מוצר גירסאות
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Add(IComponent, String)

Source:
Container.cs
Source:
Container.cs
Source:
Container.cs

Adds the specified Component to the Container and assigns it a name.

public virtual void Add (System.ComponentModel.IComponent component, string name);
public virtual void Add (System.ComponentModel.IComponent? component, string? name);

Parameters

component
IComponent

The component to add.

name
String

The unique, case-insensitive name to assign to the component.

-or-

null, which leaves the component unnamed.

Implements

Exceptions

component is null.

name is not unique.

Remarks

This method can be overridden by a derived class.

The new Component is added to the end of the list.

See also

Applies to

.NET 9 וגירסאות אחרות
מוצר גירסאות
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1