Table of Contents

Class ReadResult

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

Constructors

ReadResult(bool?, string, bool)

public ReadResult(bool? Base64Encoded, string Data, bool Eof)

Parameters

Base64Encoded bool?

Set if the data is base64-encoded

Data string

Data that were read.

Eof bool

Set if the end-of-file condition occurred while reading.

Properties

Base64Encoded

Set if the data is base64-encoded

public bool? Base64Encoded { get; init; }

Property Value

bool?

Data

Data that were read.

public string Data { get; init; }

Property Value

string

Eof

Set if the end-of-file condition occurred while reading.

public bool Eof { get; init; }

Property Value

bool