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:
authorAjay kumar Dwivedi <ajay@mono-cvs.ximian.com>2002-06-18 16:22:41 +0400
committerAjay kumar Dwivedi <ajay@mono-cvs.ximian.com>2002-06-18 16:22:41 +0400
commit64b053b6aa9bc1739d4ffcc18e543b3c8d700f6c (patch)
treee97ca9075eca4912f17c92329dadfbe95d5d5c9f /mcs/class/System.XML/System.Xml
parentdf0519e5265e01632e20652b18e971ed768e7c6e (diff)
2002-06-18 Ajay kumar Dwivedi <adwiv@yahoo.com>
* XmlTextReader.cs: HasLineInfo returns false instead of throwing an Exception. 2002-06-14 Duncan Mak <duncan@ximian.com> svn path=/trunk/mcs/; revision=5328
Diffstat (limited to 'mcs/class/System.XML/System.Xml')
-rw-r--r--mcs/class/System.XML/System.Xml/ChangeLog5
-rw-r--r--mcs/class/System.XML/System.Xml/XmlTextReader.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml/ChangeLog b/mcs/class/System.XML/System.Xml/ChangeLog
index da5d70ebe5f..ca8120a4623 100644
--- a/mcs/class/System.XML/System.Xml/ChangeLog
+++ b/mcs/class/System.XML/System.Xml/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-18 Ajay kumar Dwivedi <adwiv@yahoo.com>
+
+ * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
+ Exception.
+
2002-06-14 Duncan Mak <duncan@ximian.com>
* XmlConvert.cs: Added CLSCompliant attributes to methods.
diff --git a/mcs/class/System.XML/System.Xml/XmlTextReader.cs b/mcs/class/System.XML/System.Xml/XmlTextReader.cs
index 05d47909c81..0a6ebbdbe19 100644
--- a/mcs/class/System.XML/System.Xml/XmlTextReader.cs
+++ b/mcs/class/System.XML/System.Xml/XmlTextReader.cs
@@ -357,7 +357,7 @@ namespace System.Xml
[MonoTODO]
bool IXmlLineInfo.HasLineInfo ()
{
- throw new NotImplementedException ();
+ return false;
}
public override string LookupNamespace (string prefix)