907c0db563ad2c9858b12a70b753d11724c7bc56
[mono.git] / mcs / class / System / System.ComponentModel.Design.Serialization / IDesignerLoaderService.cs
1 // System.ComponentModel.Design.Serialization.IDesignerLoaderService.cs
2 //
3 // Author:
4 //      Alejandro Sánchez Acosta   <raciel@gnome.org>
5 //
6 // (C) Alejandro Sánchez Acosta
7 //
8
9 using System.Collections;
10 using System.Web.UI.Design;
11
12 namespace System.ComponentModel.Design.Serialization
13 {
14         public interface IDesignerLoaderService
15         {
16                 void AddLoadDependency();
17
18                 void DependentLoadComplete (bool successful, ICollection errorCollection);
19
20                 bool Reload();
21         }
22 }