Table of Contents

Class RequestEvent

Namespace
AngleSharp.Dom.Events
Assembly
AngleSharp.dll

The event that is published in case of new request.

public class RequestEvent : Event
Inheritance
RequestEvent
Inherited Members
Extension Methods

Constructors

RequestEvent(Request, IResponse?)

Creates a new event for a request.

public RequestEvent(Request request, IResponse? response)

Parameters

request Request

The data of the request.

response IResponse

The received response.

Properties

Request

Gets the transmitted request.

public Request Request { get; }

Property Value

Request

Response

Gets the received response.

public IResponse? Response { get; }

Property Value

IResponse