Table of Contents

Class GetEncodedResponseResult

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

Constructors

GetEncodedResponseResult(string?, long, long)

public GetEncodedResponseResult(string? Body, long OriginalSize, long EncodedSize)

Parameters

Body string

The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)

OriginalSize long

Size before re-encoding.

EncodedSize long

Size after re-encoding.

Properties

Body

The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)

public string? Body { get; init; }

Property Value

string

EncodedSize

Size after re-encoding.

public long EncodedSize { get; init; }

Property Value

long

OriginalSize

Size before re-encoding.

public long OriginalSize { get; init; }

Property Value

long