Show / Hide Table of Contents

Class ImportFunction

Represents an imported function.

Inheritance
object
ImportFunction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: PeNet.Header.Pe
Assembly: PeNet.dll
Syntax
public class ImportFunction

Constructors

| Edit this page View Source

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

DLL

DLL where the function comes from.

Declaration
public string DLL { get; }
Property Value
Type Description
string
| Edit this page View Source

Hint

Function hint.

Declaration
public ushort Hint { get; }
Property Value
Type Description
ushort
| Edit this page View Source

IATOffset

Offset into the Import Address Table.

Declaration
public uint IATOffset { get; }
Property Value
Type Description
uint
| Edit this page View Source

Name

Function name.

Declaration
public string? Name { get; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX