Skip to content

ImportedModuleInfo

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

A module referenced by a PE, ELF, Mach-O, or WebAssembly import table, with the functions imported from it.

public sealed record ImportedModuleInfo : IEquatable<ImportedModuleInfo>

ObjectImportedModuleInfo

ImportedModuleInfo(string, IReadOnlyList<ImportedFunctionInfo>)

Section titled “ImportedModuleInfo(string, IReadOnlyList<ImportedFunctionInfo>)”

A module referenced by a PE, ELF, Mach-O, or WebAssembly import table, with the functions imported from it.

Parameters:

  • ModuleName (String): The module name, such as KERNEL32.dll, libc.so.6, or (unversioned) for an ELF symbol without safe library attribution.
  • Functions (IReadOnlyList<ImportedFunctionInfo>): The functions imported from the module.
public ImportedModuleInfo(string ModuleName, IReadOnlyList<ImportedFunctionInfo> Functions)

The functions imported from the module.

Returns: IReadOnlyList<ImportedFunctionInfo>

public IReadOnlyList<ImportedFunctionInfo> Functions { get; init; }

The module name, such as KERNEL32.dll, libc.so.6, or (unversioned) for an ELF symbol without safe library attribution.

Returns: String

public string ModuleName { get; init; }