浏览代码

2004-11-05 Atsushi Enomoto <[email protected]>

	* XmlSchemaSimpleTypeList.cs,
	  XmlSchemaSimpleTypeUnion.cs : XmlIgnore.

svn path=/trunk/mcs/; revision=35691
Atsushi Eno 21 年之前
父节点
当前提交
eb9afec887

+ 5 - 0
mcs/class/System.XML/System.Xml.Schema/ChangeLog

@@ -1,3 +1,8 @@
+2004-11-05  Atsushi Enomoto <[email protected]>
+
+	* XmlSchemaSimpleTypeList.cs,
+	  XmlSchemaSimpleTypeUnion.cs : XmlIgnore.
+
 2004-10-29  Atsushi Enomoto <[email protected]>
 
 	* XmlSchemaAttribute.cs : AttributeSchemaType could be determined on

+ 2 - 1
mcs/class/System.XML/System.Xml.Schema/XmlSchemaSimpleTypeList.cs

@@ -66,7 +66,8 @@ namespace System.Xml.Schema
 
 #if NET_2_0
 		// LAMESPEC: this name is really ambiguous. Actually it just
-		// holds compiled itemType.
+		// holds compiled itemType, not baseType of the itemType.
+		[XmlIgnore]
 		public XmlSchemaSimpleType BaseItemType {
 			get { return validatedListItemSchemaType; }
 		}

+ 1 - 0
mcs/class/System.XML/System.Xml.Schema/XmlSchemaSimpleTypeUnion.cs

@@ -58,6 +58,7 @@ namespace System.Xml.Schema
 		}
 
 #if NET_2_0
+		[XmlIgnore]
 		public XmlSchemaSimpleType [] BaseMemberTypes {
 			get { return validatedSchemaTypes; }
 		}