Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2001-08-03 01:57:41 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-08-03 01:57:41 +0400
commitb691f286c705892d685e5aeaaaaabe2da29d4e8b (patch)
treecf45c98018b3c2046109f1713b97687b8eca6c9f /mcs/class/System/System.ComponentModel/ISite.cs
parent686c0d06813c9f621ba4881977fded33baea9fcd (diff)
2001-08-02 Miguel de Icaza <miguel@ximian.com>
* Container.cs, Component.cs, IContainer.cs, IComponent.cs, ComponentCollection.cs, ISite.cs: New classes 2001-08-02 Miguel de Icaza <miguel@ximian.com> * IServiceProvider.cs, EventHandler.cs: New files. svn path=/trunk/mcs/; revision=387
Diffstat (limited to 'mcs/class/System/System.ComponentModel/ISite.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/ISite.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/class/System/System.ComponentModel/ISite.cs b/mcs/class/System/System.ComponentModel/ISite.cs
new file mode 100644
index 00000000000..0a7e09e8252
--- /dev/null
+++ b/mcs/class/System/System.ComponentModel/ISite.cs
@@ -0,0 +1,21 @@
+//
+// System.ComponentModel.Component.cs
+//
+// Author:
+// Miguel de Icaza (miguel@ximian.com)
+//
+// (C) Ximian, Inc. http://www.ximian.com
+//
+
+namespace System.ComponentModel {
+
+ public interface ISite : IServiceProvider {
+ IComponent Component { get; }
+
+ IContainer Container { get; }
+
+ bool DesignMode { get; }
+
+ string Name { get; set; }
+ }
+}