Table of Contents

Class GetScriptSourceResult

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

Constructors

GetScriptSourceResult(string, string?)

public GetScriptSourceResult(string ScriptSource, string? Bytecode)

Parameters

ScriptSource string

Script source (empty in case of Wasm bytecode).

Bytecode string

Wasm bytecode. (Encoded as a base64 string when passed over JSON)

Properties

Bytecode

Wasm bytecode. (Encoded as a base64 string when passed over JSON)

public string? Bytecode { get; init; }

Property Value

string

ScriptSource

Script source (empty in case of Wasm bytecode).

public string ScriptSource { get; init; }

Property Value

string