Class VirtualSegment
- Namespace
- AsmResolver
- Assembly
- AsmResolver.dll
Represents a segment of code or data that might be resized at runtime.
public class VirtualSegment : IReadableSegment, ISegment, IOffsetProvider, IWritable
- Inheritance
-
VirtualSegment
- Implements
- Inherited Members
- Extension Methods
Constructors
VirtualSegment(ISegment?, uint)
Creates a new segment that is expanded at runtime to the provided virtual size.
public VirtualSegment(ISegment? physicalContents, uint virtualSize)
Parameters
physicalContents
ISegmentThe physical contents of the segment.
virtualSize
uintThe new size at runtime.
Properties
CanUpdateOffsets
Determines whether this structure can be relocated to another offset or virtual address.
public bool CanUpdateOffsets { get; }
Property Value
IsReadable
Gets a value indicating whether the physical contents of this segment is readable by a binary reader.
public bool IsReadable { get; }
Property Value
Offset
Gets the physical starting offset of the segment.
public ulong Offset { get; }
Property Value
PhysicalContents
Gets or sets the physical contents of the segment as it is stored on the disk.
public ISegment? PhysicalContents { get; set; }
Property Value
Rva
Gets the virtual address relative to the beginning of the section that the segment is located in.
public uint Rva { get; }
Property Value
VirtualSize
Gets or sets the size of the segment after it is mapped into memory at runtime.
public uint VirtualSize { get; set; }
Property Value
Methods
CreateReader(ulong, uint)
Creates a new binary reader that reads the raw contents of the segment.
public BinaryStreamReader CreateReader(ulong fileOffset, uint size)
Parameters
Returns
- BinaryStreamReader
The created binary reader.
Exceptions
- ArgumentOutOfRangeException
Occurs when
fileOffset
is not within the range of the segment.- EndOfStreamException
Occurs when
size
indicates a too large length.
GetPhysicalSize()
Computes the number of bytes that the structure contains.
public uint GetPhysicalSize()
Returns
- uint
The number of bytes.
GetVirtualSize()
Computes the number of bytes the segment will contain when it is mapped into memory.
public uint GetVirtualSize()
Returns
- uint
The number of bytes.
UpdateOffsets(in RelocationParameters)
Assigns a new file and virtual offset to the segment and all its sub-components.
public void UpdateOffsets(in RelocationParameters parameters)
Parameters
parameters
RelocationParametersThe parameters containing the new offset information for the segment.
Write(BinaryStreamWriter)
Serializes the structure to an output stream.
public void Write(BinaryStreamWriter writer)
Parameters
writer
BinaryStreamWriterThe output stream to write the data to.