Table of Contents

Class Payload

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Payload information.

public class Payload
Inheritance
Payload

Properties

HasPostData

Gets or sets a value indicating whether this Payload has post data.

public bool? HasPostData { get; set; }

Property Value

bool?

Headers

Gets or sets the HTTP headers.

public Dictionary<string, string> Headers { get; set; }

Property Value

Dictionary<string, string>

HTTP headers.

Method

Gets or sets the HTTP method.

public HttpMethod Method { get; set; }

Property Value

HttpMethod

HTTP method.

PostData

Gets or sets the post data.

public string PostData { get; set; }

Property Value

string

The post data.

Url

Gets or sets the URL.

public string Url { get; set; }

Property Value

string

The URL.