2003-04-11 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System / System.Net / IWebProxy.cs
1 //
2 // System.Net.IWebProxy.cs
3 //
4 // Author:
5 //   Lawrence Pit (loz@cable.a2000.nl)
6 //
7
8 using System;
9
10 namespace System.Net {
11
12         // <remarks>
13         // </remarks>
14         public interface IWebProxy {
15                 ICredentials Credentials {
16                         get; 
17                         set;
18                 }
19
20                 Uri GetProxy (Uri destination);
21                 
22                 bool IsBypassed (Uri host);
23         }
24 }