1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-08 16:36:15 +00:00
2018-02-28 13:53:29 +01:00

16 lines
313 B
C#

using System;
using System.Net;
namespace CryptoExchange.Net.Interfaces
{
public interface IRequest
{
Uri Uri { get; }
WebHeaderCollection Headers { get; set; }
string Method { get; set; }
void SetProxy(string host, int port);
IResponse GetResponse();
}
}