C# 클래스 Fody.PeImage.IMAGE_SECTION_HEADER

파일 보기 프로젝트 열기: Fody/Stamp

공개 프로퍼티들

프로퍼티 타입 설명
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