2 instantiations of IMAGE_SECTION_HEADER
Microsoft.DotNet.SignCheckLibrary (2)
Interop\PortableExecutable\ImageSectionHeader.cs (1)
74
IMAGE_SECTION_HEADER sectionHeader = new
IMAGE_SECTION_HEADER
Interop\PortableExecutable\PortableExecutableHeader.cs (1)
291
IMAGE_SECTION_HEADER section = new
IMAGE_SECTION_HEADER
();
16 references to IMAGE_SECTION_HEADER
Microsoft.DotNet.SignCheckLibrary (16)
Interop\PortableExecutable\ImageSectionHeader.cs (5)
46
/// Converts the <see cref="
IMAGE_SECTION_HEADER
.Name"/> to a string.
57
/// Retrieve a list of <see cref="
IMAGE_SECTION_HEADER
"/> from a file.
62
public static List<
IMAGE_SECTION_HEADER
> Read(BinaryReader reader, ushort numberOfSections, uint firstSectionHeaderOffset)
69
var sectionHeaders = new List<
IMAGE_SECTION_HEADER
>();
74
IMAGE_SECTION_HEADER
sectionHeader = new IMAGE_SECTION_HEADER
Interop\PortableExecutable\PortableExecutableHeader.cs (11)
18
private List<
IMAGE_SECTION_HEADER
> _imageSectionHeaders;
60
/// The offset of the first <see cref="
IMAGE_SECTION_HEADER
"/>.
173
/// An enumerable collection of <see cref="
IMAGE_SECTION_HEADER
"/>
175
public IEnumerable<
IMAGE_SECTION_HEADER
> ImageSectionHeaders
181
_imageSectionHeaders = new List<
IMAGE_SECTION_HEADER
>();
220
/// The number of <see cref="
IMAGE_SECTION_HEADER
"/> entries.
276
IMAGE_SECTION_HEADER
section = GetSectionFromRva(CLRRuntimeHeader.VirtualAddress);
285
/// Locate the <see cref="
IMAGE_SECTION_HEADER
"/> that corresponds to the given RVA
289
public
IMAGE_SECTION_HEADER
GetSectionFromRva(uint rva)
291
IMAGE_SECTION_HEADER
section = new IMAGE_SECTION_HEADER();
347
_imageSectionHeaders =
IMAGE_SECTION_HEADER
.Read(reader, NumberOfImageSectionHeaders, FirstImageSectionHeaderOffset);