IResponse
Specifies what is stored when receiving data.
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
namespace AngleSharp.Network
{
public interface IResponse : IDisposable
{
HttpStatusCode StatusCode { get; }
Url Address { get; }
IDictionary<string, string> Headers { get; }
Stream Content { get; }
}
}