PowerToys/Wox.Infrastructure/Http/HttpProxy.cs

44 lines
967 B
C#
Raw Normal View History

2014-07-18 20:00:55 +08:00
using Wox.Infrastructure.Storage.UserSettings;
using Wox.Plugin;
2014-12-21 22:03:03 +08:00
namespace Wox.Infrastructure.Http
2014-07-18 20:00:55 +08:00
{
public class HttpProxy : IHttpProxy
{
private static readonly HttpProxy instance = new HttpProxy();
private HttpProxy()
{
}
public static HttpProxy Instance
{
get { return instance; }
}
public bool Enabled
{
get { return UserSettingStorage.Instance.ProxyEnabled; }
}
public string Server
{
get { return UserSettingStorage.Instance.ProxyServer; }
}
public int Port
{
get { return UserSettingStorage.Instance.ProxyPort; }
}
public string UserName
{
get { return UserSettingStorage.Instance.ProxyUserName; }
}
public string Password
{
get { return UserSettingStorage.Instance.ProxyPassword; }
}
}
}