mscorlib(4.0.0.0) API with additions
IContainer.cs
2 
3 namespace System.ComponentModel
4 {
6  [ComVisible(true)]
7  public interface IContainer : IDisposable
8  {
12  {
13  get;
14  }
15 
18  void Add(IComponent component);
19 
24  void Add(IComponent component, string name);
25 
28  void Remove(IComponent component);
29  }
30 }
ComponentCollection Components
Gets all the components in the T:System.ComponentModel.IContainer.
Definition: IContainer.cs:12
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition: IDisposable.cs:8
Definition: __Canon.cs:3
Provides functionality for containers. Containers are objects that logically contain zero or more com...
Definition: IContainer.cs:7
Provides functionality required by all components.
Definition: IComponent.cs:13
void Add(IComponent component)
Adds the specified T:System.ComponentModel.IComponent to the T:System.ComponentModel....
void Remove(IComponent component)
Removes a component from the T:System.ComponentModel.IContainer.
Provides a read-only container for a collection of T:System.ComponentModel.IComponent objects.