[System] Suppress a few instances of CS0618 obsolete warnings
[mono.git] / mcs / class / System / System.Net / FtpWebRequest.cs
index c0ea1b551195e55dd06e5919c44646ee5548dc8e..3121db3d1729daef56a67b3dea4af5fdb49897f0 100644 (file)
@@ -113,7 +113,9 @@ namespace System.Net
                internal FtpWebRequest (Uri uri) 
                {
                        this.requestUri = uri;
+#pragma warning disable 618
                        this.proxy = GlobalProxySelection.Select;
+#pragma warning restore 618
                }
 
                static Exception GetMustImplement ()