ISite.cs 425 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.ComponentModel.ISite.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. using System.Runtime.InteropServices;
  11. namespace System.ComponentModel
  12. {
  13. [ComVisible (true)]
  14. public interface ISite : IServiceProvider
  15. {
  16. IComponent Component { get; }
  17. IContainer Container { get; }
  18. bool DesignMode { get; }
  19. string Name { get; set; }
  20. }
  21. }