1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-19 04:13:02 +00:00

Changed web request results to WebCallResult to support response status code

This commit is contained in:
Jan Korf
2019-02-27 10:59:31 +01:00
parent 16b5685606
commit 094369e255
6 changed files with 51 additions and 18 deletions
@@ -1,9 +1,11 @@
using System.IO;
using System.Net;
namespace CryptoExchange.Net.Interfaces
{
public interface IResponse
{
HttpStatusCode StatusCode { get; }
Stream GetResponseStream();
void Close();
}