IDesignerLoaderService.cs 458 B

12345678910111213141516171819202122
  1. // System.ComponentModel.Design.Serialization.IDesignerLoaderService.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 IDesignerLoaderService
  13. {
  14. void AddLoadDependency();
  15. void DependentLoadComplete (bool successful, ICollection errorCollection);
  16. bool Reload();
  17. }
  18. }