1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-12 00:43:03 +00:00

adjusted some resharper things

This commit is contained in:
JKorf
2018-03-01 12:13:51 +01:00
parent 488eb1cd48
commit e89beed9ef
8 changed files with 20 additions and 30 deletions
+2 -5
View File
@@ -23,14 +23,11 @@ namespace CryptoExchange.Net.Requests
get => request.Method;
set => request.Method = value;
}
public Uri Uri
{
get => request.RequestUri;
}
public Uri Uri => request.RequestUri;
public void SetProxy(string host, int port)
{
request.Proxy = new WebProxy(host, port); ;
request.Proxy = new WebProxy(host, port);
}
public IResponse GetResponse()