1 write to SizeOfRawData
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\SectionHeader.cs (1)
94
SizeOfRawData
= reader.ReadInt32();
17 references to SizeOfRawData
ILCompiler.Diagnostics (2)
PdbWriter.cs (2)
231
_ngenWriter.AddSection(pdbSectionNumber, OMF.StandardText, 0, sections[i].
SizeOfRawData
);
237
_ngenWriter.ModAddSecContribEx(_pdbMod, pdbSectionNumber, 0, sections[i].
SizeOfRawData
, (uint)sections[i].SectionCharacteristics, 0, 0);
Microsoft.CodeAnalysis (7)
CvtRes.cs (7)
173
if ((long)hdr.PointerToRawData + hdr.
SizeOfRawData
> fileSize)
206
var imageResourceSectionBytes = new byte[checked(rsrc1.
SizeOfRawData
+ rsrc2.
SizeOfRawData
)];
209
stream.TryReadAll(imageResourceSectionBytes, 0, rsrc1.
SizeOfRawData
); // ConfirmSectionValues ensured that data are available
211
stream.TryReadAll(imageResourceSectionBytes, rsrc1.
SizeOfRawData
, rsrc2.
SizeOfRawData
); // ConfirmSectionValues ensured that data are available
294
writer.Write((uint)(symValue + rsrc1.
SizeOfRawData
));
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
152
int sectionSize = sectionHeader.
SizeOfRawData
;
Microsoft.NET.HostModel (2)
ResourceUpdater.cs (2)
165
GetAligned(lastSection.PointerToRawData + lastSection.
SizeOfRawData
, fileAlignment);
177
rsrcOriginalRawDataSize = resourceSection.
SizeOfRawData
;
System.Reflection.Metadata (5)
System\Reflection\PortableExecutable\PEHeaders.cs (1)
402
size = SectionHeaders[cormeta].
SizeOfRawData
;
System\Reflection\PortableExecutable\PEReader.cs (1)
416
PEHeaders.SectionHeaders[index].
SizeOfRawData
);
System\Reflection\PortableExecutable\SectionHeader.cs (3)
15
/// If this value is greater than <see cref="
SizeOfRawData
"/>, the section is zero-padded.
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.