Class Module
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
NamestringName of the module.
UuidstringUUID of the module.
BaseAddressstringBase address where the module is loaded into memory. Encoded as a decimal or hexadecimal (0x prefixed) string.
SizedoubleSize 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
Name
Name of the module.
public string Name { get; init; }
Property Value
Size
Size of the module in bytes.
public double Size { get; init; }
Property Value
Uuid
UUID of the module.
public string Uuid { get; init; }