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:
authorJb Evain <jbevain@gmail.com>2009-08-04 02:22:36 +0400
committerJb Evain <jbevain@gmail.com>2009-08-04 02:22:36 +0400
commit32304d19e08d1d92e8fcef0b893c3c29b2b2598f (patch)
treec4b48ab9309bc362bc2b754eb58376e9e33dc122 /mcs/class/System
parent8bba669db06b1d184fac892ba731aa09322f8936 (diff)
monotouch uses the real HttpWebRequest
svn path=/trunk/mcs/; revision=139300
Diffstat (limited to 'mcs/class/System')
-rw-r--r--mcs/class/System/System.Net/HttpRequestCreator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net/HttpRequestCreator.cs b/mcs/class/System/System.Net/HttpRequestCreator.cs
index 1232a44c5d7..dc75c568ff4 100644
--- a/mcs/class/System/System.Net/HttpRequestCreator.cs
+++ b/mcs/class/System/System.Net/HttpRequestCreator.cs
@@ -38,7 +38,7 @@ namespace System.Net
public WebRequest Create (Uri uri)
{
-#if NET_2_1
+#if NET_2_1 && !MONOTOUCH
throw new NotImplementedException ();
#else
return new HttpWebRequest (uri);