Table of Contents

Class RouteContinueOptions

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class RouteContinueOptions
Inheritance
RouteContinueOptions
Inherited Members

Constructors

RouteContinueOptions()

public RouteContinueOptions()

RouteContinueOptions(RouteContinueOptions)

public RouteContinueOptions(RouteContinueOptions clone)

Parameters

clone RouteContinueOptions

Properties

Headers

If set changes the request HTTP headers. Header values will be converted to a string.

[JsonPropertyName("headers")]
public IEnumerable<KeyValuePair<string, string>>? Headers { get; set; }

Property Value

IEnumerable<KeyValuePair<string, string>>

Method

If set changes the request method (e.g. GET or POST).

[JsonPropertyName("method")]
public string? Method { get; set; }

Property Value

string

PostData

If set changes the post data of request.

[JsonPropertyName("postData")]
public byte[]? PostData { get; set; }

Property Value

byte[]

Url

If set changes the request URL. New URL must have same protocol as original one.

[JsonPropertyName("url")]
public string? Url { get; set; }

Property Value

string