Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.ComponentModel.Design.Serialization/IDesignerLoaderHost.cs')
-rw-r--r--mcs/class/System/System.ComponentModel.Design.Serialization/IDesignerLoaderHost.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/class/System/System.ComponentModel.Design.Serialization/IDesignerLoaderHost.cs b/mcs/class/System/System.ComponentModel.Design.Serialization/IDesignerLoaderHost.cs
new file mode 100644
index 00000000000..148f4be1ab8
--- /dev/null
+++ b/mcs/class/System/System.ComponentModel.Design.Serialization/IDesignerLoaderHost.cs
@@ -0,0 +1,20 @@
+// System.ComponentModel.Design.Serialization.IDesignerLoaderHost.cs
+//
+// Author:
+// Alejandro Sánchez Acosta <raciel@gnome.org>
+//
+// (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();
+ }
+}