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
path: root/mcs
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-09-07 10:29:02 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-09-07 10:29:02 +0400
commite38f6d2220c9dc93ac2c3887bce3581c6a0d9d8c (patch)
treecd3d623ddcf3a3134e5680ee8087b1f60e08c861 /mcs
parent73738f8e00a42e2dc749d4c648bb880dbb9f7095 (diff)
2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
* IXmlType.cs : deprecated in .NET 2.0. svn path=/trunk/mcs/; revision=33471
Diffstat (limited to 'mcs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/ChangeLog4
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/IXmlType.cs43
2 files changed, 4 insertions, 43 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/ChangeLog b/mcs/class/System.XML/System.Xml.Schema/ChangeLog
index 87376243f16..9d2d6712835 100755
--- a/mcs/class/System.XML/System.Xml.Schema/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.Schema/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
+
+ * IXmlType.cs : deprecated in .NET 2.0.
+
2004-09-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchema.cs : When schema inclusion results in a recursion, just
diff --git a/mcs/class/System.XML/System.Xml.Schema/IXmlType.cs b/mcs/class/System.XML/System.Xml.Schema/IXmlType.cs
deleted file mode 100755
index 9127caac12c..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/IXmlType.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// IXmlType.cs
-//
-// Author:
-// Atsushi Enomoto <atsushi@ximian.com>
-//
-// (C)2004 Novell, Inc.
-//
-
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-#if NET_2_0
-namespace System.Xml.Schema
-{
- public interface IXmlType
- {
- Type DefaultType { get; }
-
- XmlQualifiedName QualifiedName { get; }
-
- XmlValueConverter ValueConverter { get; }
- }
-}
-#endif