| 123456789101112131415161718192021222324 |
- //
- // System.Net.IWebProxy.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System;
- namespace System.Net {
- // <remarks>
- // </remarks>
- public interface IWebProxy {
- ICredentials Credentials {
- get;
- set;
- }
- Uri GetProxy (Uri destination);
-
- bool IsBypassed (Uri host);
- }
- }
|