| 1234567891011121314151617181920 |
- // System.ComponentModel.Design.Serialization.IDesignerLoaderHost.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 IDesignerLoaderHost : IDesignerHost, IServiceContainer, IServiceProvider
- {
- void EndLoad (string baseClassName, bool successful, ICollection errorCollection);
- void Reload();
- }
- }
|