mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
28 lines
870 B
C#
28 lines
870 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
|
|
namespace Octokit.Internal
|
|
{
|
|
public class Request : IRequest
|
|
{
|
|
public Request()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
Parameters = new Dictionary<string, string>();
|
|
AllowAutoRedirect = true;
|
|
Timeout = TimeSpan.FromSeconds(100);
|
|
}
|
|
|
|
public object Body { get; set; }
|
|
public Dictionary<string, string> Headers { get; private set; }
|
|
public HttpMethod Method { get; set; }
|
|
public Dictionary<string, string> Parameters { get; private set; }
|
|
public Uri BaseAddress { get; set; }
|
|
public Uri Endpoint { get; set; }
|
|
public TimeSpan Timeout { get; set; }
|
|
public string ContentType { get; set; }
|
|
public bool AllowAutoRedirect { get; set; }
|
|
}
|
|
}
|