[Mono-bugs] [Bug 63505][Wis] New - bug in property XmlTextReader.EOF

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 19 Aug 2004 19:17:01 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by borsanza@yahoo.es.

http://bugzilla.ximian.com/show_bug.cgi?id=63505

--- shadow/63505	2004-08-19 19:17:01.000000000 -0400
+++ shadow/63505.tmp.15158	2004-08-19 19:17:01.000000000 -0400
@@ -0,0 +1,40 @@
+Bug#: 63505
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Sys.XML
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: borsanza@yahoo.es               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: bug in property XmlTextReader.EOF
+
+Description of Problem:
+
+  The property EOF of XmlTextReader return true when the XmlTextReader is
+Closed in mono, but it return false in Visual Studio.
+
+Steps to reproduce the problem:
+
+ XmlTextReader aux = new XmlTextReader(new StringReader("<a></a><b></b>"));
+ Console.WriteLine(aux.EOF);
+ aux.Close();
+ Console.WriteLine(aux.EOF);
+
+Actual Results:
+
+  False
+  True
+
+
+Expected Results:
+
+  False
+  False