| 123456789101112131415161718192021222324252627 |
- //
- // System.ComponentModel.ISite.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- 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; }
- }
- }
|