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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-09-14 01:27:51 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-09-14 01:27:51 +0400
commit56e0f5c92833e85a6190ae634dd476b9d2f2c46d (patch)
tree0fcfa14d005f5fc04876b67523c164395b44d861 /mcs/class/System.XML
parent0bfa6eba80d69ecf38ef3bf335da509a5bfcab48 (diff)
Added new stub
svn path=/trunk/mcs/; revision=7443
Diffstat (limited to 'mcs/class/System.XML')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Serialization/ChangeLog2
-rw-r--r--mcs/class/System.XML/System.Xml.Serialization/SoapSchemaExporter.cs42
-rwxr-xr-xmcs/class/System.XML/list1
-rwxr-xr-xmcs/class/System.XML/list.unix1
4 files changed, 46 insertions, 0 deletions
diff --git a/mcs/class/System.XML/System.Xml.Serialization/ChangeLog b/mcs/class/System.XML/System.Xml.Serialization/ChangeLog
index 8c6853731f6..a000ba70507 100755
--- a/mcs/class/System.XML/System.Xml.Serialization/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.Serialization/ChangeLog
@@ -10,6 +10,8 @@
* XmlSerializerNamespaces.cs: some class status based fixed and
implemented a couple of methods.
+ * SoapSchemaExporter.cs: stubbed out.
+
2002-08-24 Tim Coleman <tim@timcoleman.com>
* SoapCodeExporter.cs:
Fix return value of ExportTypeMapping.
diff --git a/mcs/class/System.XML/System.Xml.Serialization/SoapSchemaExporter.cs b/mcs/class/System.XML/System.Xml.Serialization/SoapSchemaExporter.cs
new file mode 100644
index 00000000000..f11cbe45d47
--- /dev/null
+++ b/mcs/class/System.XML/System.Xml.Serialization/SoapSchemaExporter.cs
@@ -0,0 +1,42 @@
+//
+// System.Xml.Serialization.SoapSchemaExporter
+//
+// Authors:
+// Gonzalo Paniagua Javier (gonzalo@ximian.com)
+//
+// (c) 2002 Ximian, Inc. (http://www.ximian.com)
+//
+
+using System;
+
+namespace System.Xml.Serialization
+{
+ public class SoapSchemaExporter
+ {
+ [MonoTODO]
+ public SoapSchemaExporter (XmlSchemas schemas)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping,
+ bool exportEnclosingType)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void ExportTypeMapping (XmlTypeMapping xmlTypeMapping)
+ {
+ throw new NotImplementedException ();
+ }
+ }
+}
+
diff --git a/mcs/class/System.XML/list b/mcs/class/System.XML/list
index 11bdb474cb0..3f939f512a6 100755
--- a/mcs/class/System.XML/list
+++ b/mcs/class/System.XML/list
@@ -156,6 +156,7 @@ System.Xml.Serialization\\SoapElementAttribute.cs
System.Xml.Serialization\\SoapEnumAttribute.cs
System.Xml.Serialization\\SoapIgnoreAttribute.cs
System.Xml.Serialization\\SoapIncludeAttribute.cs
+System.Xml.Serialization\\SoapSchemaExporter.cs
System.Xml.Serialization\\SoapTypeAttribute.cs
System.Xml.Serialization\\UnreferencedObjectEventArgs.cs
System.Xml.Serialization\\XmlAnyAttributeAttribute.cs
diff --git a/mcs/class/System.XML/list.unix b/mcs/class/System.XML/list.unix
index e782b26e4ed..f87f232e1a0 100755
--- a/mcs/class/System.XML/list.unix
+++ b/mcs/class/System.XML/list.unix
@@ -169,6 +169,7 @@ System.Xml.Serialization/SoapEnumAttribute.cs
System.Xml.Serialization/SoapIgnoreAttribute.cs
System.Xml.Serialization/SoapIncludeAttribute.cs
System.Xml.Serialization/SoapSchemaImporter.cs
+System.Xml.Serialization/SoapSchemaExporter.cs
System.Xml.Serialization/SoapSchemaMember.cs
System.Xml.Serialization/SoapReflectionImporter.cs
System.Xml.Serialization/SoapTypeAttribute.cs