Show / Hide Table of Contents

Class IMAGE_IMPORT_BY_NAME

The IMAGE_IMPORT_BY_NAME structure is used to describes imports of functions or symbols by their name. The AddressOfData in the IMAGE_THUNK_DATA from the IMAGE_IMPORT_DESCRIPTOR points to it.

Inheritance
System.Object
AbstractStructure
IMAGE_IMPORT_BY_NAME
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_IMPORT_BY_NAME : AbstractStructure

Constructors

| Improve this Doc View Source

IMAGE_IMPORT_BY_NAME(Byte[], UInt32)

Create new IMAGE_IMPORT_BY_NAME object.

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

A PE file as a byte array.

System.UInt32 offset

Raw offset of the IMAGE_IMPORT_BY_NAME.

Properties

| Improve this Doc View Source

Hint

Hint.

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

Name

Name of the function to import as a C-string (null terminated).

Declaration
public string Name { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX