// ProxyUseType.cs // // This code was automatically generated from // ECMA CLI XML Library Specification. // Generator: libgen.xsl // Source file: all.xml // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System.Net { public enum ProxyUseType { /// /// /// Specifies that the proxy is a standard proxy. /// /// Standard = 0, /// /// /// Specifies that the proxy is a tunneling proxy. /// /// Tunnel = 1, /// /// /// Specifies that the proxy is an FTP gateway. /// /// FtpGateway = 2, /// /// /// Specifies that the proxy is a SOCKS server. /// /// Socks = 3, } // ProxyUseType } // System.Net