Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IProxyConfig.cs

16 lines
343 B
C#
Raw Normal View History

2020-05-12 19:33:25 +01:00
namespace SpotifyAPI.Web
{
public interface IProxyConfig
{
string Host { get; }
int Port { get; }
2020-05-25 17:00:38 +01:00
string? User { get; }
string? Password { get; }
2020-05-12 19:33:25 +01:00
bool SkipSSLCheck { get; }
/// <summary>
/// Whether to bypass the proxy server for local addresses.
/// </summary>
bool BypassProxyOnLocal { get; }
}
}