Files
octokit.net/Octokit/Http/IRequest.cs
2015-12-08 11:25:35 +10:30

19 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Net.Http;
namespace Octokit.Internal
{
public interface IRequest
{
object Body { get; set; }
Dictionary<string, string> Headers { get; }
HttpMethod Method { get; }
Dictionary<string, string> Parameters { get; }
Uri BaseAddress { get; }
Uri Endpoint { get; }
TimeSpan Timeout { get; }
string ContentType { get; }
}
}