2 instantiations of IMAGE_SECTION_HEADER
Microsoft.DotNet.SignCheckLibrary (2)
Interop\PortableExecutable\ImageSectionHeader.cs (1)
74IMAGE_SECTION_HEADER sectionHeader = new IMAGE_SECTION_HEADER
Interop\PortableExecutable\PortableExecutableHeader.cs (1)
291IMAGE_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. 62public static List<IMAGE_SECTION_HEADER> Read(BinaryReader reader, ushort numberOfSections, uint firstSectionHeaderOffset) 69var sectionHeaders = new List<IMAGE_SECTION_HEADER>(); 74IMAGE_SECTION_HEADER sectionHeader = new IMAGE_SECTION_HEADER
Interop\PortableExecutable\PortableExecutableHeader.cs (11)
18private 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"/> 175public IEnumerable<IMAGE_SECTION_HEADER> ImageSectionHeaders 181_imageSectionHeaders = new List<IMAGE_SECTION_HEADER>(); 220/// The number of <see cref="IMAGE_SECTION_HEADER"/> entries. 276IMAGE_SECTION_HEADER section = GetSectionFromRva(CLRRuntimeHeader.VirtualAddress); 285/// Locate the <see cref="IMAGE_SECTION_HEADER"/> that corresponds to the given RVA 289public IMAGE_SECTION_HEADER GetSectionFromRva(uint rva) 291IMAGE_SECTION_HEADER section = new IMAGE_SECTION_HEADER(); 347_imageSectionHeaders = IMAGE_SECTION_HEADER.Read(reader, NumberOfImageSectionHeaders, FirstImageSectionHeaderOffset);