Table of Contents

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

Url

Content

Gets the content that has been send with the response.

Stream Content { get; }

Property Value

Stream

Headers

Gets the headers that have been send with the response.

IDictionary<string, string> Headers { get; }

Property Value

IDictionary<string, string>

StatusCode

Gets the status code that has been send with the response.

HttpStatusCode StatusCode { get; }

Property Value

HttpStatusCode