mscorlib(4.0.0.0) API with additions
ISite.cs
2 
3 namespace System.ComponentModel
4 {
6  [ComVisible(true)]
7  public interface ISite : IServiceProvider
8  {
12  {
13  get;
14  }
15 
19  {
20  get;
21  }
22 
26  bool DesignMode
27  {
28  get;
29  }
30 
33  string Name
34  {
35  get;
36  set;
37  }
38  }
39 }
string Name
Gets or sets the name of the component associated with the T:System.ComponentModel....
Definition: ISite.cs:34
Definition: __Canon.cs:3
Provides functionality for containers. Containers are objects that logically contain zero or more com...
Definition: IContainer.cs:7
Provides the base implementation for the T:System.ComponentModel.IComponent interface and enables obj...
Definition: Component.cs:9
Provides functionality required by all components.
Definition: IComponent.cs:13
Defines a mechanism for retrieving a service object; that is, an object that provides custom support ...
Encapsulates zero or more components.
Definition: Container.cs:7
Provides functionality required by sites.
Definition: ISite.cs:7
bool DesignMode
Determines whether the component is in design mode when implemented by a class.
Definition: ISite.cs:27