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:
Diffstat (limited to 'mcs/class/System/System.Net/IWebProxy.cs')
-rw-r--r--mcs/class/System/System.Net/IWebProxy.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/mcs/class/System/System.Net/IWebProxy.cs b/mcs/class/System/System.Net/IWebProxy.cs
deleted file mode 100644
index 00f10e32da1..00000000000
--- a/mcs/class/System/System.Net/IWebProxy.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// System.Net.IWebProxy.cs
-//
-// Author:
-// Lawrence Pit (loz@cable.a2000.nl)
-//
-
-using System;
-
-namespace System.Net {
-
- // <remarks>
- // </remarks>
- public interface IWebProxy {
- ICredentials Credentials {
- get;
- set;
- }
-
- Uri GetProxy (Uri destination);
-
- bool IsBypassed (Uri host);
- }
-}