IWebProxy.cs 308 B

123456789101112131415161718192021222324
  1. //
  2. // System.Net.IWebProxy.cs
  3. //
  4. // Author:
  5. // Lawrence Pit ([email protected])
  6. //
  7. using System;
  8. namespace System.Net {
  9. // <remarks>
  10. // </remarks>
  11. public interface IWebProxy {
  12. ICredentials Credentials {
  13. get;
  14. set;
  15. }
  16. Uri GetProxy (Uri destination);
  17. bool IsBypassed (Uri host);
  18. }
  19. }