Table of Contents

Class GetRequestPostDataResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Network
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetRequestPostDataResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetRequestPostDataResult>
Inheritance
EmptyResult
GetRequestPostDataResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetRequestPostDataResult(string, bool)

public GetRequestPostDataResult(string PostData, bool Base64Encoded)

Parameters

PostData string

Request body string, omitting files from multipart requests

Base64Encoded bool

True, if content was sent as base64.

Properties

Base64Encoded

True, if content was sent as base64.

public bool Base64Encoded { get; init; }

Property Value

bool

PostData

Request body string, omitting files from multipart requests

public string PostData { get; init; }

Property Value

string