Table of Contents

Class Module

Namespace
Selenium.WebDriver.BiDi.Cdp.Memory
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Executable module information

public sealed record Module : IEquatable<Module>
Inheritance
Module
Implements
Inherited Members

Constructors

Module(string, string, string, double)

Executable module information

public Module(string Name, string Uuid, string BaseAddress, double Size)

Parameters

Name string

Name of the module.

Uuid string

UUID of the module.

BaseAddress string

Base address where the module is loaded into memory. Encoded as a decimal or hexadecimal (0x prefixed) string.

Size double

Size of the module in bytes.

Properties

BaseAddress

Base address where the module is loaded into memory. Encoded as a decimal or hexadecimal (0x prefixed) string.

public string BaseAddress { get; init; }

Property Value

string

Name

Name of the module.

public string Name { get; init; }

Property Value

string

Size

Size of the module in bytes.

public double Size { get; init; }

Property Value

double

Uuid

UUID of the module.

public string Uuid { get; init; }

Property Value

string