// System.ComponentModel.Design.Serialization.IDesignerLoaderService.cs // // Author: // Alejandro Sánchez Acosta // // (C) Alejandro Sánchez Acosta // using System.Collections; using System.Web.UI.Design; namespace System.ComponentModel.Design.Serialization { public interface IDesignerLoaderService { void AddLoadDependency(); void DependentLoadComplete (bool successful, ICollection errorCollection); bool Reload(); } }