Show / Hide Table of Contents

Class IMAGE_EXPORT_DIRECTORY

The export directory contains all exported function, symbols etc. which can be used by other module.

Inheritance
System.Object
AbstractStructure
IMAGE_EXPORT_DIRECTORY
Inherited Members
AbstractStructure.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: PeNet.Structures
Assembly: PeNet.dll
Syntax
public class IMAGE_EXPORT_DIRECTORY : AbstractStructure

Constructors

| Improve this Doc View Source

IMAGE_EXPORT_DIRECTORY(Byte[], UInt32)

Create a new IMAGE_EXPORT_DIRECTORY object.

Declaration
public IMAGE_EXPORT_DIRECTORY(byte[] buff, uint offset)
Parameters
Type Name Description
System.Byte[] buff

PE file as a byte array.

System.UInt32 offset

Raw offset of the export directory in the PE file.

Properties

| Improve this Doc View Source

AddressOfFunctions

RVA to the addresses of the functions.

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

AddressOfNameOrdinals

RVA to the name ordinals.

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

AddressOfNames

RVA to the addresses of the names.

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

Base

Base.

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

Characteristics

The characteristics of the export directory.

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

MajorVersion

Major Version.

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

MinorVersion

Minor Version.

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

Name

Name.

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

NumberOfFunctions

Number of exported functions.

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

NumberOfNames

Number of exported names.

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

TimeDateStamp

Time and date stamp.

Declaration
public uint TimeDateStamp { get; set; }
Property Value
Type Description
System.UInt32
  • Improve this Doc
  • View Source
Back to top Generated by DocFX