IDesignerLoaderHost.cs 484 B

1234567891011121314151617181920
  1. // System.ComponentModel.Design.Serialization.IDesignerLoaderHost.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Collections;
  9. using System.Web.UI.Design;
  10. namespace System.ComponentModel.Design.Serialization
  11. {
  12. public interface IDesignerLoaderHost : IDesignerHost, IServiceContainer, IServiceProvider
  13. {
  14. void EndLoad (string baseClassName, bool successful, ICollection errorCollection);
  15. void Reload();
  16. }
  17. }