You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ForwardProxySettings.cs 778 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shadowsocks.Net.Settings
  7. {
  8. public class ForwardProxySettings
  9. {
  10. public bool NoProxy { get; set; }
  11. public bool UseSocks5Proxy { get; set; }
  12. public bool UseHttpProxy { get; set; }
  13. public string Address { get; set; }
  14. public int Port { get; set; }
  15. public string Username { get; set; }
  16. public string Password { get; set; }
  17. public ForwardProxySettings()
  18. {
  19. NoProxy = true;
  20. UseSocks5Proxy = false;
  21. UseHttpProxy = false;
  22. Address = "";
  23. Port = 1088;
  24. Username = "";
  25. Password = "";
  26. }
  27. }
  28. }