/// <summary> /// Address of the Proxy Server to be used. /// Use optional DEFAULTPROXY value to specify that you want to IE's Proxy Settings /// </summary> public string ProxyAddress { get {return this.cProxyAddress;} set {this.cProxyAddress = value;} }
/// <summary> /// Semicolon separated Address list of the servers the proxy is not used for. /// </summary> public string ProxyBypass { get {return this.cProxyBypass;} set {this.cProxyBypass = value;} }
/// <summary> /// Username for a passWord validating Proxy. Only used if the proxy info is set. /// </summary> public string ProxyUsername { get {return this.cProxyUsername;} set {this.cProxyUsername = value;} } /// <summary> /// PassWord for a passWord validating Proxy. Only used if the proxy info is set. /// </summary> public string ProxyPassWord { get {return this.cProxyPassWord;} set {this.cProxyPassWord = value;}