| 12345678910111213141516171819202122 |
- // System.ComponentModel.Design.Serialization.IDesignerLoaderService.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (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();
- }
- }
|