[Mono-bugs] [Bug 429200] Cannot re-call start of asynchronous method... Error
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Wed Oct 8 10:37:26 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=429200
User gonzalo at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=429200#c2
--- Comment #2 from Gonzalo Paniagua Javier <gonzalo at novell.com> 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.
More information about the mono-bugs
mailing list