Table of Contents

Class ReadCommandResponse

Namespace
OpenQA.Selenium.DevTools.V146.IO
Assembly
Selenium.WebDriver.dll

Response for Read a chunk of the stream

public sealed class ReadCommandResponse : ICommandResponse<ReadCommandSettings>, ICommandResponse
Inheritance
ReadCommandResponse
Implements
Inherited Members
Extension Methods

Properties

Base64Encoded

Set if the data is base64-encoded

[JsonPropertyName("base64Encoded")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Base64Encoded { get; set; }

Property Value

bool?

Data

Data that were read.

[JsonPropertyName("data")]
public string Data { get; set; }

Property Value

string

Eof

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

[JsonPropertyName("eof")]
public bool Eof { get; set; }

Property Value

bool