Interface IResponse
- Namespace
- AngleSharp.Io
- Assembly
- AngleSharp.dll
Specifies what is stored when receiving data.
public interface IResponse : IDisposable
- Inherited Members
- Extension Methods
Properties
Address
Gets the url of the response.
Url Address { get; }
Property Value
Content
Gets the content that has been send with the response.
Stream Content { get; }
Property Value
Headers
Gets the headers that have been send with the response.
IDictionary<string, string> Headers { get; }
Property Value
StatusCode
Gets the status code that has been send with the response.
HttpStatusCode StatusCode { get; }