16 lines
352 B
C#
16 lines
352 B
C#
namespace Common.Logic.Extensions.Http.Interfaces
|
|
{
|
|
using System;
|
|
|
|
public interface IHttpRequest
|
|
{
|
|
IHttpRequest AddQueryParameter(String name, Object value);
|
|
|
|
IHttpResponse<T> GetResponse<T>();
|
|
void Send();
|
|
|
|
IHttpRequest WithJsonBody(Object body);
|
|
|
|
IHttpRequest WithPlainBody(String body);
|
|
}
|
|
} |