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:
authornobody <nobody@localhost>2002-08-21 14:08:33 +0400
committernobody <nobody@localhost>2002-08-21 14:08:33 +0400
commit4e4824afab6cd0f9f0d71aa6baeddb7bee74f8c4 (patch)
tree4f2f12d32cc0fbc38f5ae17dd88b54f7f7d4773b /mcs/class/System/System.ComponentModel/ISite.cs
parent5a04c908e923e4d919c9c0aed1129f8416adb6cc (diff)
This commit was manufactured by cvs2svn to create branch 'SAVANNAH_CVS'.RHYS_20020821
svn path=/branches/SAVANNAH_CVS/mcs/; revision=6844
Diffstat (limited to 'mcs/class/System/System.ComponentModel/ISite.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/ISite.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/class/System/System.ComponentModel/ISite.cs b/mcs/class/System/System.ComponentModel/ISite.cs
deleted file mode 100644
index dca26662b6f..00000000000
--- a/mcs/class/System/System.ComponentModel/ISite.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// System.ComponentModel.Component.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-
-namespace System.ComponentModel {
-
- public interface ISite : IServiceProvider {
- IComponent Component { get; }
-
- IContainer Container { get; }
-
- bool DesignMode { get; }
-
- string Name { get; set; }
- }
-}