C# Class Fody.PeImage.IMAGE_SECTION_HEADER

ファイルを表示 Open project: Fody/Stamp

Public Properties

Property Type Description
Characteristics IMAGE_SECTION_HEADER_CHARACTERISTICS
Misc uint
NumberOfLinenumbers ushort
NumberOfRelocations ushort
PointerToLinenumbers uint
PointerToRawData uint
PointerToRelocations uint
SizeOfRawData uint
VirtualAddress uint

Public Methods

Method Description
ToString ( ) : string

Method Details

ToString() public method

public ToString ( ) : string
return string

Property Details

Characteristics public_oe property

The characteristics of the image.
public IMAGE_SECTION_HEADER_CHARACTERISTICS Characteristics
return IMAGE_SECTION_HEADER_CHARACTERISTICS

Misc public_oe property

The physical address or the virtual size.
public uint Misc
return uint

NumberOfLinenumbers public_oe property

The number of line-number entries for the section.
public ushort NumberOfLinenumbers
return ushort

NumberOfRelocations public_oe property

The number of relocation entries for the section. This value is zero for executable images.
public ushort NumberOfRelocations
return ushort

PointerToLinenumbers public_oe property

A file pointer to the beginning of the line-number entries for the section. If there are no COFF line numbers, this value is zero.
public uint PointerToLinenumbers
return uint

PointerToRawData public_oe property

A file pointer to the first page within the COFF file. This value must be a multiple of the FileAlignment member of the IMAGE_OPTIONAL_HEADER_32 structure. If a section contains only uninitialized data, set this member is zero.
public uint PointerToRawData
return uint

PointerToRelocations public_oe property

A file pointer to the beginning of the relocation entries for the section. If there are no relocations, this value is zero.
public uint PointerToRelocations
return uint

SizeOfRawData public_oe property

The size of the initialized data on disk, in bytes. This value must be a multiple of the FileAlignment member of the IMAGE_OPTIONAL_HEADER_32 structure. If this value is less than the VirtualSize member, the remainder of the section is filled with zeroes. If the section contains only uninitialized data, the member is zero.
public uint SizeOfRawData
return uint

VirtualAddress public_oe property

The address of the first byte of the section when loaded into memory, relative to the image base. For object files, this is the address of the first byte before relocation is applied.
public uint VirtualAddress
return uint