[Mono-bugs] [Bug 72181][Min] New - problem with StreamReader&NetworkStream

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 3 Feb 2005 09:39:27 -0500 (EST)


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 borodin@zg.bezopasnost.ru.

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

--- shadow/72181	2005-02-03 09:39:27.000000000 -0500
+++ shadow/72181.tmp.16277	2005-02-03 09:39:27.000000000 -0500
@@ -0,0 +1,26 @@
+Bug#: 72181
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: borodin@zg.bezopasnost.ru               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: problem with StreamReader&NetworkStream
+
+Don't know if it should work according techspecs, but:
+
+If you open a NetworkStream, use StreamReader wrapped around it, read from
+StreamReader, and after it try to read from NetworkStream itself, it
+obviously ignores data already stored in StreamReader's buffer.
+
+Though MS.NET works the other way here - you can first read from
+StreamReader , then from NetworkStream etc. - everything'll be correct