Class ImportFunction
Represents an imported function.
Inherited Members
Namespace: PeNet.Header.Pe
Assembly: PeNet.dll
Syntax
public class ImportFunction
Constructors
| Edit this page View SourceImportFunction(string?, string, ushort, uint)
Create a new ImportFunction object.
Declaration
public ImportFunction(string? name, string dll, ushort hint, uint iatOffset)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | Function name. |
| string | dll | DLL where the function comes from. |
| ushort | hint | Function hint. |
| uint | iatOffset | Offset into the Import Address Table. |
Properties
| Edit this page View SourceDLL
DLL where the function comes from.
Declaration
public string DLL { get; }
Property Value
| Type | Description |
|---|---|
| string |
Hint
Function hint.
Declaration
public ushort Hint { get; }
Property Value
| Type | Description |
|---|---|
| ushort |
IATOffset
Offset into the Import Address Table.
Declaration
public uint IATOffset { get; }
Property Value
| Type | Description |
|---|---|
| uint |
Name
Function name.
Declaration
public string? Name { get; }
Property Value
| Type | Description |
|---|---|
| string |