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:
authorAtsushi Eno <atsushieno@gmail.com>2003-08-14 16:51:28 +0400
committerAtsushi Eno <atsushieno@gmail.com>2003-08-14 16:51:28 +0400
commit2fc2cb8972c04653a1520401388070dbba50ca35 (patch)
treea8e87ade5793db5fe6afac8a06a7752d760965f8 /mcs/class/System.XML/Mono.Xml
parent50f79c7c0fa489cd4decbc1e7bbb9bdff182b182 (diff)
2003-08-14 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added IHasXmlSchemaInfo.cs. svn path=/trunk/mcs/; revision=17320
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml')
-rw-r--r--mcs/class/System.XML/Mono.Xml/ChangeLog4
-rw-r--r--mcs/class/System.XML/Mono.Xml/IHasXmlSchemaInfo.cs19
2 files changed, 23 insertions, 0 deletions
diff --git a/mcs/class/System.XML/Mono.Xml/ChangeLog b/mcs/class/System.XML/Mono.Xml/ChangeLog
index 117d7b178e3..5ec05f292a6 100644
--- a/mcs/class/System.XML/Mono.Xml/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-14 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+ * added IHasXmlSchemaInfo.cs.
+
2003-08-07 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added IHasXmlParserContext.cs.
diff --git a/mcs/class/System.XML/Mono.Xml/IHasXmlSchemaInfo.cs b/mcs/class/System.XML/Mono.Xml/IHasXmlSchemaInfo.cs
new file mode 100644
index 00000000000..547ededd193
--- /dev/null
+++ b/mcs/class/System.XML/Mono.Xml/IHasXmlSchemaInfo.cs
@@ -0,0 +1,19 @@
+//
+// Mono.Xml.IHasXmlSchemaInfo.cs
+//
+// Author:
+// Atsushi Enomoto (ginga@kit.hi-ho.ne.jp)
+//
+// (C) 2003 Atsushi Enomoto
+//
+// This interface is used to support XmlSchema type information.
+//
+using System.Xml;
+
+namespace Mono.Xml
+{
+ public interface IHasXmlSchemaInfo
+ {
+ object SchemaType { get; }
+ }
+}