Skip to content

ImportedModuleInfo

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

A native module referenced by the PE 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 native module referenced by the PE import table, with the functions imported from it.

Parameters:

public ImportedModuleInfo(string ModuleName, IReadOnlyList<ImportedFunctionInfo> Functions)

The functions imported from the module.

Returns: IReadOnlyList<ImportedFunctionInfo>

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

The module file name (e.g. “KERNEL32.dll”).

Returns: String

public string ModuleName { get; init; }