C# Класс Fody.PeImage.IMAGE_SECTION_HEADER

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Characteristics IMAGE_SECTION_HEADER_CHARACTERISTICS
Misc uint
NumberOfLinenumbers ushort
NumberOfRelocations ushort
PointerToLinenumbers uint
PointerToRawData uint
PointerToRelocations uint
SizeOfRawData uint
VirtualAddress uint

Открытые методы

Метод Описание
ToString ( ) : string

Описание методов

ToString() публичный Метод

public ToString ( ) : string
Результат string

Описание свойств

Characteristics публичное свойство

The characteristics of the image.
public IMAGE_SECTION_HEADER_CHARACTERISTICS Characteristics
Результат IMAGE_SECTION_HEADER_CHARACTERISTICS

Misc публичное свойство

The physical address or the virtual size.
public uint Misc
Результат uint

NumberOfLinenumbers публичное свойство

The number of line-number entries for the section.
public ushort NumberOfLinenumbers
Результат ushort

NumberOfRelocations публичное свойство

The number of relocation entries for the section. This value is zero for executable images.
public ushort NumberOfRelocations
Результат ushort

PointerToLinenumbers публичное свойство

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
Результат uint

PointerToRawData публичное свойство

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
Результат uint

PointerToRelocations публичное свойство

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
Результат uint

SizeOfRawData публичное свойство

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
Результат uint

VirtualAddress публичное свойство

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
Результат uint