C# Class PeNet.Structures.IMAGE_OPTIONAL_HEADER_x64

Represents the optional header in the NT header.
Inheritance: IMAGE_OPTIONAL_HEADER_x32
ファイルを表示 Open project: secana/PeNet

Public Properties

Property Type Description
DataDirectory PeNet.Structures.IMAGE_DATA_DIRECTORY[]

Public Methods

Method Description
IMAGE_OPTIONAL_HEADER_x64 ( byte buff, uint offset ) : System

Create a new IMAGE_OPTIONAL_HEADER object.

ToString ( ) : string

Creates a string representation of the objects properties.

Method Details

IMAGE_OPTIONAL_HEADER_x64() public method

Create a new IMAGE_OPTIONAL_HEADER object.
public IMAGE_OPTIONAL_HEADER_x64 ( byte buff, uint offset ) : System
buff byte A PE file as a byte array.
offset uint Raw offset to the optional header.
return System

ToString() public method

Creates a string representation of the objects properties.
public ToString ( ) : string
return string

Property Details

DataDirectory public_oe property

The Data Directories.
public IMAGE_DATA_DIRECTORY[],PeNet.Structures DataDirectory
return PeNet.Structures.IMAGE_DATA_DIRECTORY[]