mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Move some user settings to its own dll (cmd,folder plugin and etc)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
@@ -8,9 +9,9 @@ namespace Wox.Infrastructure.Http
|
||||
{
|
||||
public class HttpRequest
|
||||
{
|
||||
public static string Get(string url, string encoding = "UTF-8")
|
||||
public static string Get(string url, IHttpProxy proxy, string encoding = "UTF-8")
|
||||
{
|
||||
return Get(url, encoding, HttpProxy.Instance);
|
||||
return Get(url, encoding, proxy);
|
||||
}
|
||||
|
||||
private static string Get(string url, string encoding, IHttpProxy proxy)
|
||||
|
||||
Reference in New Issue
Block a user