C# Class AsmResolver.ImageModuleImport

Represents a module in the import data directory of a windows assembly image.
Inheritance: FileSegment
Afficher le fichier Open project: JerreS/AsmResolver Class Usage Examples

Méthodes publiques

Méthode Description
GetPhysicalLength ( ) : uint
GetSymbolImportAddress ( ImageSymbolImport import, bool is32Bit ) : ulong

Determines the import address to use for a specific function.

ImageModuleImport ( ) : System
ImageModuleImport ( string name ) : System
ToString ( ) : string
Write ( WritingContext context ) : void

Private Methods

Méthode Description
FromReadingContext ( ReadingContext context ) : ImageModuleImport

Method Details

GetPhysicalLength() public méthode

public GetPhysicalLength ( ) : uint
Résultat uint

GetSymbolImportAddress() public méthode

Determines the import address to use for a specific function.
public GetSymbolImportAddress ( ImageSymbolImport import, bool is32Bit ) : ulong
import ImageSymbolImport The imported symbol to get the address from.
is32Bit bool Specifies whether the address should be a 32-bit or 64-bit address.
Résultat ulong

ImageModuleImport() public méthode

public ImageModuleImport ( ) : System
Résultat System

ImageModuleImport() public méthode

public ImageModuleImport ( string name ) : System
name string
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

Write() public méthode

public Write ( WritingContext context ) : void
context WritingContext
Résultat void