2003-08-14 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
authorAtsushi Eno <atsushieno@gmail.com>
Thu, 14 Aug 2003 12:51:28 +0000 (12:51 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Thu, 14 Aug 2003 12:51:28 +0000 (12:51 -0000)
* added IHasXmlSchemaInfo.cs.

svn path=/trunk/mcs/; revision=17320

mcs/class/System.XML/Mono.Xml/ChangeLog
mcs/class/System.XML/Mono.Xml/IHasXmlSchemaInfo.cs [new file with mode: 0644]

index 117d7b178e3684d7d6b60603c3657a3673f5a2bb..5ec05f292a6a87fd52fc73ba07698a096878943c 100644 (file)
@@ -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 (file)
index 0000000..547eded
--- /dev/null
@@ -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;
+\r
+namespace Mono.Xml\r
+{\r
+       public interface IHasXmlSchemaInfo\r
+       {\r
+               object SchemaType { get; }\r
+       }\r
+}\r