1 write to VirtualSize
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\SectionHeader.cs (1)
92VirtualSize = reader.ReadInt32();
9 references to VirtualSize
Microsoft.NET.HostModel (2)
ResourceUpdater.cs (2)
166rsrcVirtualAddress = GetAligned(lastSection.VirtualAddress + lastSection.VirtualSize, sectionAlignment); 178rsrcOriginalVirtualSize = resourceSection.VirtualSize;
System.Reflection.Metadata (7)
System\Reflection\PortableExecutable\PEHeaders.cs (2)
345if (!canCrossSectionBoundary && directory.Size > _sectionHeaders[sectionIndex].VirtualSize - relativeOffset) 367relativeVirtualAddress < _sectionHeaders[i].VirtualAddress + _sectionHeaders[i].VirtualSize)
System\Reflection\PortableExecutable\PEReader.cs (2)
401PEHeaders.SectionHeaders[index].VirtualSize); 415PEHeaders.SectionHeaders[index].VirtualSize,
System\Reflection\PortableExecutable\SectionHeader.cs (3)
31/// If this is less than <see cref="VirtualSize"/>, the remainder of the section is zero-filled. 32/// Because the <see cref="SizeOfRawData"/> field is rounded but the <see cref="VirtualSize"/> field is not, 33/// it is possible for <see cref="SizeOfRawData"/> to be greater than <see cref="VirtualSize"/> as well.