IRequest
Specifies what is used for requesting data.
using System.Collections.Generic;
using System.IO;
namespace AngleSharp.Network
{
public interface IRequest
{
HttpMethod Method { get; }
Url Address { get; }
IDictionary<string, string> Headers { get; }
Stream Content { get; }
}
}