Show / Hide Table of Contents

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 Source

ImportFunction(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 Source

DLL

DLL where the function comes from.

Declaration
public string DLL { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Hint

Function hint.

Declaration
public ushort Hint { get; }
Property Value
Type Description
System.UInt16
| Improve this Doc View Source

IATOffset

Offset into the Import Address Table.

Declaration
public uint IATOffset { get; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

Name

Function name.

Declaration
public string? Name { get; }
Property Value
Type Description
System.Nullable<System.String>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX