2003-07-02 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System / System.ComponentModel / ISite.cs
1 //
2 // System.ComponentModel.ISite.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11 using System.Runtime.InteropServices;
12
13 namespace System.ComponentModel 
14 {
15
16         [ComVisible (true)]
17         public interface ISite : IServiceProvider
18         {
19                 IComponent Component { get; }
20
21                 IContainer Container { get; }
22
23                 bool DesignMode { get; }
24
25                 string Name { get; set; }
26         }
27 }