https://bugzilla.novell.com/show_bug.cgi?id=429200

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=429200#c2





--- Comment #2 from Gonzalo Paniagua Javier <[EMAIL PROTECTED]>  2008-10-08 
08:37:25 MDT ---
------------------------------------
using System;
using System.IO;
using System.Net;

class Test {
        static void Main() {
                HttpWebRequest req = (HttpWebRequest)
WebRequest.Create("http://google.com";);
                req.Method = "POST";
                Stream rstream = req.GetRequestStream ();
                Stream rstream2 = req.GetRequestStream ();
                Console.WriteLine (rstream == rstream2);
        }
}
-------------------------------------
The above program prints 'True' on Windows XP running MS .NET 2.0


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to