You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
proxy support is easy to add
eg. in \Hearthstone Deck Tracker\Core.cs
public static WebProxy proxy = new WebProxy("http://x.x.x.x:xxxx")
{
//Credentials = new NetworkCredential("username", "password")
};
public static HttpClientHandler httpClientHandler = new HttpClientHandler
{
Proxy = proxy,
UseProxy = true
};
// Should be global to application. Always use this one instead of
// instantiating a new HttpClient.
public static readonly HttpClient HttpClient = new HttpClient(httpClientHandler);
however, question is how do we add config point for it ?
should I add it into here (Advanced options) ?
The text was updated successfully, but these errors were encountered:
proxy support is easy to add
eg. in \Hearthstone Deck Tracker\Core.cs
however, question is how do we add config point for it ?
should I add it into here (Advanced options) ?
The text was updated successfully, but these errors were encountered: