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