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:
authorMarek Safar <marek.safar@gmail.com>2014-12-09 16:27:42 +0300
committerMarek Safar <marek.safar@gmail.com>2014-12-09 16:30:40 +0300
commit767b1570f2162b8a06016a3da4138f26820b563e (patch)
treec50ee9bf4c0f2e4385e38229f81354d1bb60e186 /mcs/class/System/System.ComponentModel/ISite.cs
parentc64b1d4809e69c6d8af745cce8d74819e4cddd11 (diff)
[System] Use ComponentModel from reference sources
Diffstat (limited to 'mcs/class/System/System.ComponentModel/ISite.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/ISite.cs48
1 files changed, 0 insertions, 48 deletions
diff --git a/mcs/class/System/System.ComponentModel/ISite.cs b/mcs/class/System/System.ComponentModel/ISite.cs
deleted file mode 100644
index 30e7377d5a2..00000000000
--- a/mcs/class/System/System.ComponentModel/ISite.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-//
-// System.ComponentModel.ISite.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-using System;
-using System.Runtime.InteropServices;
-
-namespace System.ComponentModel
-{
-
- [ComVisible (true)]
- public interface ISite : IServiceProvider
- {
- IComponent Component { get; }
-
- IContainer Container { get; }
-
- bool DesignMode { get; }
-
- string Name { get; set; }
- }
-}