Table of Contents

Class DisassembleWasmModuleCommandResponse

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

Response for DisassembleWasmModule

public sealed class DisassembleWasmModuleCommandResponse : ICommandResponse<DisassembleWasmModuleCommandSettings>, ICommandResponse
Inheritance
DisassembleWasmModuleCommandResponse
Implements
Inherited Members
Extension Methods

Properties

Chunk

The first chunk of disassembly.

[JsonPropertyName("chunk")]
public WasmDisassemblyChunk Chunk { get; set; }

Property Value

WasmDisassemblyChunk

FunctionBodyOffsets

The offsets of all function bodies, in the format [start1, end1, start2, end2, ...] where all ends are exclusive.

[JsonPropertyName("functionBodyOffsets")]
public long[] FunctionBodyOffsets { get; set; }

Property Value

long[]

StreamId

For large modules, return a stream from which additional chunks of disassembly can be read successively.

[JsonPropertyName("streamId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? StreamId { get; set; }

Property Value

string

TotalNumberOfLines

The total number of lines in the disassembly text.

[JsonPropertyName("totalNumberOfLines")]
public long TotalNumberOfLines { get; set; }

Property Value

long